omnilight / yii2-scheduling

Scheduling extension for Yii2 framework
MIT License
317 stars 84 forks source link

symfony/process locked dependency problem #33

Closed vishuB closed 6 years ago

vishuB commented 6 years ago

Using composer install to get error Installation request for omnilight/yii2-scheduling * -> satisfiable by omnilight/yii2-scheduling[1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.5, 1.0.6, 1.0.7, 1.0.8, 1.1.0]

show below image

omnilight_yii2_scheduling 1

Ubuntu : 16.04 LTS Yii2 Version : 2.0.15.1 PHP Version : 7.1

kstkn commented 6 years ago

As composer output already mentioned, this library requires symfony/process package with version 2.6.*, while your project locked this package version on 4.0.4

vishuB commented 6 years ago

right

vishuB commented 6 years ago

this extention work perfect in symfony/process v4.1.1.

omnilight commented 6 years ago

@gietos We should just change requirement in composer json to "symfony/process": "^2.8 || ^3.4 || ^4.0" or something like that

zeevy commented 4 years ago

Still facing the similar issue

Installation request for symfony/console (locked at v4.4.8) -> satisfiable by symfony/console[v4.4.8].

Need to add

"symfony/process": "^2.8 || ^3.4 || ^4.0" || ^5.0

??