-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 2.8 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 2.8 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "magicsunday/webtrees-module-base",
"description": "Shared PHP base classes (date, name, image, place processors plus module helpers) for the magicsunday/webtrees-* chart modules.",
"license": "GPL-3.0-or-later",
"type": "library",
"keywords": [
"webtrees",
"module",
"library",
"genealogy",
"php",
"processor",
"shared"
],
"authors": [
{
"name": "Rico Sonntag",
"email": "mail@ricosonntag.de",
"homepage": "https://ricosonntag.de",
"role": "Developer"
}
],
"config": {
"bin-dir": ".build/bin",
"vendor-dir": ".build/vendor",
"discard-changes": true,
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "8.3 - 8.5",
"ext-dom": "*",
"fisharebest/webtrees": "~2.2.0 || dev-main"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"overtrue/phplint": "^9.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.0 || ^13.0",
"rector/rector": "^2.0"
},
"autoload": {
"psr-4": {
"MagicSunday\\Webtrees\\ModuleBase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MagicSunday\\Webtrees\\ModuleBase\\Test\\": "tests/"
}
},
"scripts": {
"ci:cgl": [
"php-cs-fixer fix --config .php-cs-fixer.dist.php --diff --verbose"
],
"ci:rector": [
"rector process --config rector.php"
],
"ci:test:php:cgl": [
"@ci:cgl --dry-run"
],
"ci:test:php:lint": [
"phplint --configuration .phplint.yml"
],
"ci:test:php:phpstan": [
"phpstan analyze --configuration phpstan.neon --memory-limit=-1"
],
"ci:test:php:phpstan:baseline": [
"phpstan analyze --configuration phpstan.neon --memory-limit=-1 --generate-baseline phpstan-baseline.neon --allow-empty-baseline"
],
"ci:test:php:rector": [
"@ci:rector --dry-run"
],
"ci:test:php:unit": [
"phpunit --configuration phpunit.xml --display-all-issues"
],
"ci:test:php:unit:coverage": [
"XDEBUG_MODE=coverage phpunit --configuration phpunit.xml --display-all-issues --coverage-html .build/coverage/"
],
"ci:test": [
"@ci:test:php:lint",
"@ci:test:php:phpstan",
"@ci:test:php:rector",
"@ci:test:php:unit",
"@ci:test:php:cgl"
]
}
}