Skip to content

Commit

Permalink
Merge pull request #15 from Treggats/upgrade/laravel-10
Browse files Browse the repository at this point in the history
  • Loading branch information
mazedlx authored Mar 21, 2023
2 parents 0c4d3af + 2f9e43a commit 5cc3db6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
os:
- ubuntu-latest
php:
- 7.4
- 8.0
- 8.1
- 8.2

steps:
- name: Checkout code
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
os:
- ubuntu-latest
php:
- 7.4
- 8.0
- 8.1
- 8.2

steps:
- name: Checkout code
Expand All @@ -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
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 5cc3db6

Please sign in to comment.