for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Scaling\Playbook;
use Illuminate\Support\ServiceProvider;
use Scaling\Playbook\Console\PlaybookCommand;
use Scaling\Playbook\Console\MakePlaybookCommand;
class PlaybookServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*/
public function boot()
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__.'/../config/config.php' => config_path('laravel-playbook.php'),
], 'config');
$this->commands([
PlaybookCommand::class,
MakePlaybookCommand::class,
]);
}
* Register the application services.
public function register()
$this->mergeConfigFrom(__DIR__.'/../config/config.php', 'laravel-playbook');