Add project README with features, installation instructions, and ELK layout explanation. Fix license identifier from GPL-3.0 to AGPL-3.0 in composer.json and module.php to match the actual LICENSE file. Remove sync.sh from version control and add it to .gitignore.
32 lines
764 B
JSON
32 lines
764 B
JSON
{
|
|
"name": "alex/webtrees-full-diagram",
|
|
"description": "Full family diagram chart module for webtrees — shows ancestors, descendants, and siblings in a single interactive SVG diagram.",
|
|
"license": "AGPL-3.0-or-later",
|
|
"type": "webtrees-module",
|
|
"keywords": [
|
|
"webtrees",
|
|
"module",
|
|
"chart",
|
|
"family-tree",
|
|
"diagram"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Alex",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"require": {
|
|
"php": ">=8.2",
|
|
"ext-json": "*",
|
|
"fisharebest/webtrees": "~2.2.0 || dev-main"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"FullDiagram\\": "src/"
|
|
}
|
|
}
|
|
}
|