A deployment tool for PHP

后端 未结 2 1863
既然无缘
既然无缘 2021-01-23 08:23

Hi guys I have a PHP project and I need a tool for make deployment and I foud Deployer, a deployment tool for PHP, which is your opinion and experience about it?

Regards

2条回答
  •  说谎
    说谎 (楼主)
    2021-01-23 08:51

    Deployer is good choose: it's has simple api, a lot of recipes for popular frameworks and apps, and can run parallel deploy. Also it requires only for PHP.

    • deployer.org
    • github.com/deployphp/deployer

    Here is an example of little task:

    task('my_task', function () {
        // Your tasks code...
    });
    

    Deployer has a good quality code:

    Deployer

提交回复
热议问题