-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
55 lines (55 loc) · 1.51 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
{
"name": "zendframework/zend-datavalidator",
"description": "General purpose, stateless data validation for PHP values.",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"validation",
"components",
"zf",
"zendframework"
],
"support": {
"docs": "https://docs.zendframework.com/zend-datavalidator/",
"issues": "https://github.com/zendframework/zend-datavalidator/issues",
"source": "https://github.com/zendframework/zend-datavalidator",
"slack": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/components"
},
"config": {
"sort-packages": true
},
"require": {
"php": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0.1",
"zendframework/zend-coding-standard": "^1.0",
"zendframework/zend-validator": "^2.10.1"
},
"autoload": {
"psr-4": {
"Zend\\DataValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZendTest\\DataValidator\\": "test/"
}
},
"extra": {
"zf": {
"config-provider": "Zend\\DataValidator\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}