-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
41 lines (41 loc) · 1.28 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
{
"name": "auto1-oss/service-api-handler-bundle",
"license": "MIT",
"type": "auto1-bundle",
"description": "Auto1 Service API Handler Bundle for creating micro-services with PHP",
"authors": [
{
"name": "Andrei Dantsiger",
"email": "andrei.dantsiger@auto1.com"
}
],
"require": {
"php": ">=7.1",
"auto1-oss/service-api-request": "^1.0",
"auto1-oss/service-api-components-bundle": "^1.0",
"symfony/serializer" : "~3.0|~4.0|~5.0|~6.0",
"symfony/monolog-bridge": "~3.0|~4.0|~5.0|~6.0",
"symfony/dependency-injection": "~3.0|~4.0|~5.0|~6.0",
"symfony/config": "~3.0|~4.0|~5.0|~6.0",
"symfony/http-kernel": "~3.0|~4.0|~5.0|~6.0",
"symfony/http-foundation": "~3.0|~4.0|~5.0|~6.0",
"symfony/property-info": "^3.4.2|~4.0|~5.0|~6.0",
"symfony/yaml": "~3.0|~4.0|~5.0|~6.0",
"monolog/monolog": "~1.22",
"symfony/routing": "~4.1|~5.0|~6.0"
},
"require-dev": {
"symfony/console": "~3.0|~4.0|~5.0|~6.0",
"phpunit/phpunit": "^7.5|^8.0",
"phpspec/prophecy": "^1.7.2"
},
"suggest": {
"nelmio/api-doc-bundle": "For Generating API documentations"
},
"autoload": {
"psr-4": { "Auto1\\ServiceAPIHandlerBundle\\": "" }
},
"autoload-dev": {
"psr-4": { "Tests\\Auto1\\ServiceAPIHandlerBundle\\": "Tests"}
}
}