-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 960 Bytes
/
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
{
"name": "goten4/gtn-persist-base",
"type": "library",
"description": "Zend Framework 2 Module that provides Persistence basic functionality (trying to follow DDD principles)",
"keywords": [
"ddd",
"module",
"zf2"
],
"homepage": "http://github.com/goten4/GtnPersistBase",
"license": "MIT",
"authors": [
{
"name": "Emmanuel Bouton",
"email": "[email protected]",
"homepage": "http://github.com/goten4",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-loader": "~2.3",
"zendframework/zend-modulemanager": "~2.3"
},
"require-dev": {
"phpunit/PHPUnit": "3.7.*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-0": {
"GtnPersistBase": "src/"
},
"classmap": [
"./Module.php"
]
}
}