-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 788 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 788 Bytes
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
{
"name": "intervention/image-symfony",
"type": "symfony-bundle",
"description": "Symfony Integration of Intervention Image",
"homepage": "https://image.intervention.io",
"keywords": [
"symfony",
"image",
"gd",
"imagick",
"watermark",
"thumbnail",
"resize"
],
"license": "MIT",
"authors": [
{
"name": "Oliver Vogel",
"email": "oliver@intervention.io",
"homepage": "https://intervention.io/"
}
],
"require": {
"php": "^8.3",
"intervention/image": "^4.0",
"symfony/framework-bundle": "^6.4 || ^7 || ^8"
},
"autoload": {
"psr-4": {
"Intervention\\Image\\Symfony\\": "src/"
}
}
}