for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace z1haze\Acl\Providers;
use Illuminate\Support\ServiceProvider;
class AclServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
*/
public function boot()
$this->publishFiles();
$this->loadMigrationsFrom(__DIR__ . '/../../../migrations');
}
* Register the application services.
* @return void
public function register()
//
* Publish all of our package files to the appropriate laravel app directories
protected function publishFiles()
$this->publishes([
__DIR__ . '/../../../config/laravel-acl.php' => config_path('laravel-acl.php')
], 'config');