This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
62 lines (62 loc) · 1.75 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
{
"name": "jane/open-api",
"description": "Generate a PHP Client API (PSR7 compatible) given a OpenApi (Swagger) specification",
"type": "library",
"keywords": ["jane", "swagger", "openapi"],
"license": "MIT",
"authors": [
{
"name": "Joel Wurtz",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Joli\\Jane\\OpenApi\\Model\\": "generated/Model/",
"Joli\\Jane\\OpenApi\\Normalizer\\": "generated/Normalizer/",
"Joli\\Jane\\OpenApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joli\\Jane\\OpenApi\\Tests\\": "tests/"
}
},
"bin": [
"bin/jane-openapi"
],
"require": {
"php": ">=5.6",
"jane/jane": "^3.1.1",
"jane/runtime": "^2.1",
"jane/openapi-runtime": "^2.0",
"nikic/php-parser": "^3.0",
"symfony/console": "^3.1",
"doctrine/inflector": "^1.0",
"symfony/yaml": "^3.1",
"fitbug/symfony-yaml-serializer-encoder-decoder": "^0.1.1"
},
"require-dev": {
"phpunit/phpunit": "^4.7",
"friendsofphp/php-cs-fixer": "^2.0",
"sllh/php-cs-fixer-styleci-bridge": "^2.1",
"php-jsonpointer/php-jsonpointer": "^3.0.2"
},
"suggest": {
"friendsofphp/php-cs-fixer": "To have a nice formatting of the generated files"
},
"config": {
"process-timeout": 1800
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"extra": {
"branch-alias": {
"dev-master": "3-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}