-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.17 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
{
"name": "ucraft-com/thumbnail-generator",
"description": "This PHP package provides a comprehensive solution for generating thumbnails from various file types, including images, videos, PDF documents, and audio files.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Uc\\ThumbnailGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Uc\\ThumbnailGenerator\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Tigran Mesropyan",
"email": "tiko@ucraft.com"
}
],
"minimum-stability": "dev",
"require": {
"php": "^8.1",
"ext-imagick": "*",
"php-ffmpeg/php-ffmpeg": "^1.2",
"phpoffice/phpspreadsheet": "^2.2",
"phpoffice/phpword": "^1.2",
"dompdf/dompdf": "^3.0",
"ucraft-com/image-manipulator": "0.0.1"
},
"require-dev": {
"orchestra/testbench": "8.24.0",
"phpunit/phpunit": "^10.5"
},
"extra": {
"laravel": {
"providers": [
"Uc\\ThumbnailGenerator\\ThumbnailGeneratorServiceProvider"
]
}
}
}