composer php - Cannot upgrade to Symfony 3 because of a dependency -


i'm trying upgrade symfony 2.8 symfony 3, cannot update composer.

i error :

hellogerard/jobby dev-master requires symfony/process ^2.7 -> satisfiable symfony/process[v2.7.0 ... blabla bla v2.8.2] 

when composer.json file of library need, see :

  "require": {     (...)     "symfony/process": "^2.7"   }, 

you can find composer file of jobby here : https://github.com/jobbyphp/jobby/blob/master/composer.json

the problem in symfony 3, symfony/process version 3.0, , because of "^2.7" on jobby's composer.json, cannot it. know there no backwards compatibilities problems symfony/process, how can fix / ignore problem ?

regards

create own fork , make pull request on base repository.

if there no bc-break using requested package symfony/process:3.0, change package version ^2.7 ^3.0 or >=2.7 in fork's composer.json.

edit
then, tell composer use fork installations, :

"repositories": [     {         "type": "vcs",         "url": "https://github.com/yourusername/jobby"     } ], "require": {     "hellogerard/jobby": "dev-master" } 

see vcs repositories documentation


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

android - Keyboard hides my half of edit-text and button below it even in scroll view -

css - Make div keyboard-scrollable in jQuery Mobile? -