-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
66 lines (66 loc) · 1.81 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
{
"name": "jane-php/json-schema",
"description": "Generate a serializable / deserializable object model given a json schema",
"license": "MIT",
"authors": [
{
"name": "Joel Wurtz",
"email": "[email protected]"
},
{
"name": "Baptiste Leduc",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Jane\\Component\\JsonSchema\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Jane\\Component\\JsonSchema\\Tests\\Client\\": "/Tests/"
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"doctrine/inflector": "^1.4 || ^2.0",
"jane-php/json-schema-runtime": "^7.5",
"nikic/php-parser": "^4.19 || ^5.1",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
"symfony/options-resolver": "^5.4 || ^6.4 || ^7.0",
"symfony/serializer": "^5.4 || ^6.4 || ^7.0",
"symfony/var-dumper": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0",
"symfony/validator": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"symfony/finder": "^5.4 || ^6.4 || ^7.0"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Allow to automatically fix cs on generated code for better visualisation"
},
"conflict": {
"symfony/framework-bundle": "5.1.0"
},
"extra": {
"branch-alias": {
"dev-next": "7-dev"
}
},
"bin": [
"bin/jane"
],
"config": {
"process-timeout": 1800,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}