mirror of
https://github.com/cgsmith/yii2-user.git
synced 2026-02-03 15:52:37 -06:00
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
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": "cgsmith105@gmail.com"
|
|
}
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/cgsmith/yii2-user/issues",
|
|
"source": "https://github.com/cgsmith/yii2-user"
|
|
},
|
|
"require": {
|
|
"php": ">=8.2",
|
|
"yiisoft/yii2": "~2.0.0"
|
|
},
|
|
"require-dev": {
|
|
"codeception/codeception": "^5.0",
|
|
"codeception/module-asserts": "^3.0",
|
|
"codeception/module-yii2": "^1.1",
|
|
"phpstan/phpstan": "^1.10",
|
|
"phpunit/phpunit": "^10.0"
|
|
},
|
|
"scripts": {
|
|
"test": "codecept run",
|
|
"test:unit": "codecept run unit",
|
|
"test:functional": "codecept run functional",
|
|
"phpstan": "phpstan analyse",
|
|
"lint": "@phpstan"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"cgsmith\\user\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"cgsmith\\user\\tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"bootstrap": "cgsmith\\user\\Bootstrap"
|
|
},
|
|
"repositories": [
|
|
{
|
|
"type": "composer",
|
|
"url": "https://asset-packagist.org"
|
|
}
|
|
],
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"yiisoft/yii2-composer": true
|
|
}
|
|
}
|
|
}
|