laravel - Can't install laracasts/utilities through composer -
if have package list that:
"require": { "laravel/framework": "4.2.*", "illuminate/support": "~5.0", "way/generators": "2.*", "intervention/image": "~2.1", "doctrine/inflector": "~1.0", "doctrine/dbal": "~2.3", "laracasts/utilities": "~2.0" }, or "illuminate/support": "~4.0", error:
- way/generators 2.6.1 requires illuminate/support ~4.0 -> no matching package found. - way/generators 2.6 requires illuminate/support ~4.1 -> no matching package found. - way/generators 2.5 requires illuminate/support ~4.1 -> no matching package found. ... , on so, if change package "illuminate/support": ">4", this:
- conclusion: don't install laravel/framework v4.2.18 - conclusion: remove laravel/framework v4.2.17 - conclusion: don't install laravel/framework v4.2.17 ... - laracasts/utilities 2.0 requires illuminate/support ~5.0 ... - don't install illuminate/support v5.0.0|don't install laravel/framework v4.2.0 ... can tell me how compose package list can run composer update?
what should install:
"laracasts/utilities": "1.0.*" and not
"laracasts/utilities": "~2.0" also should not put illuminate/support composer.json if put here use laracasts/utilities because conflict way/generators , laracasts/utilities (1.0.*)
Comments
Post a Comment