forked from magicsunday/webtrees-pedigree-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.06 KB
/
composer.json
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
{
"name": "magicsunday/webtrees-pedigree-chart",
"description": "This modules provides an SVG pedigree chart for the [webtrees](https://www.webtrees.net) genealogy application.",
"license": "GPL-3.0-or-later",
"type": "webtrees-module",
"keywords": [
"webtrees",
"module",
"pedigree",
"chart"
],
"authors": [
{
"name": "Rico Sonntag",
"email": "[email protected]",
"homepage": "https://ricosonntag.de",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"MagicSunday\\Webtrees\\": "src/"
}
},
"require": {
"ext-json": "*",
"ext-dom": "*",
"fisharebest/webtrees": "~2.1.0 || dev-main",
"magicsunday/webtrees-module-installer-plugin": "^1.3"
},
"require-dev": {
"phpstan/phpstan": "^1.0",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"allow-plugins": {
"magicsunday/webtrees-module-installer-plugin": true
}
}
}