forked from cebe/yii2-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.25 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": "cebe/yii2-openapi",
"description": "Generate full REST API application from OpenAPI 3 specification.",
"keywords": ["yii2", "rest", "openapi"],
"homepage": "https://github.com/cebe/yii2-openapi#readme",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Carsten Brandt",
"email": "[email protected]",
"homepage": "https://cebe.cc/",
"role": "Creator"
}
],
"support": {
"issues": "https://github.com/cebe/yii2-openapi/issues",
"source": "https://github.com/cebe/yii2-openapi"
},
"require": {
"php": ">=7.1.0",
"cebe/php-openapi": "^1.5.0",
"yiisoft/yii2": "~2.0.15",
"yiisoft/yii2-gii": "~2.0.0 | ~2.1.0 | ~2.2.0| ~2.3.0",
"laminas/laminas-code": "^3.4",
"insolita/yii2-fractal": "^1.0.0",
"fakerphp/faker": "^1.9"
},
"require-dev": {
"cebe/indent": "*",
"friendsofphp/php-cs-fixer": "~2.16",
"phpunit/phpunit": "^6.5|^8.0|^9.0",
"yiisoft/yii2-gii": ">=2.1.0"
},
"autoload": {
"psr-4": {
"cebe\\yii2openapi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.1.3"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}