This repository was archived by the owner on Nov 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (37 loc) · 1.46 KB
/
composer.json
File metadata and controls
42 lines (37 loc) · 1.46 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
{
"name": "wakeapp/api-platform-bundle",
"description": "Extends Symfony HttpFoundation and provides encapsulated area for work with REST API",
"type": "symfony-bundle",
"keywords": ["symfony-bundle", "api-platform", "rest", "api", "http-foundation"],
"license": "MIT",
"require": {
"php": "~7.1||~8.0",
"ext-json": "*",
"wakeapp/swagger-resolver-bundle": "^0.4.10",
"psr/log": "^1.0",
"symfony/config": "~3.4||~4.0||~5.0",
"symfony/dependency-injection": "~3.4||~4.0||~5.0",
"symfony/http-foundation": "~3.4||~4.0||~5.0",
"symfony/http-kernel": "~3.4||~4.0||~5.0",
"symfony/translation-contracts": "^1.1||^2.2",
"wakeapp/dto-resolver": "^1.1"
},
"repositories" : [
{
"type": "vcs",
"url": "git@github.com:wakeapp/swagger-resolver-bundle.git"
}
],
"conflict": {
"nelmio/api-doc-bundle": "<3.0"
},
"suggest": {
"symfony/monolog-bundle": "Provides possibility for log information into separate channel",
"symfony/translation": "Provides possibility for translate response codes"
},
"autoload": {
"psr-4": {
"Wakeapp\\Bundle\\ApiPlatformBundle\\": ""
}
}
}