Add plugin info retrieval

This commit is contained in:
Alex P 2022-02-17 18:18:33 +02:00
parent c1cd718ecc
commit 2236b3cfbe
7 changed files with 816 additions and 245 deletions

View file

@ -23,7 +23,10 @@ class PluginModule implements ModuleInterface {
* {@inheritDoc}
*/
public function setup(): ServiceProviderInterface {
return new ServiceProvider( array(), array() );
return new ServiceProvider(
require __DIR__ . '/services.php',
require __DIR__ . '/extensions.php'
);
}
/**