Skip to content

Commit

Permalink
Merge pull request #22 from erickmcarvalho/feature/php8-support
Browse files Browse the repository at this point in the history
PHP 8 support
  • Loading branch information
arondeparon authored Feb 2, 2021
2 parents f9d3647 + 843eabd commit 025d3e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 7.3]
php: [8.0, 7.4, 7.3]
laravel: [8.*, 7.*, 6.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
Expand Down
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@
}
],
"require": {
"php": "^7.3",
"illuminate/http": "^6.0|^7.0|^8.0"
"php": "^7.3|^8.0",
"illuminate/http": "^6.0|^7.0|^8.0",
"symfony/http-foundation": "^4.3.4|>=5.1.3"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"orchestra/testbench": "^4.0|^5.0|^6.0",
"mockery/mockery": "^1.3"
"mockery/mockery": "^1.4"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 025d3e4

Please sign in to comment.