dev-master
9999999-devAn authentication provider for Laravel 5 that allows you to authenticate via IMAP.
MIT
The Requires
by Rob Peck
Wallogit.com
2017 © Pedro Peláez
An authentication provider for Laravel 5 that allows you to authenticate via IMAP.
An authentication provider for Laravel 5 that allows you to authenticate via IMAP., (*1)
Add the following line to the require section of your composer.json:, (*2)
{
"require": {
"peckrob/laravel5-imap-authentication": "dev-master"
}
}
Update your packages with composer update or install with composer install., (*3)
Add the ServiceProvider to the providers array in app/config/app.php., (*4)
App\Providers\AppServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,
...
peckrob\Laravel5ImapAuthentication\ImapAuthServiceProvider::class,
In your app/config/auth.php, set the authentication driver to imap., (*5)
'driver' => 'imap',
By default it will attempt to connect to localhost. If you want something different, add IMAP_AUTH_SERVER to the .env file:, (*6)
IMAP_AUTH_SERVER=mail.example.com
Contributions are welcome. :), (*7)
https://github.com/peckrob/laravel5-imap-authentication, (*8)
An authentication provider for Laravel 5 that allows you to authenticate via IMAP.
MIT