如何在heroku php应用程序上启用gd?

zzlelutf  于 2021-10-10  发布在  Java
关注(0)|答案(2)|浏览(373)

赫罗库说:
以下内置扩展是“共享”构建的,可以通过composer.json(括号中给出的内部标识符名称)启用:
但它没有给出一个示例,我尝试了以下composer.json: { "require": { "gd": "*" } } 但是当我 git push heroku master ,我得到:
my composer.json: { "require": { "gd": "*" } } 但是当我 git push heroku master ,我得到:

-----> Installing dependencies...
       Composer version 1.0.0-alpha9-19-g10401d5 2014-12-09 11:32:02
       Loading composer repositories with package information
       Installing dependencies
       Your requirements could not be resolved to an installable set of packages.

         Problem 1
           - The requested package gd could not be found in any version, there may be a typo     in the package name.

       Potential causes:
        - A typo in the package name
        - The package is not available in a stable-enough version according to your minimum-    stability setting
          see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more details.

       Read <http://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.

 !     Push rejected, failed to compile PHP app

如何在heroku上启用gd???

b1zrtrql

b1zrtrql1#

尝试以下方法:

{
    "require": {
        "ext-gd": "*"
    }
}

请参见此处使用可选扩展

vsikbqxv

vsikbqxv2#

仅在composer中添加gd作为依赖项(require)不会加载扩展gd。它只是告诉我们这个软件包需要启用gd。”ext-gd“只是一个虚拟的包,不是真正存在的。
你必须在你的平台上安装它。
请参见这里的composer-平台包

相关问题