2016-03-23 8 views
2

Ich versuche, Laravel 5 Extended Generators über Composer zu installieren, mit dem folgenden Befehl: composer require laracasts/generators --dev.Laravel 5 - Laracasts/Generatoren können nicht installiert werden

erhielt ich diese Fehlermeldung:

Your requirements could not be resolved to an installable set of packages. 

    Problem 1 
    - The requested package way/generators dev-feature/laravel-5-stable could not be found. 

Potential causes: 
- A typo in the package name 
- The package is not available in a stable-enough version according to your minimum-stability setti      ng 
    see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details. 

Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems. 

Installation failed, reverting ./composer.json to its original content. 

Die Version von Laravel ich verwende ist 5.2. Was könnte das Problem hier sein?

Antwort

1

Ich fand schließlich eine Lösung für dieses Problem here. Grundsätzlich sollte composer.json wie folgt aussehen:

"require-dev": { 
     "fzaninotto/faker": "~1.4", 
     "mockery/mockery": "0.9.*", 
     "phpunit/phpunit": "~4.0", 
     "phpspec/phpspec": "~2.1", 
     "xethron/migrations-generator": "dev-l5", 
     "way/generators": "dev-feature/laravel-five-stable" 
    }, 
"repositories": [ 
     { 
      "type": "git", 
      "url": "https://github.com/jamisonvalenta/Laravel-4-Generators.git" 
     } 
    ], 
Verwandte Themen