forked from dustin10/VichUploaderBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1.07 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": "vich/uploader-bundle",
"type": "symfony-bundle",
"description": "Ease file uploads attached to entities",
"keywords": ["file uploads", "upload"],
"homepage": "https://github.com/dustin10/VichUploaderBundle",
"license": "MIT",
"authors": [
{
"name": "Dustin Dobervich",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": ">=2.0,<2.2-dev"
},
"require-dev": {
"twig/twig": "@stable",
"doctrine/orm": "@stable",
"doctrine/common": "@stable",
"doctrine/dbal": "@stable",
"doctrine/mongodb": "dev-master",
"doctrine/mongodb-odm": "dev-master",
"knplabs/knp-gaufrette-bundle": "dev-master"
},
"suggest": {
"symfony/doctrine-bundle": "*",
"symfony/mongodb-odm-bundle": "*",
"knplabs/knp-gaufrette-bundle": "*"
},
"autoload": {
"psr-0": { "Vich\\UploaderBundle": "" }
},
"target-dir": "Vich/UploaderBundle"
}