-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
58 lines (58 loc) · 2 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
{
"name": "ambroisemaupate/intervention-request",
"description":"A customizable Intervention Image wrapper to use image simple re-sampling features over urls and a configurable cache.",
"license":"MIT",
"type": "library",
"keywords": [
"image manipulation",
"url",
"resizing",
"php"
],
"authors": [
{
"name": "Ambroise Maupate",
"email": "[email protected]",
"homepage": "https://www.rezo-zero.com",
"role": "Lead developer"
}
],
"require": {
"php": ">=8.0",
"ext-gd": "*",
"ext-curl": "*",
"intervention/image": "^2.5.1",
"league/flysystem": "^3.0 ",
"league/flysystem-memory": "^3.0",
"monolog/monolog": "^1.22 || ^2.1.1 || ^3.3.1",
"symfony/console": "^4.4 || ^5.0.7 || ^6.4",
"symfony/event-dispatcher": "^4.4 || ^5.0.7 || ^6.4",
"symfony/filesystem": "^4.4 || ^5.0.7 || ^6.4",
"symfony/finder": "^4.4 || ^5.0.7 || ^6.4",
"symfony/http-foundation": "^4.4 || ^5.0.7 || ^6.4",
"symfony/mime": "^4.4 || ^5.1 || ^6.4",
"symfony/process": "^4.4 || ^5.0.7 || ^6.4"
},
"suggest" : {
"ext-imagick": "Allow TIFF images to be implicitly converted to jpeg.",
"kraken-io/kraken-php": "Allow Kraken.io listener to optimize images",
"tinify/tinify": "Allow Tinify API listener to optimize images"
},
"autoload": {
"psr-4": {
"AM\\InterventionRequest\\": "src/"
}
},
"bin": ["bin/intervention"],
"require-dev": {
"kraken-io/kraken-php": "^1.6",
"league/flysystem-async-aws-s3": "^3.0",
"league/flysystem-aws-s3-v3": "^3.0",
"phpstan/phpstan": "^1.8.4",
"squizlabs/php_codesniffer": "^3.5",
"symfony/debug": "^4.4 || ^5.0.7 || ^6.4",
"symfony/dotenv": "^4.4 || ^5.1 || ^6.4",
"symfony/var-dumper": "^4.4 || ^5.0.7 || ^6.4",
"tinify/tinify": "^1.5"
}
}