2017 © Pedro Peláez
 

library imapauth

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

image

laravel-enso/imapauth

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

  • Friday, May 4, 2018
  • by aocneanu
  • Repository
  • 2 Watchers
  • 0 Stars
  • 14 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 0 Open issues
  • 10 Versions
  • 0 % Grown

The README.md

laravel5-imap-authentication

Codacy Badge StyleCI Total Downloads Latest Stable Version, (*1)

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

Heavily inspired by peckrob's package., (*3)

Installation

Add the following line to the require section of your composer.json:, (*4)

{
    "require": {
        "peckrob/laravel5-imap-authentication": "dev-master"
    }
}

Update your packages with composer update or install with composer install., (*5)

Laravel 5

Setup

Add the ServiceProvider to the providers array in app/config/app.php., (*6)

        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., (*7)

    'driver' => 'imap',

Configuration

By default it will attempt to connect to localhost. If you want something different, add IMAP_AUTH_SERVER, IMAP_AUTH_PORT, IMAP_PARAMETERS to the .env file:, (*8)

IMAP_AUTH_SERVER
IMAP_PORT
IMAP_PARAMETERS

Contribute

Contributions are welcome. :), (*9)

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

The Versions

04/05 2018

dev-master

9999999-dev

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

  Sources   Download

MIT

The Requires

 

by mishu

04/05 2018

2.0.5

2.0.5.0

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

  Sources   Download

MIT

The Requires

 

04/05 2018

2.0.4

2.0.4.0

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

  Sources   Download

MIT

The Requires

 

04/05 2018

2.0.3

2.0.3.0

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

  Sources   Download

MIT

The Requires

 

04/05 2018

2.0.2

2.0.2.0

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

  Sources   Download

MIT

The Requires

 

04/05 2018

2.0.1

2.0.1.0

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

  Sources   Download

MIT

The Requires

 

04/05 2018

2.0.0

2.0.0.0

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

  Sources   Download

MIT

The Requires

 

26/03 2017

1.0.2

1.0.2.0

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

  Sources   Download

MIT

The Requires

 

by mishu

21/03 2017

1.0.1

1.0.1.0

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

  Sources   Download

MIT

The Requires

 

by mishu

21/03 2017

1.0.0

1.0.0.0

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

  Sources   Download

MIT

The Requires

 

by Rob Peck