diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index e4731d0..638fa25 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -14,9 +14,9 @@ jobs: os: - ubuntu-latest php: - - 7.4 - 8.0 - 8.1 + - 8.2 steps: - name: Checkout code @@ -31,7 +31,7 @@ jobs: coverage: none - name: Install Composer dependencies - run: composer install --prefer-dist --no-interaction --no-suggest + run: composer install --prefer-dist --no-interaction - name: Run analysis run: phpstan analyse --no-ansi --no-interaction --no-progress diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b2cd22f..b5c86ca 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,9 +14,9 @@ jobs: os: - ubuntu-latest php: - - 7.4 - 8.0 - 8.1 + - 8.2 steps: - name: Checkout code @@ -31,7 +31,7 @@ jobs: coverage: none - name: Install Composer dependencies - run: composer install --prefer-dist --no-interaction --no-suggest + run: composer install --prefer-dist --no-interaction - name: Execute tests run: vendor/bin/phpunit --verbose diff --git a/composer.json b/composer.json index 70cabe7..76f6b0a 100644 --- a/composer.json +++ b/composer.json @@ -18,12 +18,12 @@ ], "minimum-stability": "stable", "require": { - "php": "^7.4|^8.0|^8.1", - "illuminate/http": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0", - "illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0" + "php": "^7.4|^8.0|^8.1|^8.2", + "illuminate/http": "^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0" }, "require-dev": { - "orchestra/testbench": "~3.5|~3.6|~3.7|~3.8|^4.0|^5.0|^6.0|^7.0", + "orchestra/testbench": "^7.0|^8.0|^9.0", "phpunit/phpunit": "^8.0|^9.0" }, "autoload": {