forked from cebe/yii2-openapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.36 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
{
"name": "php-openapi/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.4 || ^8.0",
"cebe/php-openapi": "^1.5.0",
"yiisoft/yii2": "~2.0.48",
"yiisoft/yii2-gii": "~2.0.0 | ~2.1.0 | ~2.2.0| ~2.3.0",
"laminas/laminas-code": ">=3.4 <=4.13",
"php-openapi/yii2-fractal": "^1.0.0",
"fakerphp/faker": "^1.9",
"sam-it/yii2-mariadb": "^2.0"
},
"require-dev": {
"cebe/indent": "*",
"friendsofphp/php-cs-fixer": "~2.16",
"phpunit/phpunit": "^8.0",
"symfony/polyfill-php80": "^1.16",
"yiisoft/yii2-gii": ">=2.1.0"
},
"autoload": {
"psr-4": {
"cebe\\yii2openapi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}