framework/extensions/suspend/bootstrap.php

11 lines
386 B
PHP
Raw Normal View History

2015-08-05 14:38:53 +08:00
<?php
// Require the extension's composer autoload file. This will enable all of our
// classes in the src directory to be autoloaded.
require __DIR__.'/vendor/autoload.php';
// Return the name of our Extension class. Flarum will register it as a service
// provider, allowing it to register bindings and execute code when the
// application boots.
return 'Flarum\Suspend\Extension';