-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
53 lines (53 loc) · 1.35 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
{
"name": "ctessier/nova-advanced-image-field",
"description": "An advanced image field for Nova with cropping and resizing.",
"keywords": [
"laravel",
"nova",
"image",
"crop",
"resize",
"image crop",
"image resize",
"advanced",
"advanced image",
"advanced image field"
],
"license": "MIT",
"require": {
"php": "^7.3|^8.0",
"intervention/image": "^2.7",
"laravel/nova": "^4.0"
},
"autoload": {
"psr-4": {
"Ctessier\\NovaAdvancedImageField\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Ctessier\\NovaAdvancedImageField\\FieldServiceProvider"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"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."
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ctessier"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}