-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
32 lines (32 loc) · 898 Bytes
/
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
{
"name": "insight-media/statamic-pdf-thumbnailer",
"description": "A Statamic addon to automatically generate a thumbnail per uploaded PDF asset",
"license": "MIT",
"authors": [
{
"name": "Insight media",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"InsightMedia\\StatamicPdfThumbnailer\\": "src"
}
},
"extra": {
"statamic": {
"name": "Statamic Pdf Thumbnailer addon",
"description": "A Statamic addon to automatically generate a thumbnail per uploaded PDF asset"
},
"laravel": {
"providers": [
"InsightMedia\\StatamicPdfThumbnailer\\ServiceProvider"
]
}
},
"require": {
"php": "^8.0",
"spatie/pdf-to-image": "^1.2"
}
}