8000 [9.x] Update to Symfony v6 and drop PHP 7.4 support by driesvints · Pull Request #37941 · laravel/framework · GitHub
[go: up one dir, main page]

Skip to content

[9.x] Update to Symfony v6 and drop PHP 7.4 support #37941

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

Merged
merged 8 commits into from
Jul 7, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
PHP 8 only
  • Loading branch information
driesvints committed Jul 6, 2021
commit c32f838eb4a39b2d41c1f857a7c9bcc7b7d5c549
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['7.4', '8.0']
php: ['8.0']
stability: [prefer-lowest, prefer-stable]
include:
- php: '8.1'
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['7.4', '8.0']
php: ['8.0']
stability: [prefer-lowest, prefer-stable]
include:
- php: '8.1'
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": "^7.4|^8.0",
"php": "^8.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@driesvints Shouldn't this change be made in all Illuminate components composer.json too?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep seems I forgot to do that. Can you send in a PR? Otherwise I'll try to do that later this week.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure. I'll send one later today.

"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
Expand Down
0