-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 952 Bytes
/
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
{
"name": "despark/laravel-image-purify",
"description": "Laravel wrapper for https://github.com/despark/image-purify",
"keywords": [
"image optimizer", "compression", "image", "optimization", "jpegoptim", "optipng", "mozjpeg", "laravel"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ludmil Simeonov",
"email": "[email protected]"
}
],
"require": {
"despark/image-purify": "^0.1",
"illuminate/support": "^5.1|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Despark\\Laravel\\ImagePurify\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Despark\\Laravel\\ImagePurify\\ImagePurifyServiceProvider"
],
"aliases": {
"ImagePurify": "Despark\\Laravel\\ImagePurify\\Facades\\ImagePurify"
}
}
}
}