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

[7.x] Add support for php 8 #1126

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4]
php: [7.2, 7.3, 7.4, 8.0]

name: PHP ${{ matrix.php }}

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": "^7.2.5",
"php": "^7.2.5|^8.0",
"illuminate/auth": "^7.0",
"illuminate/broadcasting": "^7.0",
"illuminate/bus": "^7.0",
Expand All @@ -39,7 +39,7 @@
"illuminate/validation": "^7.0",
"illuminate/view": "^7.0",
"illuminate/log": "^7.0",
"dragonmantank/cron-expression": "^2.0",
"dragonmantank/cron-expression": "^2.3.1",
"nikic/fast-route": "^1.3",
"symfony/console": "^5.0",
"symfony/error-handler": "^5.0",
Expand All @@ -50,8 +50,8 @@
"vlucas/phpdotenv": "^4.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.4|^9.0"
"mockery/mockery": "~1.3.3|^1.4.2",
"phpunit/phpunit": "^8.4|^9.3.3"
},
"suggest": {
"laravel/tinker": "Required to use the tinker console command (^2.0).",
Expand Down