2017 © Pedro Peláez
 

library esotalk-auth

A Laravel package for authentication with Esotalk.

image

modbase/esotalk-auth

A Laravel package for authentication with Esotalk.

  • Monday, July 28, 2014
  • by modbase
  • Repository
  • 2 Watchers
  • 0 Stars
  • 17 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

THIS IS A WORK IN PROGRESS, (*1)

DO NOT USE THIS PACKAGE YET!, (*2)

Esotalk External Authentication

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)

Installation

Step 1: Install package through Composer

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)

Step 2: Register the service provider

In your Laravel application, edit the app/config/app.php file and add this line to the providers array:, (*8)

'Modbase\EsotalkAuth\EsotalkAuthServiceProvider',

Step 3: Configure the location of your Esotalk installation

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)

Step 4: Enable the new authentication adapter

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

Usage

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)

The Versions

28/07 2014

dev-master

9999999-dev

A Laravel package for authentication with Esotalk.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Stijn Geselle

laravel authentication esotalk