dev-master
9999999-devA Laravel package for authentication with Esotalk.
MIT
The Requires
The Development Requires
by Stijn Geselle
laravel authentication esotalk
Wallogit.com
2017 © Pedro Peláez
A Laravel package for authentication with Esotalk.
THIS IS A WORK IN PROGRESS, (*1)
DO NOT USE THIS PACKAGE YET!, (*2)
A package that allows for external authentication with Esotalk, integrating directly with the Laravel 4 framework., (*3)
Strongly based on the Fluxbb External Authenticator made by Franz Liedke., (*4)
Add this line to the require section of your composer.json:, (*5)
"modbase/esotalk-auth": "dev-master"
Alternately, you can use the Composer command-line tool by running this command:, (*6)
composer require modbase/esotalk-auth
Next, run composer update to actually install the package., (*7)
In your Laravel application, edit the app/config/app.php file and add this
line to the providers array:, (*8)
'Modbase\EsotalkAuth\EsotalkAuthServiceProvider',
In order to read some configuration values, the path to your Esotalk installation needs to be configured., (*9)
To copy the package configuration file, run this command:, (*10)
php artisan config:publish modbase/esotalk-auth
You can then edit app/config/packages/modbase/esotalk-auth/config.php.
Change the path option to point to the root directory of your Esotalk
installation. Make sure it ends with a slash., (*11)
In your application, edit the app/config/auth.php file and set the driver
option to esotalk, so that it looks like this:, (*12)
'driver' => 'esotalk',
Once installed, you can use the authentication feature of Laravel as you always do, with Laravel magically using Esotalk's database and cookie behind the scenes., (*13)
Note: Only MySQL is supported by Esotalk., (*14)
A Laravel package for authentication with Esotalk.
MIT
laravel authentication esotalk