-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.14 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "rhosocial/yii2-user",
"description": "Common user model, including identity and profile.",
"type": "yii2-extension",
"keywords": ["yii2","extension","rho","social","user","profile"],
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "rhosocial",
"email": "opensource@dev.rho.social"
}
],
"require": {
"php": ">=8.0.11",
"yiisoft/yii2": ">=2.0.43 < 2.1",
"yiisoft/yii2-authclient": "^2.2.1",
"yiisoft/yii2-bootstrap5": "^2.0.3",
"kartik-v/yii2-widget-datetimepicker": "*",
"rhosocial/helpers": ">=1.0.3",
"rhosocial/yii2-base-models": "dev-master"
},
"require-dev": {
"yiisoft/yii2-faker": "*",
"phpunit/phpunit": "^9",
"codedungeon/phpunit-result-printer": "^0.32.0"
},
"autoload": {
"psr-4": {
"rhosocial\\user\\": ""
}
},
"repositories":[
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}