-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
45 lines (45 loc) · 1.21 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
{
"name": "zf-commons/zfc-admin",
"description": "A generic Admin module for ZF2.",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"zf2"
],
"homepage": "https://github.com/juriansluiman/ZfcAdmin",
"authors": [
{
"name": "Jurian Sluiman ",
"email": "[email protected]",
"homepage": "http://juriansluiman.nl/en/"
},
{
"name": "Martin Shwalbe",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5 || ^7.0",
"zendframework/zend-modulemanager": "^2.5",
"zendframework/zend-loader": "^2.5",
"zendframework/zend-eventmanager": "^2.5 || ^3.0",
"zendframework/zend-mvc": "^2.5 || ^3.0",
"zendframework/zend-navigation": "^2.5"
},
"suggest": {
"bjyoungblood/bjy-authorize": "Access control to protect ZfcAdmin against unauthorized users"
},
"autoload": {
"psr-4": {
"ZfcAdmin\\": "src/"
}
},
"extra": {
"zf": {
"component": "ZfcAdmin",
"config-provider": [
"ZfcAdmin\\ConfigProvider"
]
}
}
}