This repository has been archived by the owner on May 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
73 lines (73 loc) · 2.05 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
{
"name": "league/json-guard",
"type": "library",
"description": "A validator for JSON using json-schema.",
"keywords": [
"Validation",
"json",
"schema",
"json-schema",
"json-schema.org"
],
"homepage": "https://github.com/thephpleague/json-guard",
"license": "MIT",
"authors": [
{
"name": "Matthew Allan",
"email": "matthew.james.allan@gmail.com",
"homepage": "https://mattallan.org",
"role": "Developer"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "json-schema/JSON-Schema-Test-Suite",
"version": "1.2.0",
"source": {
"url": "https://github.com/json-schema/JSON-Schema-Test-Suite",
"type": "git",
"reference": "1.2.0"
}
}
}
],
"require": {
"php": ">=5.6.0",
"psr/container": "^1.0",
"ext-bcmath": "*"
},
"require-dev": {
"phpunit/phpunit" : "^4.8.35",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3",
"json-schema/JSON-Schema-Test-Suite": "1.2.0",
"league/json-reference": "^1.1.0",
"ext-curl": "*",
"peterpostmann/fileuri": "^1.0"
},
"suggest": {
"league/json-reference": "Required to use schemas containing JSON references"
},
"autoload": {
"psr-4": {
"League\\JsonGuard\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"League\\JsonGuard\\Test\\": "tests",
"League\\JsonGuard\\Bench\\": "tests/benchmarks"
}
},
"scripts": {
"test": "phpunit",
"test-server": "php -S localhost:1234 -t ./vendor/json-schema/JSON-Schema-Test-Suite/remotes/",
"cs": "phpcs --standard=psr2 src/",
"bench": "phpbench run ./tests/benchmarks --report=default"
}
}