-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1.05 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
{
"name": "hshn/serializer-extra-bundle",
"description": "This bundle provides some extra features for serialization",
"license": "MIT",
"authors": [
{
"name": "Shota Hoshino",
"email": "[email protected]"
}
],
"require": {
"symfony/framework-bundle": "~2.4",
"jms/serializer-bundle": "~0.13"
},
"require-dev": {
"symfony/security-bundle": "~2.4",
"symfony/browser-kit": "*",
"vich/uploader-bundle": "~0.10",
"liip/imagine-bundle": "~1.0",
"doctrine/common": "*"
},
"suggest": {
"vich/uploader-bundle": "to serialize uploaded files as an uri",
"liip/imagine-bundle": "to apply a filter to uploaded images before serializing a file as an uri"
},
"autoload": {
"psr-4": { "Hshn\\SerializerExtraBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Hshn\\SerializerExtraBundle\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}