diff --git a/.github/workflows/code-style.yml b/.github/workflows/code-style.yml index 973115d5..d6c34f9d 100644 --- a/.github/workflows/code-style.yml +++ b/.github/workflows/code-style.yml @@ -18,8 +18,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [ 8.2 ] - laravel: [ 10.* ] + php: [ 8.2, 8.1 ] + laravel: [ 11.*, 10.* ] + exclude: + - php: 8.1 + laravel: 11.* dependency-version: [ prefer-stable ] name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }} diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index acbf28a7..4c3fb4a3 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -29,8 +29,13 @@ jobs: strategy: matrix: - php: [ 8.2 ] - laravel: [ 10.* ] + php: [ 8.2, 8.1 ] + laravel: [ 11.*, 10.* ] + exclude: + - php: 8.1 + laravel: 11.* + - php: 8.2 + laravel: 11.* dependency-version: [ prefer-stable ] name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }} diff --git a/.github/workflows/mysql.yml b/.github/workflows/mysql.yml index e9a8083b..a5bbea2a 100644 --- a/.github/workflows/mysql.yml +++ b/.github/workflows/mysql.yml @@ -30,7 +30,10 @@ jobs: strategy: matrix: php: [ 8.2, 8.1 ] - laravel: [ 10.* ] + laravel: [ 11.*, 10.* ] + exclude: + - php: 8.1 + laravel: 11.* dependency-version: [ prefer-stable ] name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }} diff --git a/.github/workflows/pgsql.yml b/.github/workflows/pgsql.yml index bb7e09a6..0cf98624 100644 --- a/.github/workflows/pgsql.yml +++ b/.github/workflows/pgsql.yml @@ -31,7 +31,10 @@ jobs: strategy: matrix: php: [ 8.2, 8.1 ] - laravel: [ 10.* ] + laravel: [ 11.*, 10.* ] + exclude: + - php: 8.1 + laravel: 11.* dependency-version: [ prefer-stable ] name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }} diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 85c4c982..604632c9 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: php: [ 8.2 ] - laravel: [ 10.* ] + laravel: [ 11.*, 10.* ] dependency-version: [ prefer-stable ] name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }} diff --git a/.github/workflows/sqlite.yml b/.github/workflows/sqlite.yml index 4a4894c0..abd32459 100644 --- a/.github/workflows/sqlite.yml +++ b/.github/workflows/sqlite.yml @@ -19,7 +19,10 @@ jobs: strategy: matrix: php: [ 8.2, 8.1 ] - laravel: [ 10.* ] + laravel: [ 11.*, 10.* ] + exclude: + - php: 8.1 + laravel: 11.* dependency-version: [ prefer-stable ] name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }} diff --git a/composer.json b/composer.json index c65f9400..96086cf5 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ ], "require": { "php": "^8.1", - "livewire/livewire": "^3.1.0", + "livewire/livewire": "^3.3", "laravel/prompts": "^0.1.13" }, "require-dev": { @@ -29,7 +29,7 @@ "spaze/phpstan-disallowed-calls": "^2.16.1", "larastan/larastan": "^2.7", "pestphp/pest": "^2.28.1", - "orchestra/testbench": "^8.17" + "orchestra/testbench": "^8.17|^9.0" }, "suggest": { "openspout/openspout": "Required to export XLS and CSV"