承接 infuse/auth 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

infuse/auth

最新稳定版本:3.2

Composer 安装命令:

composer require infuse/auth

包简介

Auth module for Infuse Framework

README 文档

README

Build Status Coverage Status Latest Stable Version Total Downloads

Auth module for Infuse Framework

Installation

  1. Install the package with composer:

    composer require infuse/auth
    
  2. Add the service to services in your app's configuration:

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

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

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

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

统计信息

  • 总下载量: 2.81k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 15
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-02-03