forked from phly/PhlySimplePage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.08 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
{
"name": "phly/phly-simple-page",
"description": "ZF2 Module for easily creating static pages",
"type": "library",
"keywords": [
"zf2",
"zend",
"module"
],
"homepage": "https://github.com/weierophinney/PhlySimplePage",
"authors": [
{
"name": "Matthew Weier O'Phinney",
"email": "[email protected]",
"homepage": "http://mwop.net/"
}
],
"autoload": {
"psr-0": {
"PhlySimplePage\\": "src/",
"PhlySimplePageTest\\": "test/"
},
"classmap": [
"./"
]
},
"require": {
"php": ">=5.3.3",
"zendframework/zend-console": "2.*",
"zendframework/zend-eventmanager": "2.*",
"zendframework/zend-http": "2.*",
"zendframework/zend-mvc": "2.*",
"zendframework/zend-stdlib": "2.*",
"zendframework/zend-view": "2.*"
},
"require-dev": {
"fabpot/php-cs-fixer": "*@dev",
"phpunit/PHPUnit": "~3.7.0",
"zendframework/zend-servicemanager": "2.*"
}
}