laravel fleet, multiple projects with docker.
im trying to install laravel fleet and have multiple projects while running docker containers, but so far i haven't been able to install correctly. i run the command below once i ran migrations, built and ran npm and while the container is running.
https://github.com/aschmelyun/fleet - composer require aschmelyun/fleet --dev
Problem 1
- Root composer.json requires aschmelyun/fleet * -> satisfiable by aschmelyun/fleet[v1.0.0, v1.0.1, v1.0.2, v1.1.0].
- aschmelyun/fleet[v1.0.0, ..., v1.1.0] require symfony/process ^6.2 -> found symfony/process[v6.2.0, ..., v6.4.4] but the package is fixed to v7.0.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
You can also try re-running composer require with an explicit version constraint, e.g. "composer require aschmelyun/fleet:*" to figure out if any version is installable, or "composer require aschmelyun/fleet:^2.1" if you know which you need.
it says i need have version ^6.2 of symfony/process but everytime i change the version on the file, it reverts back to 7.0.4. im currently changing the version on composer.lock because that's where i found the package, is not located on composer.json.
when i change it and run composer update the version reverts back to 7.0.4
what am i doing wrong?
Please or to participate in this conversation.