-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (38 loc) · 1.45 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
42
{
"name": "tps/dnd-file-upload-bundle",
"type": "symfony-bundle",
"version": "0.1.0",
"description": "The bundle offers a twig filter for creating drag-and-drop file-uploads in your symfony2 app",
"keywords": ["upload", "dnd", "drag", "drop"],
"homepage": "https://github.com/leberknecht/DndFileUploadBundle",
"license": "Beer-License",
"minimum-stability": "dev",
"authors": [
{
"name": "Delf Tonder",
"homepage": "https://github.com/leberknecht/DndFileUploadBundle"
}
],
"require": {
"php": ">=5.3.2",
"symfony/finder": ">=2.0.16,~2.0",
"symfony/filesystem": ">=2.0.16,~2.0",
"symfony/framework-bundle": ">=2.0.16,~2.0",
"symfony/twig-bundle": "*",
"twig/twig": ">=1.0,<2.0-dev",
"sensio/framework-extra-bundle": "*",
"psr/log": "1.0.0",
"doctrine/doctrine-bundle": "1.3.*@dev",
"doctrine/orm": "2.5.*@dev"
},
"require-dev": {
"symfony/yaml": ">=2.0.16,~2.0",
"phpunit/phpunit": "4.5.*@dev",
"satooshi/php-coveralls": "0.7.*@dev",
"symfony/browser-kit": "*"
},
"autoload": {
"psr-0": { "tps\\DndFileUploadBundle": "" }
},
"target-dir": "tps/DndFileUploadBundle"
}