-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 909 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 909 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
{
"name": "pulpmedia/craft-element-export",
"description": "Export Entries to PDF, Excel or CSV",
"type": "craft-plugin",
"version": "1.0.9",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"entry export"
],
"license": "MIT",
"authors": [
{
"name": "Alexandre Kilian",
"homepage": "https://www.pulpmedia.at"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1",
"phpoffice/phpspreadsheet": "^1.8",
"mpdf/mpdf": "^8.0"
},
"autoload": {
"psr-4": {
"pulpmedia\\entryexport\\": "src/"
}
},
"extra": {
"name": "Entry Export",
"handle": "entry-export",
"hasCpSettings": false,
"hasCpSection": true,
"changelogUrl": "???",
"class": "pulpmedia\\entryexport\\EntryExport"
}
}