Files
WebtreesFullDiagram/module.php
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

22 lines
408 B
PHP

<?php
/**
* Full Diagram module for webtrees.
*
* @license AGPL-3.0-or-later
*/
declare(strict_types=1);
namespace FullDiagram;
use Composer\Autoload\ClassLoader;
use Fisharebest\Webtrees\Registry;
// Register PSR-4 autoloader for our namespace
$loader = new ClassLoader();
$loader->addPsr4('FullDiagram\\', __DIR__ . '/src');
$loader->register();
return Registry::container()->get(Module::class);