-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (51 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
{
"name": "zquintana/lara-swag",
"description": "Generates documentation for your REST API from annotations",
"keywords": ["api", "documentation", "doc", "rest"],
"type": "laravel-package",
"license": "MIT",
"authors": [
{
"name": "Zachary Quintana",
"homepage": "https://github.com/zquintana/LaraSwag"
}
],
"require": {
"php": "~7.0|~7.1",
"symfony/property-info": "^3.1|^4.0",
"exsyst/swagger": "~0.2.3",
"zircote/swagger-php": "^2.0.9",
"indigophp/doctrine-annotation-autoload": "^0.1"
},
"require-dev": {
"illuminate/container": ">=5.5",
"illuminate/routing": ">=5.5",
"symfony/templating": "^2.8|^3.0|^4.0",
"symfony/twig-bundle": "^3.0|^4.0",
"symfony/asset": "^2.8|^3.0|^4.0",
"symfony/console": "^2.8|^3.0|^4.0",
"symfony/config": "^2.8|^3.0|^4.0",
"symfony/validator": "^2.8|^3.0|^4.0",
"symfony/property-access": "^2.8|^3.0|^4.0",
"symfony/form": "^3.0.8|^4.0",
"symfony/dom-crawler": "^2.8|^3.0|^4.0",
"symfony/browser-kit": "^2.8|^3.0|^4.0",
"symfony/cache": "^3.1|^4.0",
"symfony/phpunit-bridge": "^3.4",
"doctrine/annotations": "^1.2",
"phpdocumentor/reflection-docblock": "^3.1",
"api-platform/core": "^2.0.3",
"friendsofsymfony/rest-bundle": "^2.0",
"orchestra/testbench": "^3.4"
},
"suggest": {
"phpdocumentor/reflection-docblock": "For parsing php docs.",
"api-platform/core": "For using an API oriented framework."
},
"autoload": {
"psr-4": {
"ZQuintana\\LaraSwag\\Tests\\": "tests",
"ZQuintana\\LaraSwag\\": "src"
}
}
}