-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
51 lines (51 loc) · 1.35 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
{
"name": "presta/image-bundle",
"description": "PrestaImageBundle is a Symfony bundle providing tools to resize uploaded and remote images before sending them through a classic form.",
"keywords": ["symfony", "bundle", "form", "image", "upload", "remote"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Benoit Jouhaud",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-fileinfo": "*",
"ext-json": "*",
"symfony/form": "^5.4|^6.4|^7.0",
"vich/uploader-bundle": "^2.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"symfony/phpunit-bridge": "^7.0",
"symplify/easy-coding-standard": "^12.0"
},
"autoload": {
"psr-4": {
"Presta\\ImageBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Presta\\ImageBundle\\Tests\\": "tests/"
}
},
"config": {
"audit": {
"abandoned": "report"
},
"sort-packages": true
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-1.x": "1.x-dev",
"dev-2.x": "2.x-dev",
"dev-3.x": "3.x-dev",
"dev-master": "4.x-dev"
}
}
}