-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.97 KB
/
Copy pathcomposer.json
File metadata and controls
70 lines (70 loc) · 1.97 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
64
65
66
67
68
69
70
{
"name": "kennethormandy/craft-api2pdf",
"description": "Generate PDFs using api2pdf.com",
"type": "craft-plugin",
"license": "MIT",
"version": "5.0.0-beta.1",
"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": "^5.0.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": "^5.0.11",
"codeception/module-asserts": "^3.0.0",
"codeception/module-yii2": "^1.1.9",
"vlucas/phpdotenv": "5.1"
},
"scripts": {
"test": "vendor/bin/codecept run --debug"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
}
}
}