diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index c22bab9..20f93c7 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,11 +14,16 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] php: [8.2, 8.1] - laravel: [10.*] + laravel: [10.*, 11.*] stability: [prefer-lowest, prefer-stable] include: - laravel: 10.* testbench: 8.* + - laravel: 11.* + testbench: 9.* + exclude: + - laravel: 11.* + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 73e8034..397023a 100644 --- a/composer.json +++ b/composer.json @@ -18,8 +18,8 @@ } ], "require": { - "php": "^8.1", - "illuminate/contracts": "^10.0", + "php": "^8.1|^8.2", + "illuminate/contracts": "^10.0|^11.0", "larastan/larastan": "^2.0", "pestphp/pest": "^2.6", "pestphp/pest-plugin-laravel": "^2.0", @@ -28,12 +28,12 @@ }, "require-dev": { "laravel/pint": "^1.2", - "nunomaduro/collision": "^7.5", - "orchestra/testbench": "^8.0", + "nunomaduro/collision": "^7.5|^8.1", + "orchestra/testbench": "^8.0|^9.0", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^10.1", + "phpunit/phpunit": "^10.1|^11.0", "spatie/laravel-ray": "^1.26" }, "autoload": {