pi/user
Composer 安装命令:
composer require pi/user
包简介
Api base authentication and user management module via laminas and pi
关键字:
README 文档
README
Api base authentication and user management via laminas and pi engine
1. Important note
This is the first stable version of the user module, you can install it on production projects now, we will work on improvement and testing this module in the next weeks
2. Installation
Follow the below steps to install the module via composer
Step 1
Run the following to install this library:
$ composer require pi/user
Step 2
Edit config\modules.config.php and add 'User' end of array, for example like this
<?php
return [
...
'Application',
'User', // Add this line
];
Step 3
Edit composer.json and add this line
"autoload": {
"psr-4": {
....
"User\\": "vendor/pi/user/src/"
}
},
Step 4
Run composer dump-autoload.
Step 5
Open data/schema.sql and create tablas in your database
3. List of TODO tasks for this module
- Rbac Authorization
- Admin handler: profile section (add, edit, list, password, view)
- Admin handler: Role section (add, edit, list)
- Admin handler: Permission section (add, edit, list)
- Handler (as web service) for check email, mobile, identity and password validation in registration
- Handler (as web service) for check strong password
- DTO
- Write test cases and make test
- Write documents, (in-file, extra)
- Move Role and Permission sections from user module to core module
统计信息
- 总下载量: 9
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2022-02-28