-
Notifications
You must be signed in to change notification settings - Fork 0
chore: bump version to 3.0.0 and broaden symfony constraint to ^7.0|^8.0 #10
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
Changes from all commits
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 |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "saucebase/module-installer", | ||
| "description": "Custom Composer installer for Sauce Base modules (type: saucebase-module). Installs to Modules/<Name> with configurable base dir.", | ||
| "description": "Custom Composer installer for Sauce Base modules (type: saucebase-module). Installs to modules/<name> (lowercase) with configurable base dir.", | ||
| "type": "composer-plugin", | ||
| "license": "MIT", | ||
| "authors": [ | ||
|
|
@@ -12,8 +12,8 @@ | |
| "require": { | ||
| "php": "^8.4", | ||
| "composer-plugin-api": "^2.0", | ||
| "symfony/finder": "^8.0", | ||
| "symfony/process": "^8.0" | ||
| "symfony/finder": "^7.0|^8.0", | ||
| "symfony/process": "^7.0|^8.0" | ||
|
Comment on lines
+15
to
+16
|
||
| }, | ||
| "require-dev": { | ||
| "composer/composer": "^2.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.
composer.jsonrequirements were changed, butcomposer.lockis still pinned to the old content-hash. Since CI runscomposer validate, this will fail unlesscomposer.lockis regenerated (e.g.,composer update --lockor update these packages with--lock).