mirror of
https://github.com/cgsmith/yii2-user.git
synced 2026-02-04 00:02:37 -06:00
42 lines
1001 B
JSON
42 lines
1001 B
JSON
{
|
|
"name": "cgsmith/yii2-user",
|
|
"description": "Modern user management module for Yii2",
|
|
"type": "yii2-extension",
|
|
"keywords": ["yii2", "user", "authentication", "authorization", "rbac", "gdpr"],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Chris Smith",
|
|
"email": "chris@cgsmith.net"
|
|
}
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/cgsmith/yii2-user/issues",
|
|
"source": "https://github.com/cgsmith/yii2-user"
|
|
},
|
|
"require": {
|
|
"php": ">=8.2",
|
|
"yiisoft/yii2": "^2.0.45"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.0",
|
|
"phpstan/phpstan": "^1.10"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"cgsmith\\user\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"cgsmith\\user\\tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"bootstrap": "cgsmith\\user\\Bootstrap"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|