library framework-auth
Auth module for Infuse Framework
idealistsoft/framework-auth
Auth module for Infuse Framework
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 3 Versions
- 0 % Grown
auth
, (*1)
Auth module for Infuse Framework, (*2)
Installation
-
Install the package with composer:, (*3)
composer require infuse/auth
-
Add the service to services
in your app's configuration:, (*4)
'services' => [
// ...
'auth' => 'Infuse\Auth\Services\Auth'
// ...
]
-
Add the migration to your app's configuration:, (*5)
'modules' => [
'migrations' => [
// ...
'Auth'
],
'migrationPaths' => [
// ...
'Auth' => 'vendor/infuse/auth/src/migrations'
]
]
-
(optional) Add the console command for helper tasks to console.commands
in your app's configuration:, (*6)
'console' => [
// ...
'commands' => [
// ...
'Infuse\Auth\Console\ResetPasswordLinkCommand'
]
]
-
(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)
dev-master
9999999-dev
Auth module for Infuse Framework
Sources
Download
MIT
The Requires
The Development Requires
authentication
framework
auth
users
infuse
1.1.0
1.1.0.0
Auth module for Infuse Framework
Sources
Download
MIT
The Requires
The Development Requires
authentication
framework
auth
users
infuse
1.0.0
1.0.0.0
Auth module for Idealist Framework
Sources
Download
MIT
The Requires
The Development Requires
authentication
framework
auth
users
idealist