forked from soyuka/JsonSchemaBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.32 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.32 KB
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
{
"name": "soyuka/json-schema-bundle",
"type": "symfony-bundle",
"description": "Symfony2 tools bundle for Justin Rainbow's json-schema library.",
"license": "MIT",
"authors": [
{
"name": "Aleksander Volochnev",
"email": "a.volochnev@gmail.com"
},
{
"name": "Antoine Bluchet",
"email": "soyuka@gmail.com"
}
],
"require": {
"justinrainbow/json-schema": "<2",
"soyuka/php-to-json-schema": "~1.0.1",
"symfony/framework-bundle": "^3.0",
"symfony/validator": "^3.0",
"symfony/property-access": "^3.0",
"symfony/finder": "^3.0",
"symfony/property-info": "^3.0",
"symfony/console": "^3.0",
"psr/cache": "^1.0"
},
"require-dev": {
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"symfony/cache": "^3.1@dev",
"phpunit/phpunit": "^5.0@dev"
},
"suggest": {
"doctrine/orm": "To convert Doctrine entities to json schema's based on metadata",
"symfony/cache": "Enable caching abilities"
},
"autoload": {
"psr-4": {
"Soyuka\\JsonSchemaBundle\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Soyuka\\JsonSchemaBundle\\Tests\\": "tests/"
}
}
}