forked from janephp/janephp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 2.38 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "jane-php/jane-php",
"description": "All jane libraries into one repository",
"license": "MIT",
"authors": [
{
"name": "Joel Wurtz",
"email": "jwurtz@jolicode.com"
},
{
"name": "Baptiste Leduc",
"email": "baptiste.leduc@gmail.com"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"doctrine/inflector": "^1.3",
"league/uri": "^6.0",
"nikic/php-parser": "^4.0",
"php-http/client-common": "^2.0",
"php-http/message-factory": "^1.0.2",
"php-http/multipart-stream-builder": "^1.0",
"php-jsonpointer/php-jsonpointer": "^3.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"symfony/console": "^4.4 || ^5.0",
"symfony/filesystem": "^4.4 || ^5.0",
"symfony/options-resolver": "^4.4 || ^5.0",
"symfony/property-info": "^4.4 || ^5.0",
"symfony/serializer": "^4.4 || ^5.0",
"symfony/string": "^5.0",
"symfony/var-dumper": "^5.0",
"symfony/yaml": "^4.4 || ^5.0"
},
"replace": {
"jane-php/automapper": "self.version",
"jane-php/json-schema": "self.version",
"jane-php/json-schema-runtime": "self.version",
"jane-php/open-api-common": "self.version",
"jane-php/open-api": "self.version",
"jane-php/open-api-2": "self.version",
"jane-php/open-api-3": "self.version",
"jane-php/open-api-runtime": "self.version"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "2.15.3",
"phpbench/phpbench": "@dev",
"phpunit/phpunit": "^8.0",
"symfony/framework-bundle": "^4.4 || ^5.0"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Allow to automatically fix cs on generated code for better visualisation"
},
"extra": {
"branch-alias": {
"dev-master": "6-dev"
}
},
"autoload": {
"psr-4": {
"Jane\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"src/AutoMapper/Bundle/Tests/Resources/app/AppKernel.php"
]
},
"bin": [
"src/JsonSchema/bin/jane",
"src/OpenApiCommon/bin/jane-openapi"
],
"config": {
"process-timeout": 1800,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}