2017 © Pedro Peláez
 

library laravel5-imap-authentication

An authentication provider for Laravel 5 that allows you to authenticate via IMAP.

image

peckrob/laravel5-imap-authentication

An authentication provider for Laravel 5 that allows you to authenticate via IMAP.

  • Wednesday, August 5, 2015
  • by peckrob
  • Repository
  • 1 Watchers
  • 2 Stars
  • 48 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 1 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

laravel5-imap-authentication

An authentication provider for Laravel 5 that allows you to authenticate via IMAP., (*1)

Installation

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)

Laravel 5

Setup

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',

Configuration

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

Contribute

Contributions are welcome. :), (*7)

https://github.com/peckrob/laravel5-imap-authentication, (*8)

The Versions

05/08 2015

dev-master

9999999-dev

An authentication provider for Laravel 5 that allows you to authenticate via IMAP.

  Sources   Download

MIT

The Requires

 

by Rob Peck