-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
44 lines (44 loc) · 1.26 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
{
"name": "ayvazyan10/nova-imagic",
"description": "Imagic is a Laravel Nova field package that allows for image manipulation capabilities, such as cropping, resizing, quality adjustment, and WebP conversion. It utilizes the powerful Intervention Image class for image manipulation.",
"keywords": [
"laravel",
"nova",
"images",
"webp support",
"nova4",
"image",
"crop",
"resize",
"image crop",
"image resize"
],
"license": "MIT",
"require": {
"php": "^7.1|^8.0",
"intervention/image": "^2.7",
"laravel/nova": "^4.0"
},
"autoload": {
"psr-4": {
"Ayvazyan10\\Imagic\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Ayvazyan10\\Imagic\\FieldServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"suggest": {
"ext-imagick": "Install the Imagick extension to process image using ImageMagick.",
"ext-gd": "Install the GD extension to process images using GD.",
"ext-exif": "Install the exif extension to orientate images automatically."
},
"minimum-stability": "dev",
"prefer-stable": true
}