forked from liip/LiipImagineBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (60 loc) · 2.01 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "liip/imagine-bundle",
"type": "symfony-bundle",
"description": "This Bundle assists in imagine manipulation using the imagine library",
"keywords": ["imagine", "image"],
"homepage": "http://liip.ch",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Liip and other contributors",
"homepage": "https://github.com/liip/LiipImagineBundle/contributors"
}
],
"archive": {
"exclude": ["/Tests"]
},
"require": {
"php": ">=5.3.2",
"imagine/Imagine": "~0.5,<0.7",
"symfony/finder": "~2.3",
"symfony/filesystem": "~2.3",
"symfony/options-resolver": "~2.3",
"symfony/framework-bundle": "~2.3"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"symfony/browser-kit": "~2.3",
"doctrine/orm": "~2.3",
"doctrine/mongodb-odm": "1.0.*",
"symfony/yaml": "~2.3",
"symfony/form": "~2.3",
"twig/twig": "~1.0",
"doctrine/cache": "~1.1",
"aws/aws-sdk-php": "~2.4",
"amazonwebservices/aws-sdk-for-php": "~1.0",
"psr/log": "~1.0",
"ext-gd": "*",
"symfony/console": "~2.3"
},
"suggest": {
"twig/twig": "If you'd want to use some handy twig filters",
"aws/aws-sdk-php": "Add it if you'd like to use aws v2 resolver",
"amazonwebservices/aws-sdk-for-php": "Add it if you'd like to use aws v1 resolver",
"monolog/monolog": "If you'd want to write logs"
},
"autoload": {
"psr-0": { "Liip\\ImagineBundle": "" }
},
"target-dir": "Liip/ImagineBundle",
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-0.x": "0.x-dev"
}
}
}