-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 811 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 811 Bytes
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
{
"name": "solvire/php-json-schema-generator",
"type": "library",
"description": "A JSON Schema Generator written in PHP. The implementation is based on current internet drafts.",
"keywords": ["PHP", "JSON", "Schema", "generator", "validation", "parser"],
"homepage": "https://github.com/solvire/php-json-schema-generator",
"license": "MIT",
"authors": [
{
"name": "Steven Scott",
"email": "steve@openfoc.us"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"justinrainbow/json-schema" : "*",
"phpunit/phpunit": "3.7.*",
"justinrainbow/json-schema": "*"
},
"autoload": {
"psr-0": {
"JSONSchema\\Tests": "tests/",
"JSONSchema": "src/"
}
}
}