-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.63 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name" : "ddattee/libs",
"description": "ZF2 ddattee Libs",
"type" : "library",
"keywords" : [
"rest",
"zf2"
],
"homepage": "http://www.ddattee.fr/",
"license" : "Apache-2.0",
"require" : {
"php" : ">=5.6",
"zendframework/zend-form" : "^2.5",
"zendframework/zend-filter" : "^2.5",
"zendframework/zend-http" : "^2.5",
"zendframework/zend-uri" : "^2.5",
"zendframework/zend-validator" : "^2.5",
"zendframework/zend-crypt" : "^2.5",
"zendframework/zend-mime" : "^2.5",
"zendframework/zend-cache" : "^2.5",
"zendframework/zend-authentication" : "^2.5",
"zendframework/zend-mail" : "^2.5",
"doctrine/doctrine-orm-module" : "0.*",
"neilime/zf2-twb-bundle" : "^2.5"
},
"config": {
"platform": {
"php": "5.6"
}
},
"authors": [
{
"name" : "David Dattee",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"General\\": "library/General/",
"Rest\\" : "library/Rest/",
"Vendors\\": "library/Vendors/",
"Libs\\" : "src/",
"Tests\\" : "tests/"
},
"classmap": [
"src/Libs/Module.php"
]
},
"repositories": [
{
"type": "composer",
"url" : "https://packages.zendframework.com/"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"require-dev": {
"phpunit/phpunit" : "^4.0",
"zendframework/zend-test": "^2.0",
"phpmd/phpmd": "^2.6",
"squizlabs/php_codesniffer": "^3.0"
}
}