diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a08f157..ce02dd6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,18 +17,26 @@ jobs: fail-fast: true matrix: php: [7.3, 7.4, '8.0', 8.1, 8.2, 8.3] - laravel: [8, 9, 10] + laravel: [8, 9, 10, 11] exclude: - php: 7.3 laravel: 9 - php: 7.3 laravel: 10 + - php: 7.3 + laravel: 11 - php: 7.4 laravel: 9 - php: 7.4 laravel: 10 + - php: 7.4 + laravel: 11 - php: 8.0 laravel: 10 + - php: 8.0 + laravel: 11 + - php: 8.1 + laravel: 11 - php: 8.2 laravel: 8 - php: 8.3 @@ -61,4 +69,4 @@ jobs: composer update --prefer-dist --no-interaction --no-progress - name: Execute unit tests - run: vendor/bin/pest --colors=always --verbose --group="unit" + run: vendor/bin/pest --colors=always --group="unit" \ No newline at end of file diff --git a/composer.json b/composer.json index 4f60c8d..6359b97 100644 --- a/composer.json +++ b/composer.json @@ -18,14 +18,14 @@ } ], "require": { - "php": "^7.3|^8.0", + "php": "^7.3|^8.0|^8.2", "aws/aws-sdk-php": "^3.148.3", - "laravel/framework": "^8.0|^9.0|^10.0", - "symfony/yaml": "^5.1.4|^6.0" + "laravel/framework": "^8.0|^9.0|^10.0|^11.0", + "symfony/yaml": "^5.1.4|^6.0|^7.0" }, "require-dev": { - "orchestra/testbench": "^6.17.1|^7.0|^8.0", - "pestphp/pest": "^1.22.3" + "orchestra/testbench": "^6.17.1|^7.0|^8.0|^9.0", + "pestphp/pest": "^1.22.3|^2.0" }, "autoload": { "psr-4": {