-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.25 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.25 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
{
"name": "arcane-web-design/craft-better-stack-logger",
"description": "Send logs to BetterStack Log tailing service.",
"type": "craft-plugin",
"license": "MIT",
"version": "1.0.0",
"authors": [
{
"name": "Arcane Web Design",
"homepage": "https://www.arcane-web-design.com"
}
],
"support": {
"email": "hello@arcane-web-design.com"
},
"require": {
"php": ">=8.2",
"craftcms/cms": "^5.5.0",
"ext-curl": "*"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main"
},
"autoload": {
"psr-4": {
"arcanewebdesign\\craftbetterstacklogger\\": "src/"
}
},
"extra": {
"handle": "better-stack-logger",
"name": "Better Stack Logger",
"developer": "Nick Adams (Arcane Web Design)",
"documentationUrl": "https://github.com/Arcanely/craft-better-stack-logger",
"class": "arcanewebdesign\\craftbetterstacklogger\\BetterStackLogger"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}