-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
49 lines (49 loc) · 1.31 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
{
"name": "snowcap/im-bundle",
"type": "symfony-bundle",
"description": "Imagemagick wrapper for Symfony2",
"keywords": ["image", "thumbnail", "imagemagick", "symfony"],
"homepage": "https://github.com/snowcap/SnowcapImBundle",
"license": "MIT",
"authors": [
{
"name": "Pierre Vanliefland",
"email": "pierre@snowcap.be"
},
{
"name": "Edwin Hermans",
"email": "edwin@snowcap.be"
},
{
"name": "Jérôme Poskin",
"email": "jerome@snowcap.be"
},
{
"name": "Snowcap",
"homepage": "http://www.snowcap.be"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": ">=2.7"
},
"require-dev": {
"symfony/symfony": ">=2.7",
"mikey179/vfsStream": "v1.0.0",
"phpunit/phpunit": "^4.8",
"symfony/phpunit-bridge": "^2.7"
},
"suggest": {
"snowcap/core-bundle": "ImBundle provides a form type extension for the Snowcap CoreBundle ImageType"
},
"autoload": {
"psr-0": { "Snowcap\\ImBundle": "" }
},
"target-dir": "Snowcap/ImBundle",
"extra": {
"branch-alias": {
"dev-master": "2.7-dev"
}
}
}