-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.01 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "bilyiv/request-data-bundle",
"type": "symfony-bundle",
"description": "Represents request data in a structured and useful way.",
"keywords": ["request", "data", "api", "rest", "json"],
"license": "MIT",
"authors": [
{
"name": "Vladyslav Bilyi",
"email": "beliyvladislav@gmail.com"
}
],
"prefer-stable": true,
"require": {
"php": "^7.2",
"symfony/config": "~3.4|~4.0",
"symfony/dependency-injection": "~3.4|~4.0",
"symfony/http-kernel": "~3.4|~4.0",
"symfony/serializer": "~3.4|~4.0",
"symfony/event-dispatcher": "~3.4|~4.0",
"symfony/property-access": "~3.4|~4.0"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-4": {
"Bilyiv\\RequestDataBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}