-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (53 loc) · 1.6 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
{
"name": "stfalcon-studio/swagger-bundle",
"description": "Generate Swagger UI documentation from local files",
"keywords": ["bundle", "symfony", "swagger", "openapi"],
"homepage": "https://github.com/stfalcon-studio/swagger-bundle",
"type": "symfony-bundle",
"license": "MIT",
"support": {
"issues": "https://github.com/stfalcon-studio/swagger-bundle/issues"
},
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"symfony/console": "^7.0",
"symfony/flex": "^v2.4",
"symfony/framework-bundle": "^7.0",
"symfony/twig-bundle": "^7.0",
"symfony/yaml": "^7.0",
"symfony/asset": "^7.0",
"symfony/finder": "^7.0",
"symfony/polyfill-ctype": "^1.28",
"twig/twig": "^3.8"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.13",
"phpstan/phpstan": "^1.10.55",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"thecodingmachine/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.5",
"symfony/dotenv": "^7.0",
"symfony/filesystem": "^7.0",
"symfony/phpunit-bridge": "^7.0"
},
"autoload": {
"psr-4": {
"StfalconStudio\\SwaggerBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"StfalconStudio\\SwaggerBundle\\Tests\\": "Tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
}
}