Package Data | |
---|---|
Maintainer Username: | ronaldcastillo |
Maintainer Contact: | ronaldcastillo@gmail.com (Ronald Castillo) |
Package Create Date: | 2014-05-21 |
Package Last Update: | 2014-07-30 |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-19 03:04:59 |
Package Statistics | |
---|---|
Total Downloads: | 31 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 5 |
Total Open Issues: | 0 |
Provides an IMAP authentication provider for the Laravel 4 framework
Add the following lines to your composer.json file:
"require": {
"ronaldcastillo/imap-authentication": "dev-master"
}
Now, run composer update on the command line from your project's root directory:
composer update
Add the following Service Provider to your providers array in app/config/app.php
:
'providers' => array(
'RonaldCastillo\Imap\ImapServiceProvider'
)
Change your driver to 'imap'
in app/config/auth.php
:
'driver' => 'imap',
Run this on the command line from the root of your project:
php artisan config:publish ronaldcastillo/imap-authentication
This will publish the necessary configuration to app/config/ronaldcastillo/imap-authentication/
.
Within the configuration files we have two options:
return array(
'identifier' => 'username',
'datasource' => '{localhost:143}/readonly'
);
The identifier
indicates the name of the field that will be used as the username for the authentication, while the datasource
value is as specified in the php manual for the imap_open() function.