for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of Laravel :package_name.
*
* (c) DraperStudio <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace DraperStudio\Commentable;
/**
* Class ServiceProvider.
* @author DraperStudio <[email protected]>
class ServiceProvider extends \DraperStudio\ServiceProvider\ServiceProvider
{
* Bootstrap the application services.
public function boot()
$this->publishMigrations();
$this->publishes([
__DIR__ . '/../../../resources/config/commentable.php' => config_path('commentable.php')
]);
$this->mergeConfigFrom(__DIR__ . '/../resources/config/commentable.php', 'commentable');
}
* Get the default package name.
* @return string
public function getPackageName()
return 'commentable';