This repository was archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.35 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.35 KB
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
{
"name": "kleijnweb/swagger-bundle-example",
"type": "project",
"authors": [
{
"name": "John Kleijn",
"email": "john@kleijnweb.nl",
"homepage": "http://www.kleijnweb.nl"
}
],
"license": "MIT",
"description": "Showcase for SwaggerBundle and related bundles",
"autoload": {
"psr-4": {"KleijnWeb\\Examples\\SwaggerBundle\\": "src/"}
},
"require": {
"php": "^7.0.0",
"psr/log": "^1.0",
"symfony/framework-bundle": ">=2.8.7",
"kleijnweb/swagger-bundle": "^v4.0.0-beta2",
"kleijnweb/jwt-bundle": "^1.0",
"kleijnweb/php-api-descriptions": "^1.0.0-alpha4",
"kleijnweb/php-api-hydrator": "^1.0.0-alpha2",
"kleijnweb/php-api-middleware": "^1.0.0-alpha1",
"kleijnweb/php-api-routing-bundle": "^1.0.0-alpha1",
"symfony/monolog-bundle": "~2.6",
"vlucas/phpdotenv": "~2.0",
"doctrine/doctrine-migrations-bundle": "^1.0",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-fixtures-bundle": "^2.3",
"doctrine/orm": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"symfony/console": ">=2.8.7",
"symfony/serializer": ">=2.8.7",
"symfony/monolog-bridge": ">=2.8.7",
"symfony/browser-kit": ">=2.8.7",
"mikey179/vfsStream": "^1.6",
"phpoption/phpoption": "^1.1.0",
"liip/functional-test-bundle": "^1.7"
},
"config": {
"bin-dir": "bin"
}
}