This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
61 lines (61 loc) · 1.52 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
{
"name": "jane-php/open-api",
"type": "library",
"description": "Generate a PHP Client API (PSR7/PSR18 compatible) given a OpenApi 3.x specification",
"keywords": [
"jane",
"swagger",
"openapi"
],
"license": "MIT",
"authors": [
{
"name": "Joel Wurtz",
"email": "jwurtz@jolicode.com"
},
{
"name": "Baptiste Leduc",
"email": "baptiste.leduc@gmail.com"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"jane-php/json-schema": "^5.3",
"jane-php/json-schema-runtime": "^5.3",
"jane-php/open-api-common": "^5.3",
"jane-php/open-api-runtime": "^5.3",
"nikic/php-parser": "^4.0",
"symfony/serializer": "^3.2 || ^4.0 || ^5.0",
"symfony/yaml": "^3.1 || ^4.0 || ^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "2.15.3",
"phpunit/phpunit": "^8.0"
},
"suggest": {
"friendsofphp/php-cs-fixer": "To have a nice formatting of the generated files"
},
"config": {
"process-timeout": 1800,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "6-dev"
}
},
"autoload": {
"psr-4": {
"Jane\\OpenApi\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit"
}
}