如何在cloudControl 上使用PHP 5.6(或更高版本)?

How to use PHP 5.6 (or later) on cloudControl?

我有一个要在 cloudControl 上部署的 Symfony 3.0 应用程序。该应用程序 运行ning 在 pinky 堆栈上;我的 composer.json 需要 PHP >=5.5.9

"require": {
    "php": ">=5.5.9",
    ...
}

当我尝试推送时,我得到

...
-----> WARN: No php version found in composer.json. Falling back to legacy build.
...
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - This package requires php >=5.5.9 but your PHP version (5.4.45) does
      not satisfy that requirement.

phpinfo() of the pinky stack 表明,PHP 5.6.12 是 运行ning.

我如何修改我的 composer.json(或我的应用程序中的任何其他文件)以在 PHP 5.6 中制作此 运行?

有一篇博客 post,介绍如何使用特定 PHP 版本和扩展。

http://www.paasfinder.com/custom-php-version/

由于所有系统都是64位的,你必须使用例如:

{
    "require": {
        "php-64bit": "5.6.12"
    }
}