* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @link https://vufind.org/wiki/development */ namespace VuFindApi; /** * VuFind Api module. * * @category VuFind * @package Module * @author Ere Maijala * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @link https://vufind.org/wiki/development */ class Module { /** * Get module configuration * * @return array */ public function getConfig() { return include __DIR__ . '/config/module.config.php'; } /** * Get autoloader configuration * * @return array */ public function getAutoloaderConfig() { return [ 'Laminas\Loader\StandardAutoloader' => [ 'namespaces' => [ __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__, ], ], ]; } }