-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
55 lines (55 loc) · 1.72 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "symfony-cmf/media-bundle",
"type": "symfony-bundle",
"description": "Symfony CMF Media Bundle",
"keywords": ["Symfony CMF", "image", "media"],
"homepage": "http://cmf.symfony.com",
"license": "MIT",
"authors": [
{
"name": "Symfony CMF Community",
"homepage": "https://github.com/symfony-cmf/MediaBundle/contributors"
}
],
"require": {
"php": "^5.3.9|^7.0",
"symfony/framework-bundle": "~2.3|~3.0"
},
"require-dev": {
"twig/twig": "^1.12|^2.0",
"symfony-cmf/testing": "^2.0",
"doctrine/phpcr-odm": "^1.4|^2.0",
"doctrine/annotations": "^1.1.2",
"jms/serializer-bundle": "^0.12|^1.0",
"liip/imagine-bundle": "^1.0.4",
"mikey179/vfsStream": "^1.2"
},
"suggest": {
"symfony-cmf/core-bundle": "Simplifies configuration with other CMF bundles",
"knplabs/gaufrette": "When using the Gaufrette adapter",
"phpcr/phpcr-utils": "When using the Gaufrette adapter",
"jms/serializer-bundle": "When using the serializer handler",
"liip/imagine-bundle": "To integrate with the Imagine library for processing images",
"helios-ag/fm-elfinder-bundle": "When using the elFinder media browser"
},
"conflict": {
"helios-ag/fm-elfinder-bundle": "<8.0"
},
"autoload": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\MediaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\MediaBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}