sibesh/laravel-sift is a Laravel package for sift science package to integrate with laravel.
It currently has 0 GitHub stars and 54 downloads on Packagist (latest version 1.0.0).
Install it with composer require sibesh/laravel-sift.
Discover more Laravel packages by sibesh
or browse all Laravel packages to compare alternatives.
Last updated
composer require "sibesh/laravel-sift"
config/app.php
'providers' => [
Sibesh\LaravelSift\SiftServiceProvider::class,
]
'aliases' => [
'SiftScience' => Sibesh\LaravelSift\Facades\SiftScience::class,
]
php artisan vendor:publish --provider="Sibesh\LaravelSift\SiftServiceProvider"
it will generate sift-science.php inside config directory
ENV Settings
SIFT_API_KEY=your api key here
use SiftScience;
SiftScience::client()->track('$logout', [
'$user_id' => 'userId',
]);