diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a823565..276a34d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,11 +17,14 @@ jobs: strategy: fail-fast: true matrix: - php: [ "8.1", "8.2", "8.3" ] - laravel: [ "10.0", "11.0" ] + php: [ "8.1", "8.2", "8.3", "8.4" ] + laravel: [ "10.0", "11.0", "12.0" ] exclude: - laravel: "11.0" php: "8.1" + + - laravel: "12.0" + php: "8.1" name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }} diff --git a/composer.json b/composer.json index e425ae8..7aa8039 100644 --- a/composer.json +++ b/composer.json @@ -29,17 +29,17 @@ "require": { "php": "^8.1", "dragon-code/support": "^6.13", - "illuminate/config": "^10.0 || ^11.0", - "illuminate/http": "^10.0 || ^11.0", - "illuminate/routing": "^10.0 || ^11.0", - "illuminate/support": "^10.0 || ^11.0", - "laravel-lang/config": "^1.6", - "laravel-lang/locales": "^2.8" + "illuminate/config": "^10.0 || ^11.0 || ^12.0", + "illuminate/http": "^10.0 || ^11.0 || ^12.0", + "illuminate/routing": "^10.0 || ^11.0 || ^12.0", + "illuminate/support": "^10.0 || ^11.0 || ^12.0", + "laravel-lang/config": "^1.12", + "laravel-lang/locales": "^2.10" }, "require-dev": { - "orchestra/testbench": "^8.23 || ^9.1", - "pestphp/pest": "^2.34", - "pestphp/pest-plugin-laravel": "^2.4", + "orchestra/testbench": "^8.23 || ^9.1 || ^10.0", + "pestphp/pest": "^2.34 || ^3.0", + "pestphp/pest-plugin-laravel": "^2.4 || ^3.0", "symfony/var-dumper": "^6.0 || ^7.0" }, "minimum-stability": "stable",