forked from liip/LiipImagineBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 2.18 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
67
68
69
70
71
72
73
{
"name": "anezi/imagine-bundle",
"description": "This Bundle assists in imagine manipulation using the imagine library",
"type": "symfony-bundle",
"license": "MIT",
"homepage": "http://anezi.net",
"keywords": [
"image",
"imagine"
],
"authors": [
{
"name": "Hassan Amouhzi and other contributors",
"homepage": "https://github.com/anezi/imagine-bundle/contributors"
}
],
"autoload": {
"psr-4": {
"Anezi\\ImagineBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Anezi\\ImagineBundle\\Tests\\": "tests/"
}
},
"require": {
"imagine/Imagine": "~0.5,<0.7",
"php": "^5.3.9|^7.0",
"sensio/framework-extra-bundle": "~2.3|~3.0",
"symfony/filesystem": "~2.3|~3.0",
"symfony/finder": "~2.3|~3.0",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/options-resolver": "~2.3|~3.0"
},
"require-dev": {
"amazonwebservices/aws-sdk-for-php": "~1.0",
"aws/aws-sdk-php": "~2.4",
"doctrine/cache": "~1.1",
"doctrine/orm": "~2.3",
"ext-gd": "*",
"phpunit/phpunit": "*",
"psr/log": "~1.0",
"symfony/browser-kit": "~2.3|~3.0",
"symfony/console": "~2.3|~3.0",
"symfony/dependency-injection": "~2.3|~3.0",
"symfony/form": "~2.3|~3.0",
"symfony/phpunit-bridge": "~2.3|~3.0",
"symfony/yaml": "~2.3|~3.0",
"twig/twig": "~1.12"
},
"archive": {
"exclude": [
"/tests"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"minimum-stability": "dev",
"suggest": {
"amazonwebservices/aws-sdk-for-php": "Add it if you'd like to use aws v1 resolver",
"aws/aws-sdk-php": "Add it if you'd like to use aws v2 or v3 resolver",
"league/flysystem": "If you'd want to use Flysystem binary loader",
"monolog/monolog": "If you'd want to write logs",
"twig/twig": "If you'd want to use some handy twig filters, version 1.12 or greater required"
}
}