-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.51 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 1.51 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
64
65
{
"name": "nimbuscms/analytics",
"description": "First-party analytics + third-party agent injection for NimbusCMS. An official plugin.",
"type": "nimbuscms-plugin",
"keywords": [
"nimbuscms",
"nimbuscms-plugin",
"analytics",
"privacy",
"cms"
],
"license": "MIT",
"authors": [
{
"name": "DanMat"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"nimbuscms/nimbus": "dev-main"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.95",
"phpstan/phpstan": "^2.2",
"phpunit/phpunit": "^11.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/NimbusCMS/nimbus"
}
],
"autoload": {
"psr-4": {
"NimbusCMS\\Analytics\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NimbusCMS\\Analytics\\Tests\\": "tests/"
}
},
"extra": {
"nimbus": {
"id": "nimbuscms.analytics",
"plugin": "NimbusCMS\\Analytics\\AnalyticsPlugin"
}
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse --memory-limit=512M",
"check": [
"@analyse",
"@test"
],
"format": "php-cs-fixer fix",
"format:check": "php-cs-fixer fix --dry-run --diff"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}