-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·39 lines (39 loc) · 1.13 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
{
"name": "amici/craft-super-pdf",
"description": "Create PDF files from html",
"version": "1.1.1",
"type": "craft-plugin",
"keywords": ["craft", "cms", "craftcms", "craft-plugin","pdf", "amici", "dompdf", "twig-to-pdf", "create-pdf"],
"license": "proprietary",
"authors": [
{
"name": "Amici Infotech",
"homepage": "https://amiciinfotech.com"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/mufi/craft-super-pdf/issues?state=open",
"source": "https://github.com/mufi/craft-super-pdf",
"docs": "https://github.com/mufi/craft-super-pdf"
},
"require": {
"craftcms/cms": "^3.9",
"dompdf/dompdf": "^2.0"
},
"autoload": {
"psr-4": {
"amici\\SuperPdf\\": "src/"
}
},
"extra": {
"handle": "super-pdf",
"name": "Super PDF",
"developer": "Amici Infotech",
"developerUrl": "https://amiciinfotech.com",
"documentationUrl": "https://docs.amiciinfotech.com/craft-cms/super-pdf",
"changelogUrl": "https://github.com/mufi/craft-super-pdf/master/CHANGELOG.md",
"downloadUrl": "https://github.com/mufi/craft-super-pdf/archive/master.zip",
"class": "amici\\SuperPdf\\SuperPdf"
}
}