-
-
Notifications
You must be signed in to change notification settings - Fork 3
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 dependency #16
Changes from all commits
8a3b62b
5a12a89
5401d7f
e3f0e6c
5173c67
024fdef
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 |
---|---|---|
|
@@ -41,9 +41,9 @@ | |
} | ||
], | ||
"require": { | ||
"php": "^8.1", | ||
"php": ">=8.1", | ||
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. It makes no sense to do this within PHP 8, as both will require PHP 8.1.0 or higher. But the |
||
"dragon-code/support": "^6.10", | ||
"symfony/console": "^5.3 || ^6.0" | ||
"symfony/console": "^5.3 || >=6.0" | ||
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. In this case, you should not use versioning with It is better to add tests for version 7 and specify it explicitly. This way we will make sure that the package works with version 7. |
||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^10.0", | ||
|
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.
There is no need to specify a minor version in the description, as specifying
^2.0
will cause the composer to install the most recent version from the second series.