-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·37 lines (37 loc) · 888 Bytes
/
composer.json
File metadata and controls
executable file
·37 lines (37 loc) · 888 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
{
"name": "towardstudio/csvtotable",
"description": "Create a table from a CSV",
"type": "craft-plugin",
"version": "3.0.0",
"license": "MIT",
"authors": [
{
"name": "Toward Studio",
"homepage": "https://toward.studio"
}
],
"require": {
"craftcms/cms": "^5",
"phpoffice/phpspreadsheet": "^1.23"
},
"autoload": {
"psr-4": {
"towardstudio\\csvtotable\\": "src/"
}
},
"extra": {
"name": "CSV 2 Table",
"handle": "csvtotable",
"developer": "Toward Studio",
"developerUrl": "https://toward.studio",
"documentationUrl": "https://github.com/towardstudio/csvtotable/blob/main/README.md",
"changelogUrl": "https://raw.githubusercontent.com/towardstudio/csvtotable/main/CHANGELOG.md",
"class": "towardstudio\\csvtotable\\CSVToTable"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}