Files
WebtreesFullDiagram/composer.json
Alexander Bocken ad398d2964 Add README, fix license to AGPLv3, untrack sync.sh
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.
2026-03-15 09:56:11 +01:00

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/"
}
}
}