forked from zfcampus/zf-content-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.71 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
{
"name": "zfcampus/zf-content-validation",
"description": "ZF2 Module providing incoming content validation",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"zend",
"module",
"validation"
],
"homepage": "http://apigility.org/",
"support": {
"email": "apigility-users@zend.com",
"irc": "irc://irc.freenode.net/apigility",
"source": "https://github.com/zfcampus/zf-content-validation",
"issues": "https://github.com/zfcampus/zf-content-validation/issues"
},
"repositories": [
{ "type": "composer", "url": "https://packages.zendframework.com" }
],
"extra": {
"branch-alias": {
"dev-master": "1.2-dev",
"dev-develop": "1.3-dev"
}
},
"require": {
"php": ">=5.5",
"zendframework/zend-eventmanager": "~2.3",
"zendframework/zend-filter": "~2.3",
"zendframework/zend-http": "~2.3",
"zendframework/zend-inputfilter": "~2.4",
"zendframework/zend-mvc": "~2.3",
"zendframework/zend-servicemanager": "~2.3",
"zendframework/zend-stdlib": "~2.3",
"zendframework/zend-validator": "~2.3",
"zfcampus/zf-api-problem": "~1.0",
"zfcampus/zf-content-negotiation": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"squizlabs/php_codesniffer": "^2.3.1",
"zendframework/zend-loader": "~2.3"
},
"autoload": {
"psr-4": {
"ZF\\ContentValidation\\": "src/"
},
"classmap": [
"Module.php"
]
},
"autoload-dev": {
"psr-4": {
"ZFTest\\ContentValidation\\": "test/"
}
}
}