尝试部署我的magento应用程序我发生此错误:但在localhost中工作
我真的不明白为什么,我不确定它与PHP buildpack有关.在此错误未出现之前,我具有与以前相同的配置.
这是我的composer.json文件:
{
"name": "magento/project-community-edition",
"description": "eCommerce Platform for Growth (Community Edition)",
"type": "project",
"version": "2.1.1",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"require": {
"magento/product-community-edition": "2.1.1",
"composer/composer": "@alpha"
},
"require-dev": {
"PHPunit/PHPunit": "4.1.0",
"squizlabs/PHP_codesniffer": "1.5.3",
"PHPmd/PHPmd": "@stable",
"pdepend/pdepend": "2.2.2",
"fabpot/PHP-cs-fixer": "~1.2",
"lusitanian/oauth": "~0.3 <=0.7.0",
"sebastian/PHPcpd": "2.0.0"
},
"config": {
"use-include-path": true
},
"autoload": {
"psr-4": {
"Magento\\Framework\\": "lib/internal/Magento/Framework/",
"Magento\\Setup\\": "setup/src/Magento/Setup/",
"Magento\\": "app/code/Magento/"
},
"psr-0": {
"": "app/code/"
},
"files": [
"app/etc/NonComposerComponentRegistration.PHP"
]
},
"autoload-dev": {
"psr-4": {
"Magento\\Sniffs\\": "dev/tests/static/framework/Magento/Sniffs/",
"Magento\\Tools\\": "dev/tools/Magento/Tools/",
"Magento\\Tools\\Sanity\\": "dev/build/publication/sanity/Magento/Tools/Sanity/",
"Magento\\TestFramework\\inspection\\": "dev/tests/static/framework/Magento/TestFramework/inspection/",
"Magento\\TestFramework\\Utility\\": "dev/tests/static/framework/Magento/TestFramework/Utility/"
}
},
"minimum-stability": "alpha",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"extra": {
"magento-force": "override"
}
}
帮我解决这个问题.
解决方法:
试试这个
heroku create --buildpack https://github.com/heroku/heroku-buildpack-PHP --region eu
参考