-
Notifications
You must be signed in to change notification settings - Fork 27
Update min symfony version to ^7.0.0 #14
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
Update min symfony version to ^7.0.0 #14
Conversation
.github/workflows/tests.yml
Outdated
@@ -9,8 +9,8 @@ jobs: | |||
fail-fast: true | |||
matrix: | |||
os: [ubuntu-latest] | |||
php: [8.1, 8.2] | |||
symfony: [5.4.*, 6.2.*] | |||
php: [8.2] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
php: [8.2] | |
php: [8.1, 8.2] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minimal version for Symfony 7.0 is 8.2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right. You can add extra matrix values with include
:
include:
- php: "8.1"
symfony: "5.4.*"
- php: "8.1"
symfony: "6.3.*"
- php: "8.1"
symfony: "6.4.*"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @dmytrome
What:
Description:
Update min Symfony version to ^7.0.0 to support latest Symfony release.
Related: