You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 9, 2023. It is now read-only.
Is your feature request related to a problem? Please describe.
Running composer install with v2 will cause these errors:
➜ cms git:(master) composer install -d statamic
The "kylekatarnls/update-helper" plugin was skipped because it requires a Plugin API version ("^1.1.0") that does not match your Composer installation ("2.1.0"). You may need to run composer update with the "--no-plugins" option._______________________________________________________________________The "funkjedi/composer-include-files" plugin was skipped because it requires a Plugin API version ("^1.0") that does not match your Composer installation ("2.1.0"). You may need to run composer update with the "--no-plugins" option.____________________________________________________________________Installing dependencies from lock file (including require-dev)
Verifying lock file contents can be installed on current platform.
Your lock file does not contain a compatible set of packages. Please run composer update.
Problem 1
- funkjedi/composer-include-files is locked to version 1.0.0 and an update of this package was not requested.
- funkjedi/composer-include-files 1.0.0 requires composer-plugin-api ^1.0 -> found composer-plugin-api[2.1.0] but it does not match the constraint.
Problem 2
- kylekatarnls/update-helper is locked to version 1.1.1 and an update of this package was not requested.
- kylekatarnls/update-helper 1.1.1 requires composer-plugin-api ^1.1.0 -> found composer-plugin-api[2.1.0] but it does not match the constraint.
Problem 3
- kylekatarnls/update-helper 1.1.1 requires composer-plugin-api ^1.1.0 -> found composer-plugin-api[2.1.0] but it does not match the constraint.
- nesbot/carbon 1.39.0 requires kylekatarnls/update-helper ^1.1 -> satisfiable by kylekatarnls/update-helper[1.1.1].
- nesbot/carbon is locked to version 1.39.0 and an update of this package was not requested.
Describe the solution you'd like
Run composer update --with-all-dependencies
Describe alternatives you've considered
Ran the update myself.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Is your feature request related to a problem? Please describe.
Running
composer install
with v2 will cause these errors:Describe the solution you'd like
Run
composer update --with-all-dependencies
Describe alternatives you've considered
Ran the update myself.
The text was updated successfully, but these errors were encountered: