diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 9279221..822f646 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -12,14 +12,19 @@ jobs: strategy: fail-fast: true matrix: - php: [8.2, 8.1] - laravel: [10.*, 9.*] + php: [8.3, 8.2, 8.1] + laravel: [11.*, 10.*, 9.*] stability: [prefer-stable] include: + - laravel: 11.* + testbench: 9.* - laravel: 10.* testbench: 8.* - laravel: 9.* testbench: 7.* + exclude: + - laravel: 11.* + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} diff --git a/composer.json b/composer.json index 057f1ee..ea26cf8 100644 --- a/composer.json +++ b/composer.json @@ -23,21 +23,21 @@ ], "require": { "php": "^8.1", - "illuminate/contracts": "^9.0|^10.0", + "illuminate/contracts": "^9.0|^10.0|^11.0", "spatie/backtrace": "^1.2", "spatie/invade": "^1.1|^2.0", "spatie/laravel-package-tools": "^1.12" }, "require-dev": { - "nunomaduro/collision": "^6.2", - "nunomaduro/larastan": "^2.1", - "orchestra/testbench": "^7.6|^8.0", - "pestphp/pest": "^1.21", - "pestphp/pest-plugin-laravel": "^1.2", + "nunomaduro/collision": "^6.2|^8.0", + "larastan/larastan": "^2.1", + "orchestra/testbench": "^7.6|^8.0|^9.0", + "pestphp/pest": "^1.21|^2.0", + "pestphp/pest-plugin-laravel": "^1.2|^2.0", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-phpunit": "^1.1", - "phpunit/phpunit": "^9.5", + "phpunit/phpunit": "^9.5|^10.0", "spatie/laravel-ray": "^1.29" }, "autoload": {