forked from liip/LiipImagineBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (60 loc) · 1.99 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.9|^7.0",
"imagine/Imagine": "~0.5,<0.7",
"symfony/finder": "~2.3|~3.0",
"symfony/filesystem": "~2.3|~3.0",
"symfony/options-resolver": "~2.3|~3.0",
"symfony/framework-bundle": "~2.3|~3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.3",
"symfony/browser-kit": "~2.3|~3.0",
"symfony/yaml": "~2.3|~3.0",
"symfony/form": "~2.3|~3.0",
"symfony/console": "~2.3|~3.0",
"symfony/phpunit-bridge": "~2.3|~3.0",
"symfony/dependency-injection": "~2.3|~3.0",
"doctrine/orm": "~2.3",
"doctrine/cache": "~1.1",
"twig/twig": "~1.12",
"aws/aws-sdk-php": "~2.4",
"amazonwebservices/aws-sdk-for-php": "~1.0",
"psr/log": "~1.0",
"ext-gd": "*"
},
"suggest": {
"twig/twig": "If you'd want to use some handy twig filters, version 1.12 or greater required",
"aws/aws-sdk-php": "Add it if you'd like to use aws v2 or v3 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",
"league/flysystem": "If you'd want to use Flysystem binary loader"
},
"autoload": {
"psr-4": { "Liip\\ImagineBundle\\": "" }
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}