diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8b43d63..86412ec 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,13 +17,18 @@ jobs: matrix: os: [ubuntu-latest] php: ['8.2', '8.3', '8.4'] - laravel: ['11.*', '12.*'] + laravel: ['11.*', '12.*', '13.*'] stability: [prefer-lowest, prefer-stable] include: - laravel: 11.* testbench: ^9.0 - laravel: 12.* testbench: ^10.0 + - laravel: 13.* + testbench: ^11.0 + exclude: + - laravel: 13.* + php: '8.2' name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index a12ccd3..8172584 100644 --- a/composer.json +++ b/composer.json @@ -17,16 +17,16 @@ ], "require": { "php": "^8.2", - "illuminate/contracts": "^11.0|^12.0", - "illuminate/database": "^11.0|^12.0", - "illuminate/http": "^11.0|^12.0", + "illuminate/contracts": "^11.0|^12.0|^13.0", + "illuminate/database": "^11.0|^12.0|^13.0", + "illuminate/http": "^11.0|^12.0|^13.0", "spatie/laravel-package-tools": "^1.16" }, "require-dev": { "brianium/paratest": "^7.4", "nunomaduro/collision": "^8.0", - "orchestra/testbench": "^9.0|^10.0", - "phpunit/phpunit": "^10.5|^11.5.3", + "orchestra/testbench": "^9.0|^10.0|^11.0", + "phpunit/phpunit": "^10.5|^11.5.3|^12.5.12", "spatie/laravel-ray": "^1.32" }, "autoload": {