-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
36 lines (36 loc) · 927 Bytes
/
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
{
"name": "gregwar/image-bundle",
"type": "symfony-bundle",
"description": "Image handling bundle",
"keywords": ["symfony", "image"],
"homepage": "https://github.com/Gregwar/ImageBundle",
"license": "MIT",
"authors": [
{
"name": "Grégoire Passault",
"email": "[email protected]",
"homepage": "http://www.gregwar.com/"
}
],
"require": {
"php": ">=5.3.3",
"ext-gd": "*",
"symfony/framework-bundle": "^2.3 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/asset": "*",
"twig/twig": "^2.0 || ^3.0",
"gregwar/image": "2.*"
},
"require-dev": {
"sllh/php-cs-fixer-styleci-bridge": "~1.1"
},
"autoload": {
"psr-4": {
"Gregwar\\ImageBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}