forked from jmoont/pdfthumb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.06 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
{
"name": "jmoont/pdfthumb",
"description": "PDF thumbnail generation for Craft CMS 3 ",
"type": "craft-plugin",
"version": "1.0.7",
"minimum-stability": "dev",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"pdfthumb"
],
"support": {
"docs": "https://github.com/jmoont/pdfthumb/blob/master/README.md",
"issues": "https://github.com/jmoont/pdfthumb/issues"
},
"license": "MIT",
"authors": [
{
"name": "Josh Moont",
"homepage": "https://www.twitter.com/moonty"
}
],
"require": {
"craftcms/cms": "^4.0.0|^5.0"
},
"autoload": {
"psr-4": {
"jmoont\\pdfthumb\\": "src/"
}
},
"extra": {
"name": "PDFThumb",
"handle": "pdfthumb",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/jmoont/pdfthumb/master/CHANGELOG.md",
"components": {
"pDFThumbService": "jmoont\\pdfthumb\\services\\PDFThumbService"
},
"class": "jmoont\\pdfthumb\\PDFThumb"
}
}