JeffreyWay / Laravel-4-Generators

Rapidly speed up your Laravel workflow with generators
https://packagist.org/packages/way/generators
MIT License
27 stars 9 forks source link

illuminate/support ~5.0 -> no matching package found #391

Closed aakilfernandes closed 10 years ago

aakilfernandes commented 10 years ago

Getting this when trying to run a composer update.

Problem 1

Potential causes:

Switched to 3 and didn't have a problem. I'm on PHP 5.5.14

aakilfernandes commented 10 years ago

Apologies. I was on an older version of laravel.

paplco commented 9 years ago

I getting this same error. I was using

"require": {
    "laravel/framework": "4.2.*",
        "way/generators": "dev-master"
}

and then decided to try "laravel/framework": "dev-master" based on the above post, but then I started to get many more error messages about requiring symfony packages such as symfony/css-selector 2.6.*

and each time I added the symfony dependency and set it to "dev-master", another required dependency came up.

Please, what are the proper settings to get way/generators working? Thank you

aakilfernandes commented 9 years ago

Remove "way/generators" from your "require".

Use this instead

"require-dev": {
     "way/generators": "~2.0"
}

Example here: https://bitbucket.org/aakilfernandes/karmalytics/src/80bf91fe4990b1a8a7d80c767df5860b6505c132/composer.json?at=master

paplco commented 9 years ago

Worked! Installed way/generators 2.6.1 Thank you very much!

aakilfernandes commented 9 years ago

Glad I could help =)