mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 01:02:24 +01:00
994 B
Executable File
994 B
Executable File
Installation
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
:::tip CLI Autocomplete Deployer comes with autocomplete support for task names, options, and hosts.
Add the following to your ~/.bashrc
or ~/.zshrc
:
eval "$(dep autocomplete --shell bash)"
:::
Distribution
composer require deployer/dist --dev
:::tip Global and local Deployer
If you call a globally installed Deployer via /usr/local/bin/dep
in a project
directory with a locally installed Deployer at vendor/bin/dep
, Deployer will
redirect the call to a local Deployer.
~/project $ dep --version
Using ~/project/vendor/bin/dep
Deployer 7.0.0
:::
Source
composer require deployer/deployer --dev
:::warning Dependency conflicts In case of dependency conflicts, install distribution version. :::