forked from kennethormandy/craft-api2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.77 KB
/
Copy pathcomposer.json
File metadata and controls
63 lines (63 loc) · 1.77 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "kennethormandy/craft-api2pdf",
"description": "Generate PDFs using api2pdf.com",
"type": "craft-plugin",
"license": "MIT",
"version": "0.5.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"pdf",
"api2pdf"
],
"support": {
"docs": "https://github.com/kennethormandy/craft-api2pdf/blob/master/README.md",
"issues": "https://github.com/kennethormandy/craft-api2pdf/issues"
},
"authors": [
{
"name": "Kenneth Ormandy",
"homepage": "https://kennethormandy.com"
}
],
"require": {
"craftcms/cms": "^3.1.0",
"api2pdf/api2pdf.php": "1.1.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/api2pdf/api2pdf.php"
}
],
"autoload": {
"psr-4": {
"kennethormandy\\craftapi2pdf\\": "src/"
}
},
"extra": {
"name": "Api2Pdf",
"handle": "api2pdf",
"hasCpSettings": true,
"hasCpSection": false,
"developer": "Kenneth Ormandy Inc.",
"changelogUrl": "https://raw.githubusercontent.com/kennethormandy/craft-api2pdf/master/CHANGELOG.md",
"documentationUrl": "https://github.com/kennethormandy/craft-api2pdf/blob/master/README.md",
"components": {
"pdfService": "kennethormandy\\craftapi2pdf\\services\\PdfService"
},
"class": "kennethormandy\\craftapi2pdf\\CraftApi2Pdf"
},
"require-dev": {
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.1",
"vlucas/phpdotenv": "^4.1"
},
"scripts": {
"test": "vendor/bin/codecept run --debug"
}
}