dev-master
9999999-devA social authentication REST API for Laravel 5
MIT
The Requires
A social authentication REST API for Laravel 5
A social authentication REST API for Laravel 5, (*1)
WARNING: THIS IS STILL UNDER DEVELOPMENT AND SHOULD IN NO WAY BE USED FOR PRODUCTION, (*2)
Add the package to your composer.json file:, (*3)
"require": { ... "andyjessop/socialist": "dev-master" },
Then update:, (*4)
composer update
Add the service provider to 'YourRoot/config/app.php' providers
array, (*5)
'providers' => [ ... AndyJessop\Socialist\SocialistServiceProvider::class, ],
Publish the config and migration files:, (*6)
php artisan vendor:publish
Run the migration, (*7)
php artisan migrate
Socialist exposes some events for you to hook into in your application. To register listeners, follow the instructions in the Laravel Docs., (*8)
AndyJessop\Socialist\Events\UserHasLoggedIn
exposes user data, (*9)
AndyJessop\Socialist\Events\UserHasRegistered, (*10)
fires when a user is created, (*11)
A social authentication REST API for Laravel 5
MIT