-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
75 lines (75 loc) · 1.57 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "joomla-ua/juimage",
"description": "JUImage - library for render thumbs.",
"keywords": [
"thumbnails",
"image-processing",
"image",
"resize image",
"thumb",
"thumbs",
"YouTube",
"Vimeo",
"size",
"getimagesize",
"GD",
"ImageMagick",
"jpeg",
"jpg",
"png",
"gif",
"ico",
"tif",
"tiff",
"pdf",
"webp",
"avif"
],
"homepage": "https://joomla-ua.org",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Denys Nosov",
"email": "denys@joomla-ua.org",
"homepage": "https://joomla-ua.org",
"role": "Developer"
}
],
"support": {
"email": "denys@joomla-ua.org",
"issues": "https://github.com/Joomla-Ukraine/JUImage/issues",
"forum": "https://github.com/Joomla-Ukraine/JUImage/issues",
"source": "https://github.com/Joomla-Ukraine/JUImage",
"docs": "https://github.com/Joomla-Ukraine/JUImage/blob/master/README.md"
},
"autoload": {
"psr-4": {
"JUImage\\": "src/"
}
},
"minimum-stability": "stable",
"config": {
"optimize-autoloader": true,
"use-include-path": false,
"prepend-autoloader": true,
"prefer-dist": true,
"no-dev": true,
"sort-packages": true,
"archive-format": "zip",
"platform": {
"php": "5.6"
}
},
"prefer-stable": true,
"suggest": {
"ext-imagick": "PHP ImageMagick"
},
"require": {
"php": ">=5.6",
"intervention/image": "^2.7",
"marc1706/fast-image-size": "1.*",
"ext-json": "*",
"ext-gd": "PHP GD library"
}
}