forked from stefk/JVal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.55 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
{
"name": "claroline/jval",
"description": "JSON Schema validator",
"keywords": ["JSON", "JSON Schema", "validation"],
"homepage": "https://github.com/stefk/JVal",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Stéphane Klein",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.1",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"json-schema/json-schema": "dev-master",
"json-schema/test-suite": "dev-master",
"fabpot/php-cs-fixer": "~1.10"
},
"repositories": [
{
"type": "package",
"package": {
"name": "json-schema/json-schema",
"version": "dev-master",
"source": {
"url": "https://github.com/json-schema/json-schema",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "json-schema/test-suite",
"version": "dev-master",
"source": {
"url": "https://github.com/json-schema-org/JSON-Schema-Test-Suite",
"type": "git",
"reference": "master"
}
}
}
],
"autoload": {
"psr-4": { "JVal\\": "src/" }
},
"bin": ["bin/jval"],
"minimum-stability": "dev",
"prefer-stable": true
}