-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
57 lines (57 loc) · 1.36 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "smoren/yii2-module-access-manager",
"description": "Access manager and control module for Yii2",
"type": "yii2-extension",
"keywords": ["yii2", "extension", "module", "access", "access manager", "access control"],
"license": "MIT",
"authors": [
{
"name": "Smoren",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.0",
"ext-json": "*",
"yiisoft/yii2": "~2.0.0",
"smoren/mushroom-hook-manager": "^1.0.0",
"smoren/extended-exceptions": "^1.0.0",
"smoren/yii2-helpers": "^0.1.0",
"smoren/yii2-active-record-explicit": "^1.0.4|^2.0.0",
"smoren/yii2-auth-components": "^0.1.5",
"thamtech/yii2-uuid": "^1.2",
"smoren/helpers": "^0.1.12"
},
"require-dev": {
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.3"
},
"autoload": {
"psr-4": {
"Smoren\\Yii2\\AccessManager\\": "src"
}
},
"extra": {
"mushroom-use-hooks": true,
"mushroom-hooks": {
"after-install": [
"Smoren\\Yii2\\AccessManager\\MushroomHooks::afterInstall"
]
}
},
"config": {
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"smoren/mushroom-hook-manager": true,
"yiisoft/yii2-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}