for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Pablumfication\LaravelSiftScience\Providers;
use Illuminate\Support\ServiceProvider;
class LaravelSiftScience extends ServiceProvider
{
/**
* Perform post-registration booting of services.
*
* @return void
*/
public function boot()
$this->app->bind(
'LaravelSiftScience',
\Pablumfication\LaravelSiftScience\Services\SiftScienceService::class
);
}
* Register any package services.
public function register()
$this->mergeConfigFrom(
__DIR__ . '/../../config/laravel-sift-science.php',
'laravel-sift-science'
* Get the services provided by the provider.
* @return array
public function provides()
return [];