hostville / dorcas-laravel-compat
This package is abandoned and no longer maintained.
No replacement package was suggested.
Built to make Dorcas work seamlessly with Laravel
v0.0.2
2018-01-31 10:35 UTC
Requires
- php: >=5.6.4
- hostville/dorcas-sdk-php: dev-master
- illuminate/auth: ^5.5
Requires (Dev)
- phpunit/phpunit: ^6
This package is auto-updated.
Last update: 2020-10-21 13:12:04 UTC
README
A small pack of parts to make Dorcas play well with Laravel.
Authentication
The Dorcas PHP SDK provides some utility functions for creating user accounts, and authenticating with a username-password combination (provided you have details for a Password Grant client).
To integrate your Laravel install with Dorcas for user authentication, you should make changes to your
config/auth.php
file.
'guards' => [ 'web' => [ 'driver' => 'session', 'provider' => 'dorcas', // formerly users ], 'api' => [ 'driver' => 'token', 'provider' => 'users', ], ],
This package registers a new UserProvider
which you can use with your installation.