-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
executable file
·74 lines (74 loc) · 2.07 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
67
68
69
70
71
72
73
74
{
"name": "mvlabs/ze-content-validation",
"type": "library",
"description": "PSR-7 Validation middleware for Zend Expressive",
"authors": [
{
"name": "Diego Drigani",
"email": "d.drigani@mvlabs.it",
"homepage": "http://www.mvlabs.it"
}
],
"license": "MIT",
"repositories": [
],
"keywords": [
"http",
"zend",
"expressive",
"validation",
"psr",
"psr-7"
],
"require": {
"php": "^7.1",
"roave/security-advisories": "dev-master",
"zendframework/zend-expressive": "^3.0",
"zendframework/zend-filter": "^2.8",
"zendframework/zend-http": "^2.7",
"zendframework/zend-inputfilter": "^2.8",
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zend-stdlib": "^3.1",
"zendframework/zend-validator": "^2.10",
"zendframework/zend-i18n": "^2.7",
"zendframework/zend-problem-details": "^1.0",
"zf2timo/zf-mvc-expressive-bridge": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "7.0.1",
"zendframework/zend-coding-standard": "~1.0.0",
"composer/composer": ">=1.0.0-alpha10",
"robmorgan/phinx": "^0.4.6",
"fzaninotto/faker": "^1.5",
"codeception/codeception": "*",
"zendframework/zend-expressive-zendrouter": "^3.0",
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zend-expressive-tooling": "^1.0.0alpha2",
"zfcampus/zf-development-mode": "^3.1",
"filp/whoops": "^2.1.12"
},
"autoload": {
"psr-4": {
"ZE\\ContentValidation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZETest\\ContentValidation\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit"
},
"extra": {
"zf": {
"config-provider": "ZE\\ContentValidation\\ConfigProvider"
}
}
}