我试图将这个应用程序推到Heroku:https://github.com/seatgeek/build-artifacts,我得到了以下错误:
/tmp/buildpack20160326-160-1njxwfv/bin/compile上或第380行附近的脚本错误远程: remote:!拒绝,无法编译PHP (composer.json)应用程序
composer.json文件:
{
"name": "slim/slim-skeleton",
"description": "A Slim Framework skeleton application for rapid development",
"keywords": ["microframework","rest","router"],
"homepage": "http://github.com/codeguy/Slim-Skeleton",
"license": "MIT",
"authors": [
{
"name": "Josh Lockhart",
"email": "info@joshlockhart.com",
"homepage": "http://www.joshlockhart.com/"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/tuupola/slim-fake-mcrypt.git"
}
],
"require": {
"php": ">=5.3.0",
"monolog/monolog": "~1.6",
"tuupola/slim-fake-mcrypt": "dev-master",
"slim/slim": "~2.3",
"slim/views": "0.*",
"twig/twig": "~1.13",
"ruflin/elastica": "v0.90.2.0",
"knplabs/github-api": "*"
},
"extra": {
"heroku": {
"framework": "slim",
"document-root": "public",
"index-document": "index.php"
}
}
}我还没有找到/tmp文件夹。
发布于 2016-12-16 17:07:55
这里有一些简单的步骤使其工作,Heroku部署步骤1: heroku构建包:设置heroku/php
git添加composer.json composer.lock git推heroku主
为doicument根https://devcenter.heroku.com/articles/custom-php-settings#setting-the-document-root添加Procfile
https://stackoverflow.com/questions/36319226
复制相似问题