-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.08 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "objective-php/validation",
"description": "Validation logic component",
"type": "library",
"keywords": [
"validation",
"objective php"
],
"homepage": "https://github.com/objective-php/validation",
"license": "GPL-3.0",
"authors": [
{
"name": "Gauthier 'Rusty' Delamarre",
"email": "gauthier@objective-php.org",
"role": "lead"
}
],
"require": {
"php": ">=7.0",
"ext-intl" : "*",
"objective-php/primitives": "^1.3.6",
"objective-php/services-factory": "^1.1.0",
"objective-php/notification": "^1.1.0",
"zendframework/zend-validator": "^2.8",
"zendframework/zend-filter": "^2.7",
"zendframework/zend-i18n": "^2.7"
},
"require-dev": {
"codeception/codeception": "^2.1",
"psr/container": "1.0.0",
"mikey179/vfsStream": "^1.6",
"phpro/grumphp": "^0.11.1",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"squizlabs/php_codesniffer": "^2.7",
"sebastian/phpcpd": "^2.0",
"phpmd/phpmd": "^2.6"
},
"autoload": {
"psr-4": {
"ObjectivePHP\\Validation\\": "src/"
}
}
}