first commit

This commit is contained in:
Chris Smith
2026-01-21 18:20:06 +01:00
commit 79c5872905
71 changed files with 7161 additions and 0 deletions

41
composer.json Normal file
View File

@@ -0,0 +1,41 @@
{
"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
}
}