在PHPCI

时间:2015-07-15 15:36:37

标签: continuous-integration

我们正在使用https://www.phptesting.org作为持续集成测试人员。

在运行composer之前,将composer.dist.json重命名/更新为composer.json的正确方法是什么?

1 个答案:

答案 0 :(得分:0)

在我看来,如果你拥有服务器并且它不是安全性的妥协,那就是激活PHPCI中的Shell插件

https://www.phptesting.org/wiki/Shell-Plugin

然后,您可以在一开始就使用它并创建目录,或在编写器运行之前提供所需的权限。

  setup:
      shell:
         - "update_params_rename_composer && do what you need && more"
      composer:
         action: "install"