-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 991 Bytes
/
composer.json
File metadata and controls
48 lines (48 loc) · 991 Bytes
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
{
"name": "topshelfcraft/printmaker",
"description": "Easily generate and merge PDF documents from your CMS content and Twig templates.",
"type": "craft-plugin",
"version": "4.0.0-beta.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"printmaker",
"pdf",
"document",
"merge"
],
"support": {
"docs": "https://github.com/TopShelfCraft/Printmaker",
"issues": "https://github.com/TopShelfCraft/Printmaker/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Top Shelf Craft (Michael Rog)",
"homepage": "https://topshelfcraft.com"
}
],
"require": {
"php": ">=8.0",
"craftcms/cms": "^4.5",
"dompdf/dompdf": "^3.0.0",
"iio/libmergepdf": "^4.0.4",
"topshelfcraft/base": "^4.0.1"
},
"autoload": {
"psr-4": {
"TopShelfCraft\\Printmaker\\": "src/"
}
},
"config":
{
"preferred-install": "dist"
},
"extra": {
"name": "Printmaker",
"handle": "printmaker",
"class": "TopShelfCraft\\Printmaker\\Printmaker"
}
}