欧美国产精品一区第二页_性少妇sexvid呻吟粗话小说_午夜在线视频播放_欧美亚洲日韩青椒午夜影院_免费黄色网址av_国产在线拍揄自揄自揄视频_亚洲污毛片在线看_欧美人妻不卡视频二区

跳轉至

Installation

Phar is the best distribution mechanism for a tool.

Globally

To install Deployer as phar archive globally, run the following commands:

curl -LO https://deployer.org/deployer.phar
mv deployer.phar /usr/local/bin/dep
chmod +x /usr/local/bin/dep

After installing Deployer globally with will be able to initialize a recipe in new project with just dep init command.

If you need another version of Deployer, you can find it on the download page. Later, to upgrade Deployer, run the command:

dep self-update

To upgrade to the next major release, if available, use the --upgrade (-u) option:

dep self-update --upgrade

Distribution

composer require deployer/dist --dev

Then to use Deployer, run the following command:

php vendor/bin/dep

This is preferred method of installing Deployer in composer project. In distribution repo only phar is committed, and its dependencies will not conflict with your project dependencies.

Download deployer.phar and commit it. Totally okay. Update it via with dep self-update.

Source

Use it if you really need Deployer source files.

composer require deployer/deployer --dev

Autocomplete

Deployer comes with an autocomplete support for bash & zsh, so you don't need to remember task names and options.

Add next line to you .bash_profile:

eval "$(dep autocomplete)"

Read getting started next.

Back to top