for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Axsor\PhpIPAM;
use Illuminate\Support\ServiceProvider;
class PhpIPAMServiceProvider extends ServiceProvider
{
public function boot()
$this->publishes([
__DIR__.'/../config/phpipam.php' => base_path('config/phpipam.php'),
], 'config');
if (file_exists($file = __DIR__.'/helpers.php')) {
require_once $file;
}
public function register()
$this->app->bind('phpipam', function () {
return new PhpIPAM();
});
$this->mergeConfigFrom(__DIR__.'/../config/phpipam.php', 'phpipam');