-
Notifications
You must be signed in to change notification settings - Fork 76
/
composer.json
34 lines (34 loc) · 1.08 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
{
"name": "comur/image-bundle",
"type": "symfony-bundle",
"version": "3.0.1",
"description": "A bundle providing fields for image upload with jquery upload and image cropping with jcrop for symfony2",
"keywords": ["Form Type", "image", "upload", "crop", "jcrop", "jquery upload"],
"homepage": "https://github.com/comur/ComurImageBundle",
"license": "MIT",
"authors": [
{
"name": "Can OMUR",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"ext-gd": "*",
"symfony/http-foundation": "~3.4 || ~4.2",
"symfony/form": "~3.4 || ~4.2",
"symfony/validator": "~3.4 || ~4.2",
"symfony/routing": "~3.4 || ~4.2",
"symfony/config": "~3.4 || ~4.2",
"symfony/twig-bridge": "~3.4 || ~4.2",
"twig/twig": "~2.5 || ~3.0",
"twig/extra-bundle": "@stable",
"friendsofsymfony/jsrouting-bundle": "@stable",
"jms/translation-bundle": "^1.2.2"
},
"autoload": {
"psr-4": {
"Comur\\ImageBundle\\": ""
}
}
}