-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
63 lines (63 loc) · 1.7 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
{
"name": "harmonyio/validation",
"description": "Asynchronous validation library",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pieter Hordijk",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"ext-ctype": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-gd": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"amphp/amp": "^2.1.1",
"amphp/artax": "^3.0.14",
"amphp/dns": "^1.0.0",
"amphp/file": "^0.3.5",
"amphp/parallel-functions": "^0.1.3",
"amphp/process": "^1.1.0",
"amphp/uri": "^0.1.3",
"egulias/email-validator": "^2.1.7",
"harmonyio/cache": "dev-master",
"harmonyio/http-client": "dev-master",
"myclabs/php-enum": "^1.7.0",
"react/promise": "^2.7.1",
"wikimedia/ip-set": "^2.0.1"
},
"require-dev": {
"harmonyio/php-codesniffer-ruleset": "dev-master",
"harmonyio/phpunit-extension": "dev-master",
"maglnet/composer-require-checker": "^2.0.0",
"phpunit/phpunit": "^8.1.3",
"slevomat/coding-standard": "^5.0.4",
"squizlabs/php_codesniffer": "^3.4.2"
},
"autoload": {
"psr-4": {
"HarmonyIO\\Validation\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"HarmonyIO\\ValidationTest\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}