0

저는 Elite Beanstalk에 Laravel 앱을 배포하기 위해 git을 사용하고 있지만 앱은 항상 배포되지 않습니다.AWS Elastic Beanstalk "composer install"패키지를 찾을 수 없습니다.

확실히 cartalyst 패키지를 찾을 것으로 보인다
{ 
"name": "laravel/laravel", 
"description": "The Laravel Framework.", 
"keywords": ["framework", "laravel"], 
"require": { 
    "laravel/framework": "4.0.*", 
     "laravelbook/ardent": "dev-master", 
    "cartalyst/sentry": "2.0.*", 
     "cartalyst/api": "1.0.*", 
     "machuga/authority-l4" : "dev-master", 
     "way/generators": "dev-master", 
     "jonob/restful": "dev-master", 
     "intervention/image": "dev-master" 
}, 
"autoload": { 
    "classmap": [ 
     "app/commands", 
     "app/controllers", 
     "app/models", 
     "app/database/migrations", 
     "app/database/seeds", 
     "app/tests/TestCase.php" 
    ] 
}, 
"scripts": { 
    "post-install-cmd": [ 
     "php artisan optimize" 
    ], 
    "pre-update-cmd": [ 
     "php artisan clear-compiled" 
    ], 
    "post-update-cmd": [ 
     "php artisan optimize" 
    ], 
    "post-create-project-cmd": [ 
     "php artisan key:generate" 
    ] 
}, 
"config": { 
    "preferred-install": "dist" 
}, 
    "repositories": [ 
    { 
     "type": "composer", 
     "url": "http://packages.cartalyst.com" 
    } 
    ], 
"minimum-stability": "dev" 
} 

, 그래서 어쩌면 내가 지정해야합니다

Problem 1 
- The requested package laravel/framework could not be found in any version, there may be  a typo in the package name. 
Problem 2 
- The requested package laravelbook/ardent could not be found in any version, there may be a typo in the package name. 
Problem 3 
- The requested package machuga/authority-l4 could not be found in any version, there may be a typo in the package name. 
Problem 4 
- The requested package way/generators could not be found in any version, there may be a typo in the package name. 
Problem 5 
- The requested package jonob/restful could not be found in any version, there may be a typo in the package name. 
Problem 6 
- The requested package intervention/image could not be found in any version, there may be a typo in the package name. 
Problem 7 
- cartalyst/api 1.0.x-dev requires illuminate/container 4.0.* -> no matching package found. 
- cartalyst/api v1.0.0 requires illuminate/container 4.0.* -> no matching package found. 
- Installation request for cartalyst/api 1.0.* -> satisfiable by cartalyst/api v1.0.0, cartalyst/api 1.0.x-dev. 

여기 내 composer.json 파일입니다 : 나는 로그를 확인하고 여기에 내가 얻을 오류입니다 다른 사람들을위한 저장소? 그렇다면 저장소는 무엇입니까?

답변

관련 문제