-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
60 lines (60 loc) · 1.96 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
{
"name": "ranky/media-bundle",
"description": "A complete and friendly media file manager for Symfony",
"keywords": [ "media", "image", "thumbnails", "file", "resize", "compress", "bundle", "symfony" ],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "chiqui3d",
"homepage": "https://github.com/ranky/media-bundle"
}
],
"autoload": {
"psr-4": {
"Ranky\\MediaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ranky\\MediaBundle\\Tests\\": "tests/src/"
}
},
"require": {
"ext-xml": "*",
"php": ">=8.1",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/translation": "^5.4 || ^6.0 || ^7.0",
"symfony/validator": "^5.4 || ^6.0 || ^7.0",
"symfony/mime": "^5.4 || ^6.0 || ^7.0",
"symfony/form": "^5.4 || ^6.0 || ^7.0",
"symfony/twig-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/webpack-encore-bundle": "^1.16 || ^2.0",
"symfony/monolog-bundle": "^3.8.0",
"symfony/uid": "^5.4 || ^6.0 || ^7.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.6",
"spatie/image-optimizer": "^1.1",
"intervention/image": "^2.4",
"ranky/shared-bundle": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
"symfony/dotenv": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
"psr/log": "^1.0 | ^2.0",
"dg/bypass-finals": "^1.4",
"mtdowling/jmespath.php": "^2.6",
"friends-of-behat/mink-extension": "^2.7",
"friends-of-behat/mink-browserkit-driver": "^1.6",
"friends-of-behat/symfony-extension": "^2.3",
"doctrine/doctrine-fixtures-bundle": "^3.4"
},
"suggest": {
"ext-imagick": "Recommended and required to use the Imagick driver",
"ext-gd": "required to use the GD driver",
"ext-exif": "required to read EXIF metadata from images and required to use the GD driver"
}
}