forked from superbigco/craft-reports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.02 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
{
"name": "superbig/craft-reports",
"description": "Write reports with Twig.",
"type": "craft-plugin",
"version": "1.0.7",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"reports",
"reporting",
"report",
"commerce reporting"
],
"support": {
"docs": "https://github.com/superbigco/craft-reports/blob/master/README.md",
"issues": "https://github.com/superbigco/craft-reports/issues"
},
"license": "MIT",
"authors": [
{
"name": "Superbig",
"homepage": "https://superbig.co"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"league/csv": "^8.1|^9.0"
},
"autoload": {
"psr-4": {
"superbig\\reports\\": "src/"
}
},
"extra": {
"handle": "reports",
"changelogUrl": "https://raw.githubusercontent.com/superbigco/craft-reports/master/CHANGELOG.md",
"class": "superbig\\reports\\Reports"
}
}