Files
archived-DoctrineModule/Module.php
Dennis Riehle 7368447937 fixed broken require_once in Module.php
This issue comes from the switch of PSR-0 to PSR-4, where this file has not been updated accordingly.
2021-11-04 17:37:23 +01:00

8 lines
255 B
PHP

<?php
/**
* This file is placed here for compatibility with Laminas's ModuleManager.
* It allows usage of this module even without composer.
* The original Module.php is in 'src/' in order to respect PSR-4
*/
require_once __DIR__ . '/src/Module.php';