forked from KnpLabs/KnpJsonSchemaBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 836 Bytes
/
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
{
"name": "knplabs/json-schema-bundle",
"description": "A bundle to generate json schema based on various metadata",
"license": "MIT",
"authors": [
{
"name": "Knplabs",
"homepage": "http://knplabs.com"
}
],
"require": {
"php": ">=5.3",
"symfony/framework-bundle": "~2.3",
"symfony/validator": "~2.3",
"symfony/form": "~2.3",
"symfony/finder": "~2.3",
"doctrine/common": "~2.3",
"justinrainbow/json-schema": ">=1.2.2"
},
"require-dev": {
"phpspec/phpspec": "~2.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": { "Knp\\JsonSchemaBundle": "src/" }
}
}