-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 2.02 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 2.02 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
{
"name": "lindemannrock/craft-report-manager",
"description": "Report generation and analytics manager for Craft CMS with extensible data source support",
"type": "craft-plugin",
"version": "5.2.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"reports",
"analytics",
"export",
"formie"
],
"license": "proprietary",
"authors": [
{
"name": "Bilal Hary Lindemann",
"email": "bh@lindemannrock.com",
"homepage": "https://lindemannrock.com",
"role": "Developer"
}
],
"support": {
"email": "support@lindemannrock.com",
"issues": "https://github.com/LindemannRock/craft-report-manager/issues",
"source": "https://github.com/LindemannRock/craft-report-manager",
"docs": "https://github.com/LindemannRock/craft-report-manager/blob/main/README.md"
},
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0",
"lindemannrock/craft-plugin-base": "^5.0",
"lindemannrock/craft-logging-library": "^5.0"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main"
},
"suggest": {
"verbb/formie": "Required for Formie data source integration"
},
"autoload": {
"psr-4": {
"lindemannrock\\reportmanager\\": "src/"
}
},
"scripts": {
"phpstan": "phpstan --ansi --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --fix --ansi"
},
"extra": {
"name": "Report Manager",
"handle": "report-manager",
"developer": "LindemannRock",
"developerUrl": "https://lindemannrock.com",
"documentationUrl": "https://github.com/LindemannRock/craft-report-manager/blob/main/README.md",
"changelogUrl": "https://github.com/LindemannRock/craft-report-manager/blob/main/CHANGELOG.md",
"class": "lindemannrock\\reportmanager\\ReportManager"
}
}