-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 2.03 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 2.03 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
66
{
"name": "mysitesguru/health-checker-for-joomla",
"description": "Health Checker component and plugins for Joomla",
"type": "project",
"license": "GPL-3.0-or-later",
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.33",
"phpunit/phpunit": "^10.5",
"rector/rector": "^2.3.1",
"symplify/easy-coding-standard": "^13.0.4"
},
"autoload": {
"psr-4": {
"MySitesGuru\\HealthChecker\\Component\\Administrator\\": "healthchecker/component/src/",
"MySitesGuru\\HealthChecker\\Plugin\\Core\\": "healthchecker/plugins/core/src/",
"MySitesGuru\\HealthChecker\\Plugin\\Example\\": "healthchecker/plugins/example/src/",
"MySitesGuru\\HealthChecker\\Plugin\\MySitesGuru\\": "healthchecker/plugins/mysitesguru/src/",
"MySitesGuru\\HealthChecker\\Plugin\\AkeebaBackup\\": "healthchecker/plugins/akeebabackup/src/",
"MySitesGuru\\HealthChecker\\Plugin\\AkeebaAdminTools\\": "healthchecker/plugins/akeebaadmintools/src/",
"MySitesGuru\\HealthChecker\\Module\\Administrator\\": "healthchecker/module/src/"
}
},
"autoload-dev": {
"psr-4": {
"HealthChecker\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true,
"platform": {
"php": "8.1"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage/",
"ecs": "ecs check --ansi --clear-cache",
"ecs:fix": "ecs check --fix --ansi --clear-cache",
"rector": "rector process --dry-run --ansi --clear-cache",
"rector:fix": "rector process --ansi --clear-cache",
"phpstan": "phpstan analyse --ansi --memory-limit=512M",
"check": [
"@ecs",
"@rector",
"@ecs",
"@phpstan",
"@test"
],
"cs": "@check",
"cs:check": "@check",
"cs:fix": [
"@ecs:fix",
"@rector:fix",
"@ecs:fix",
"@phpstan"
]
}
}