Initial commit: webtrees Family Navigator Graph sidebar module

SVG-based sidebar widget displaying immediate family relationships
(parents, siblings, spouses, children) with compact card layout,
multi-spouse routing, wrapped rows, and ancestor/descendant indicators.
This commit is contained in:
2026-03-16 14:02:13 +01:00
commit 0369f781fa
17 changed files with 2737 additions and 0 deletions

31
composer.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "alex/webtrees-family-navigator-graph",
"description": "A sidebar module for webtrees showing an interactive SVG graph of the individual's immediate family.",
"license": "GPL-3.0-or-later",
"type": "webtrees-module",
"keywords": [
"webtrees",
"module",
"sidebar",
"family-tree",
"graph"
],
"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": {
"FamilyNavGraph\\": "src/"
}
}
}