2017 © Pedro Peláez
 

library framework-auth

Auth module for Infuse Framework

image

idealistsoft/framework-auth

Auth module for Infuse Framework

  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

auth

Build Status Coverage Status Latest Stable Version Total Downloads, (*1)

Auth module for Infuse Framework, (*2)

Installation

  1. Install the package with composer:, (*3)

    composer require infuse/auth
    
  2. Add the service to services in your app's configuration:, (*4)

    'services' => [
       // ...
       'auth' => 'Infuse\Auth\Services\Auth'
       // ...
    ]
    
  3. Add the migration to your app's configuration:, (*5)

    'modules' => [
      'migrations' => [
         // ...
         'Auth'
      ],
      'migrationPaths' => [
         // ...
         'Auth' => 'vendor/infuse/auth/src/migrations'
      ]
    ]
    
  4. (optional) Add the console command for helper tasks to console.commands in your app's configuration:, (*6)

    'console' => [
       // ...
       'commands' => [
           // ...
           'Infuse\Auth\Console\ResetPasswordLinkCommand'
       ]
    ]
    
  5. (optional) Add the garbage collection scheduled job to cron in your app's configuration:, (*7)

    'cron' => [
      // ...
      [
         'id' => 'auth:garbageCollection',
         'class' => 'Infuse\Auth\Jobs\GarbageCollection',
         'minute' => 30,
         'hour' => 1,
         'day' => 1
      ]
    ]
    

Usage

You can create your own User model located at App\Users\Models\User for futher customization., (*8)

The Versions

08/04 2015

dev-master

9999999-dev

Auth module for Infuse Framework

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

authentication framework auth users infuse

08/04 2015

1.1.0

1.1.0.0

Auth module for Infuse Framework

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

authentication framework auth users infuse

25/09 2014

1.0.0

1.0.0.0

Auth module for Idealist Framework

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

authentication framework auth users idealist