diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 7102346..e07cef9 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,10 +10,12 @@ jobs: strategy: fail-fast: false matrix: - php: [8.1, 8.2, 8.3] - laravel: [10.*, 11.*] + php: [8.1, 8.2, 8.3, 8.4] + laravel: [10.*, 11.*, 12.*] dependency-version: [prefer-lowest, prefer-stable] exclude: + - php: 8.1 + laravel: 12.* - php: 8.1 laravel: 11.* diff --git a/composer.json b/composer.json index 82ef33a..2305a24 100644 --- a/composer.json +++ b/composer.json @@ -19,16 +19,16 @@ } ], "require": { - "php": "^8.1|^8.2|^8.3", - "illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/notifications": "^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0" + "php": "^8.1|^8.2|^8.3|^8.4", + "illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/notifications": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0" }, "require-dev": { "adamwojs/php-cs-fixer-phpdoc-force-fqcn": "^2.0", "friendsofphp/php-cs-fixer": "^3.0", - "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0", - "phpunit/phpunit": "^9.1|^10.0", + "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0", + "phpunit/phpunit": "^9.1|^10.0|^11.0", "squizlabs/php_codesniffer": "^3.6" }, "autoload": {