diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5dff90a..60c1b82 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,11 +16,13 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.2, 8.3] + php: [8.1, 8.2, 8.3, 8.4] laravel: [10, 11] exclude: - php: 8.1 laravel: 11 + - php: 8.4 + laravel: 10 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} diff --git a/composer.json b/composer.json index 23a38b1..7ed9013 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ } ], "require": { - "php": "~8.1.0|~8.2.0|~8.3.0", + "php": "~8.1.0|~8.2.0|~8.3.0|~8.4.0", "guzzlehttp/guzzle": "^7.0", "laravel/framework": "^10.0|^11.0", "laravel/prompts": "^0.1|^0.2|^0.3", @@ -33,7 +33,7 @@ }, "require-dev": { "orchestra/testbench": "^8.0|^9.0", - "pestphp/pest": "^2.0" + "pestphp/pest": "^2.0|^3.0" }, "suggest": { "ext-intl": "Allows for more locales besides the default \"en\" when formatting money values."