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.
22 lines
408 B
PHP
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);
|