-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "miranj/craft-sheets-to-tables",
"description": "Adds a Twig function to convert Spreadsheets into HTML tables.",
"version": "1.2.0",
"type": "craft-plugin",
"keywords": [
"craft",
"craftcms",
"spreadsheet",
"csv",
"excel",
"table"
],
"license": "MIT",
"authors": [
{
"name": "Miranj",
"homepage": "https://miranj.in/"
}
],
"support": {
"docs": "https://github.com/miranj/craft-sheets-to-tables/blob/master/README.md",
"issues": "https://github.com/miranj/craft-sheets-to-tables/issues"
},
"require": {
"craftcms/cms": "^3.0 || ^4.0 || ^5.0",
"php": "^7.2.5 || ^8.0",
"phpoffice/phpspreadsheet": "^1.5 || ^2.0"
},
"require-dev": {
"craftcms/rector": "dev-main",
"craftcms/phpstan": "dev-main"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"autoload": {
"psr-4": {
"miranj\\sheetstotables\\": "src/"
}
},
"extra": {
"name": "Sheets to Tables",
"handle": "sheets-to-tables",
"changelogUrl": "https://raw.githubusercontent.com/miranj/craft-sheets-to-tables/master/CHANGELOG.md",
"class": "miranj\\sheetstotables\\Plugin"
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G"
}
}