for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Iman\Streamer;
use Illuminate\Support\ServiceProvider;
class StreamServiceProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
$this->mergeConfigFrom(__DIR__.'/config.php', 'laravel_video');
}
* Bootstrap services.
public function boot()
$this->publishes([__DIR__.'/config.php' => config_path('laravel_video.php')], 'laravel_video');