for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Overtrue\LaravelFollow;
use Illuminate\Support\ServiceProvider;
class FollowServiceProvider extends ServiceProvider
{
public function boot()
$this->publishes([
\dirname(__DIR__) . '/config/follow.php' => config_path('follow.php'),
], 'config');
\dirname(__DIR__) . '/migrations/' => database_path('migrations'),
], 'migrations');
}