Closed neoacevedo closed 1 month ago
@neoacevedo do you have time to do a pull request correcting versions? Thanks.
Your project has requirement for an old version of symfony/browser-kit
found symfony/browser-kit[v4.4.24, ..., v4.4.44, v5.4.0, ..., v5.4.40, v6.0.0, ..., v6.4.8] but it conflicts with your root composer.json require (>=2.7 <=4.2.4).
Oh, it comes from very interesting version constraint in basic template
"symfony/browser-kit": "^6.0 || >=2.7 <=4.2.4"
back to @samdark
@neoacevedo do you have time to do a pull request correcting versions? Thanks.
I will try but I'm so noob on it.
@neoacevedo If you haven't figured it out yet, my advice is to completely remove symfony/browser-kit
from composer.json of your project.
Interesting, that symfony package is the root cause.
Interesting, that symfony package is the root cause.
It is caused by composer.json
in Yii2's basic/advanced templates. Fix is as @Naktibalda suggested.
There is a contradiction in the dependences:
codeception/module-yii2[1.1.0, ..., 1.1.1] require php >=5.6.0 <8.0 -> your php version (8.0.8) does not satisfy that requirement.
codeception/lib-innerbrowser[4.0.0, ..., 4.0.3] require php ^8.1 -> your php version (8.0.8) does not satisfy that requirement.
The module itself requires a PHP < 8.0 but its dependence, lib-innerbrowser requires a version >= 8.1
I'm trying to install this module in the yii2 app basic template, but the PHP version requirement is weird. If I try with PHP >= 8.0 the results are the same.