-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.15 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
{
"name": "ddelrio1986/ninja-service-layer",
"description": "A ZF2 module which allows the easy creation of a service layer using Doctrine2.",
"type": "library",
"homepage": "https://github.com/ddelrio1986/NinjaServiceLayer",
"license": "MIT",
"authors": [
{
"name": "Daniel Del Rio",
"email": "[email protected]",
"homepage": "https://github.com/ddelrio1986",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/ddelrio1986/NinjaServiceLayer/issues",
"wiki": "https://github.com/ddelrio1986/NinjaServiceLayer/wiki",
"source": "https://github.com/ddelrio1986/NinjaServiceLayer"
},
"keywords": [
"zf2",
"doctrine2"
],
"autoload": {
"psr-0": {
"NinjaServiceLayer\\": "src/",
"NinjaServiceLayerTest\\": "tests/"
}
},
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "^2.3.2@stable",
"doctrine/doctrine-orm-module": "~0.8"
},
"require-dev": {
"phpunit/phpunit": "^4.2.2@stable"
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
}
}