for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Reallyli\LaravelDeployer;
use Illuminate\Support\ServiceProvider;
class LaravelDeployerServiceProvider extends ServiceProvider
{
protected $commands = [
Commands\Deploy::class,
Commands\DeployConfigs::class,
Commands\DeployCurrent::class,
Commands\DeployDump::class,
Commands\DeployHosts::class,
Commands\DeployInit::class,
Commands\DeployList::class,
Commands\DeployRollback::class,
Commands\DeployUnlock::class,
Commands\DeployRun::class,
Commands\Logs::class,
Commands\Ssh::class,
];
public function boot()
if ($this->app->runningInConsole()) {
$this->commands($this->commands);
}