-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
42 lines (42 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
{
"name": "neeckeloo/wizard",
"description": "Wizard module for Zend Framework 2",
"type": "library",
"keywords": [
"zf2", "wizard"
],
"license": "MIT",
"homepage": "https://github.com/neeckeloo/Wizard",
"authors": [
{
"name": "Nicolas Eeckeloo",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"symfony/options-resolver": "~2.6"
},
"require-dev": {
"zendframework/zend-eventmanager": "~2.3",
"zendframework/zend-filter": "~2.3",
"zendframework/zend-form": "~2.3",
"zendframework/zend-http": "~2.3",
"zendframework/zend-modulemanager": "~2.3",
"zendframework/zend-mvc": "~2.3",
"zendframework/zend-servicemanager": "~2.3",
"zendframework/zend-session": "~2.3",
"zendframework/zend-stdlib": "~2.3",
"zendframework/zend-view": "~2.3",
"phpunit/phpunit": "~4.5",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-0": {
"Wizard": "src/"
},
"classmap": [
"./"
]
}
}