for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ExoUNX\Vasri\Providers;
use Illuminate\Support\ServiceProvider;
/**
* Service Provider for Laravel
* Class VasriServiceProvider
*
* @package ExoUNX\Vasri
* @author Gaige Lama <[email protected]>
* @license MIT License
* @link https://github.com/ExoUNX/Vasri
*/
class VasriServiceProvider extends ServiceProvider
{
* Perform post-registration booting of services.
* @return void
public function boot(): void
$this->publishes(
[
__DIR__.'/../config/vasri.php' => config_path('vasri.php'),
]
);
}
* Register bindings in the container.
public function register()
$this->commands([
\ExoUNX\Vasri\Commands\VasriCommand::class,
]);
$this->mergeConfigFrom(__DIR__.'/../config/vasri.php', 'vasri');