forked from Joomla-Ukraine/JUImage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 1.72 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
76
77
78
79
80
81
82
{
"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"
],
"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/"
},
"classmap": [
"src/classes/phpthumb"
]
},
"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.5"
}
},
"prefer-stable": true,
"suggest": {
"ext-gd": "PHP GD library",
"ext-imagick": "PHP ImageMagick"
},
"require": {
"php": ">=5.5.0",
"ext-curl": "*",
"ext-exif": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-zlib": "*",
"marc1706/fast-image-size": "1.*",
"rosell-dk/webp-convert": "^1.3"
}
}