Change "laravel/framework": "~4.3.*"
to "laravel/framework": "~5.0"
in your composer.json
I solved a similar issue by changing the require section of composer.json
file as follows:
"require": {
"laravel/framework": "~5.0",
"illuminate/html": "~5.0" //if you want to use HTML and Form
},
Regards,
it doesn't work
JeffreyWay's generators are still expecting the next release to be 4.3, not 5.0... You'll have to remove them or something.
There are already 2 pending pull requests on his GitHub though...
Jeffrey has just updated the generators, try using "way/generators": "~3.0"
now...
Resolved. Thanks!
usm4n said:
I solved a similar issue by changing the require section of
composer.json
file as follows:"require": { "laravel/framework": "~5.0", "illuminate/html": "~5.0" //if you want to use HTML and Form },
Regards,
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community