-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
35 lines (35 loc) · 939 Bytes
/
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
{
"name": "youwe/file-manager-bundle",
"type": "symfony-bundle",
"description": "A secure file manager bundle.",
"keywords": [ "file manager", "media", "secure"],
"license": "MIT",
"authors": [
{
"name": "Jim Ouwerkerk",
"email": "[email protected]"
},
{
"name": "Youwe"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "~2.0",
"symfony/finder": "*",
"symfony/filesystem": "*",
"friendsofsymfony/jsrouting-bundle": "@stable"
},
"suggest": {
"liip/imagine-bundle": "Liip Imagine Bundle provides easy image manipulation support for Symfony2."
},
"autoload": {
"psr-0": { "Youwe\\FileManagerBundle": "" }
},
"target-dir": "Youwe/FileManagerBundle",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}