laravel/framework v4.2.9 requires d11wtq/boris ~1.0 -> no matching package found

风格不统一 提交于 2019-12-11 06:13:08

问题


I have following composer.json:

{
    "name": "laravel/laravel",
    "description": "The Laravel Framework.",
    "keywords": ["framework", "laravel"],
    "license": "MIT",
    "require": {
        "laravel/framework": "4.2.*",
        "zizaco/entrust": "1.2.*@dev",
        "zizaco/confide": "~4.0@dev",
        "mailchimp/mailchimp": "~2.0",
        "guzzlehttp/guzzle": "~4.0",
        "intervention/image": "2.2.1",
        "webpatser/laravel-uuid": "1.*",
        "hugofirth/mailchimp": "2.0.*",
        "jenssegers/agent": "~2.1",
        "roumen/sitemap": "2.4.15",
        "maatwebsite/excel": "~1.3.0",
        "tecnick.com/tcpdf": "6.2.*",
        "anhskohbo/no-captcha": "1.*",
        "tijsverkoyen/css-to-inline-styles": "^1.5",
        "mailgun/mailgun-php": "~1.7.2",
        "yajra/laravel-datatables-oracle": "~3.0",
        "rap2hpoutre/laravel-log-viewer": "^0.5.3"
    },
    "require-dev": {
        "way/generators": "~2.3",
        "Codeception/Codeception": "~2.0",
        "league/factory-muffin": "^2.1"
    },
    "autoload": {
        "classmap": [
            "app/commands",
            "app/controllers",
            "app/models",
            "app/database/migrations",
            "app/database/seeds",
            "app/tests/TestCase.php"
        ],
        "psr-4": {
            "Benu\\": "app/Benu"
        }
    },
    "scripts": {
        "post-install-cmd": [
            "php artisan clear-compiled",
            "php artisan optimize"
        ],
        "post-update-cmd": [
            "php artisan clear-compiled",
            "php artisan optimize"
        ],
        "post-create-project-cmd": [
            "php artisan key:generate"
        ]
    },
    "config": {
        "preferred-install": "dist",
        "bin-dir": "bin"
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}

After running `composer install I get following error:

laravel/framework v4.2.9 requires d11wtq/boris ~1.0 -> no matching package found.

I have tried minimal dependencies in json:

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

But the error is the same. Here is full output:

Any idea how to fix it?

来源:https://stackoverflow.com/questions/38433548/laravel-framework-v4-2-9-requires-d11wtq-boris-1-0-no-matching-package-found

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!