for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Reallyli\LaravelDeployer\Commands;
class DeployConfigs extends BaseCommand
{
protected $signature = 'deploy:configs {stage? : Stage or hostname}';
protected $description = 'Print host configuration';
public function handle()
$this->dep('config:dump');
}