Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support PHP 8.0 #25

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/.github-actions.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
phpcs:
strategy:
matrix:
version: ['7.4', '8.1']
version: ['7.4', '8.0', '8.1']
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
phpunit:
strategy:
matrix:
version: ['7.4', '8.1']
version: ['7.4', '8.0', '8.1']
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -14,7 +14,7 @@
}
],
"require": {
"php" : "^7.4|^8.1",
"php" : "^7.4|^8.0",
"illuminate/database": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0"
},
Expand Down