-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
50 lines (46 loc) · 1.44 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
{
"name": "spiffy/spiffy-navigation",
"description": "Zend Framework 2 Module that aims to replace Zend\\Navigation",
"type": "library",
"keywords": [
"module",
"zf2"
],
"homepage": "http://www.github.com/spiffyjr/spiffy-navigation/",
"authors": [
{
"name": "Kyle Spraggs",
"email": "theman@spiffyjr.me",
"homepage": "http://www.spiffyjr.me/"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-console": "~2.2",
"zendframework/zend-eventmanager": "~2.2",
"zendframework/zend-form": "~2.2",
"zendframework/zend-modulemanager": "~2.2",
"zendframework/zend-mvc": "~2.2",
"zendframework/zend-permissions-acl": "~2.2",
"zendframework/zend-permissions-rbac": "~2.2",
"zendframework/zend-serializer": "~2.2",
"zendframework/zend-servicemanager": "~2.2",
"zendframework/zend-stdlib": "~2.2",
"zendframework/zend-uri": "~2.2",
"zendframework/zend-view": "~2.2"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"satooshi/php-coveralls": "dev-master",
"zendframework/zend-config": "~2.2"
},
"suggest": {
"zend/zend-config": "To use the ConfigProvider (yaml, xml support)"
},
"autoload": {
"psr-0": {
"SpiffyNavigation": "src/",
"SpiffyNavigationTest": "test/"
}
}
}