-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
40 lines (40 loc) · 1.05 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
{
"name": "pomm-project/pomm-module",
"description": "Zend Framework 2 Module that provides Pomm2 basic functionality",
"type": "library",
"license": "MIT",
"homepage": "http://www.pomm-project.org/",
"keywords": [
"pomm2",
"module",
"zf2"
],
"authors": [
{
"name": "Martin Supiot",
"email": "[email protected]",
"homepage": "http://www.jack-in-the-box.fr/expertise/logiciel"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.4.4",
"pomm-project/model-manager": "2.0.*@dev",
"pomm-project/foundation": "2.0.*@dev",
"zendframework/zendframework": "2 - 3",
"zendframework/zend-console": "2 - 3"
},
"require-dev": {
"phpunit/phpunit": "4.0.7"
},
"bin": ["bin/pomm.php"],
"autoload": {
"psr-4": {
"PommProject\\PommModule\\": "src/",
"PommProjectTest\\PommModule\\": "test/"
},
"classmap": [
"Module.php"
]
}
}