我尝试通过Codeship将我的PHP应用程序部署到Heroku。Heroku要求将ext-blackfire添加到我的composer.json中,这导致composer install的Codeship崩溃。
The requested PHP extension ext-blackfire ~1.18 is missing from your system.
Install or enable PHP's blackfire extension.如何在Codeship上安装Blackfire扩展?
发布于 2018-01-27 03:24:05
您应该能够通过composer install --ignore-platform-reqs安装依赖项,这会忽略任何缺少的扩展。有关更多详细信息,请参阅文档(https://getcomposer.org/doc/03-cli.md)。
https://stackoverflow.com/questions/48354449
复制相似问题