-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 980 Bytes
/
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
{
"name": "atans/atans-user",
"description" : "A RBAC user module for Zend Framework 2",
"type" : "library",
"keywords" : ["user", "zf2"],
"homepage": "https://github.com/atans/AtansUser",
"license": "MIT",
"authors": [
{
"name": "Atans Chiu",
"email": "[email protected]",
"homepage": "https://github.com/atans"
}
],
"repositories": [
{
"type": "vcs",
"url": "[email protected]:financialsistemas/ZfcBase.git"
}
],
"require": {
"php": "^7.4 || ^8.0",
"doctrine/doctrine-module": "^4.2.0",
"doctrine/doctrine-orm-module": "^4.0",
"zf-commons/zfc-base": "dev-master",
"lm-commons/lmc-rbac-mvc": "^3.3",
"lm-commons/lmc-admin": "dev-master"
"atans/atans-common" : "0.1.*"
},
"autoload": {
"psr-4": {
"AtansUser\\": "src/"
},
"classmap": [
"./Module.php"
]
}
}