-
Notifications
You must be signed in to change notification settings - Fork 232
PHP8 support #665
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
PHP8 support #665
Changes from 6 commits
3b5d078
6fcd4a6
0db49f9
b1f1b87
7fe0fa6
fe73f3d
a1fde44
59a7ae1
784fe2a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
strategy: | ||
matrix: | ||
php-version: | ||
- "7.4" | ||
- "8.0" | ||
|
||
steps: | ||
- name: "Checkout" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,15 +12,15 @@ | |
{"name": "Jonathan H. Wage", "email": "[email protected]"} | ||
], | ||
"require": { | ||
"php": "^7.2", | ||
"doctrine/annotations": "^1.2", | ||
"doctrine/mongodb-odm": "^2.0.0", | ||
"php": "^7.2 || ^8.0", | ||
"doctrine/annotations": "^1.6", | ||
"doctrine/mongodb-odm": "^2.2", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this really necessary? The old There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Indeed, the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you guys for feedback reverted back to 2.0.0 |
||
"doctrine/persistence": "^1.3.6|^2.0", | ||
"psr/log": "^1.0", | ||
"symfony/config": "^4.3.3|^5.0", | ||
"symfony/console": "^4.3.3|^5.0", | ||
"symfony/dependency-injection": "^4.3.3|^5.0", | ||
"symfony/doctrine-bridge": "^4.3.3|^5.0", | ||
"symfony/config": "^4.3.3|^5.0", | ||
"symfony/framework-bundle": "^4.3.3|^5.0", | ||
"symfony/http-kernel": "^4.3.7|^5.0", | ||
"symfony/options-resolver": "^4.3.3|^5.0" | ||
|
@@ -29,7 +29,7 @@ | |
"doctrine/data-fixtures": "<1.3" | ||
}, | ||
"require-dev": { | ||
"doctrine/coding-standard": "^6.0", | ||
"doctrine/coding-standard": "^8.0", | ||
"doctrine/data-fixtures": "^1.3", | ||
"phpunit/phpunit": "^8.5 || ^9.3", | ||
"squizlabs/php_codesniffer": "^3.5", | ||
|
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.
Would it make sense to use
>=7.2
instead to keep it in line with Symfony's preferred versioning strategy?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.
No, that's a terrible strategy