Laravel 5 - 无法安装laracasts / generator

时间:2016-03-23 19:21:48

标签: php laravel laravel-5 composer-php

我正在尝试使用以下命令通过Composer安装Laravel 5 Extended Generatorscomposer require laracasts/generators --dev

我收到了以下错误消息:

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.

我使用的Laravel版本是5.2。这可能是什么问题?

1 个答案:

答案 0 :(得分:1)

我最终找到了解决此问题的方法here。基本上,composer.json应该如下所示:

"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"
        }
    ],