for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AnilcanCakir\Former;
use Illuminate\Support\ServiceProvider;
class FormerServiceProvider extends ServiceProvider
{
/**
* Register the service provider.
*
* @return void
*/
public function register()
$this->configure();
}
* Setup the configuration for Former.
protected function configure()
$this->mergeConfigFrom(
__DIR__.'/../config/former.php', 'former'
);