-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 764 Bytes
/
Copy pathcomposer.json
File metadata and controls
33 lines (33 loc) · 764 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": "dreadkopp/image-optimizer",
"type": "library",
"require": {
"php": "^8",
"ext-gd": "*",
"illuminate/support": "^9",
"illuminate/filesystem": "^9",
"intervention/image": "^2",
"guzzlehttp/guzzle": "^7.5",
"intervention/imagecache": "^2.5"
},
"require-dev": {
"orchestra/testbench": "^7",
"phpunit/phpunit": "9.5.x-dev"
},
"autoload": {
"psr-4": {
"Dreadkopp\\ImageOptimizer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dreadkopp\\ImageOptimizer\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Arne Ziegert"
}
],
"minimum-stability": "stable"
}