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
I am trying to get up and running with the CI4 upgrade helper and I am already facing requirements issues.
I am running Ubuntu 22.04 which includes PHP 8.1 and so does the application I intend to migrate to CI4.
When I ran: composer create-project kenjis/ci4-app-template ci4-news
I get the following:
`Creating a "kenjis/ci4-app-template" project at "./ci4-news"
Installing kenjis/ci4-app-template (v44.5.0)
- Downloading kenjis/ci4-app-template (v44.5.0)
- Installing kenjis/ci4-app-template (v44.5.0): Extracting archive
Created project in /home/chris/projects/ci4-news
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
- symfony/event-dispatcher is locked to version v7.0.3 and an update of this package was not requested.
- symfony/event-dispatcher v7.0.3 requires php >=8.2 -> your php version (8.1.2) does not satisfy that requirement.
Problem 2
- symfony/finder is locked to version v7.0.0 and an update of this package was not requested.
- symfony/finder v7.0.0 requires php >=8.2 -> your php version (8.1.2) does not satisfy that requirement.
Problem 3
- symfony/options-resolver is locked to version v7.0.0 and an update of this package was not requested.
- symfony/options-resolver v7.0.0 requires php >=8.2 -> your php version (8.1.2) does not satisfy that requirement.
Problem 4
- symfony/stopwatch is locked to version v7.0.3 and an update of this package was not requested.
- symfony/stopwatch v7.0.3 requires php >=8.2 -> your php version (8.1.2) does not satisfy that requirement.
Problem 5
- symfony/string is locked to version v7.0.3 and an update of this package was not requested.
- symfony/string v7.0.3 requires php >=8.2 -> your php version (8.1.2) does not satisfy that requirement.
Problem 6
- symfony/event-dispatcher v7.0.3 requires php >=8.2 -> your php version (8.1.2) does not satisfy that requirement.
- friendsofphp/php-cs-fixer v3.49.0 requires symfony/event-dispatcher ^5.4 || ^6.0 || ^7.0 -> satisfiable by symfony/event-dispatcher[v7.0.3].
- friendsofphp/php-cs-fixer is locked to version v3.49.0 and an update of this package was not requested.
`
Is there a way around this requirement?
Answering my own question but for now I have successfully installed with the previous version:
Hello,
I am trying to get up and running with the CI4 upgrade helper and I am already facing requirements issues.
I am running Ubuntu 22.04 which includes PHP 8.1 and so does the application I intend to migrate to CI4.
When I ran: composer create-project kenjis/ci4-app-template ci4-news
I get the following:
Is there a way around this requirement?
Answering my own question but for now I have successfully installed with the previous version:
composer create-project kenjis/ci4-app-template=v43.2.0 ci4-news
The text was updated successfully, but these errors were encountered: