Commit eb1c489c authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

php84

parent 4c0bdba7
Loading
Loading
Loading
Loading
Loading

Module.php

deleted100644 → 0
+0 −18
Original line number Diff line number Diff line
<?php

namespace UnicaenTbl;

use Laminas\ModuleManager\Feature\ConfigProviderInterface;

/**
 *
 *
 * @author Laurent LECLUSE <laurent.lecluse at unicaen.fr>
 */
class Module implements ConfigProviderInterface
{
    public function getConfig()
    {
        return include __DIR__ . '/config/module.config.php';
    }
}
+2 −5
Original line number Diff line number Diff line
@@ -8,14 +8,11 @@
        }
    ],
    "require"     : {
        "unicaen/app": "^6.0"
        "unicaen/app": "*"
    },
    "autoload"    : {
        "psr-4"   : {
            "UnicaenTbl\\": "src/"
        },
        "classmap": [
            "./Module.php"
        ]
        }
    }
}
 No newline at end of file