-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
49 lines (49 loc) · 1.28 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
{
"name": "swaggest/json-schema-bench",
"description": "Comparative benchmark for JSON-schema PHP validators",
"type": "project",
"require": {
"php": ">=7.1",
"phpunit/phpunit": "dev-master#826bc37a9bf4fbf2176c06be987cc2ea6d4fe9ef",
"phperf/phpunit-bench": "dev-master#fbf0189566a7d1314bf2ab1c125fa47cfe479872",
"phpunit/php-code-coverage": "2.2.4",
"justinrainbow/json-schema": "^5.2",
"opis/json-schema": "^1.0",
"geraintluff/jsv4": "^1.0",
"stefk/jval": "dev-master#1c26dd2c16e5273d1c0565ff6c9dc51e6316c564",
"league/json-guard": "dev-master#d03dad6288f3b044f83edaaa3a1adcf71f8c757b",
"league/json-reference": "^1.0",
"swaggest/json-schema": "^0.12.0"
},
"license": "MIT",
"authors": [
{
"name": "Viacheslav Poturaev",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Swaggest\\JsonSchemaBench\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swaggest\\JsonSchemaBench\\Tests\\": "tests/src/"
}
},
"repositories": [
{
"url": "https://gitlab.com/vearutop/phpunit.git",
"type": "git"
},
{
"url": "https://gitlab.com/vearutop/phpunit-bench.git",
"type": "git"
}
]
}