forked from janephp/janephp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.93 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
{
"name": "jane-php/jane-php",
"description": "All jane libs into one repository",
"license": "MIT",
"authors": [
{
"name": "Joel Wurtz",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Jane\\": "src/"
},
"exclude-from-classmap": [
"**/Tests/"
]
},
"bin": [
"src/JsonSchema/bin/jane",
"src/OpenApi/bin/jane-openapi"
],
"require": {
"php": ">=7.1",
"doctrine/inflector": "^1.0",
"league/uri": "^4.2",
"nikic/php-parser": "^3.0",
"php-http/httplug": "^1.0",
"php-http/message-factory": "^1.0.2",
"php-http/client-common": "^1.1",
"php-jsonpointer/php-jsonpointer": "^3.0",
"symfony/property-access": "^3.1|^4.0",
"symfony/console": "^3.1|^4.0",
"symfony/options-resolver": "^3.1|^4.0",
"symfony/serializer": "^3.2|^4.0",
"symfony/yaml": "^3.1|^4.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"php-http/artax-adapter": "^0.1",
"friendsofphp/php-cs-fixer": "^2.7.3"
},
"replace": {
"jane-php/json-schema": "self.version",
"jane-php/json-schema-runtime": "self.version",
"jane-php/open-api": "self.version",
"jane-php/open-api-runtime": "self.version"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Allow to automatically fix cs on generated code for better visualisation"
},
"conflict": {
"friendsofphp/php-cs-fixer": "<2.7.3|>=3.0"
},
"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": "4-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}