Skip to content
Snippets Groups Projects
Module.php 2.31 KiB
Newer Older
David Maus's avatar
David Maus committed
<?php

/**
 * ZF2 module definition for the VF2 search service.
 *
 * PHP version 7
David Maus's avatar
David Maus committed
 *
 * Copyright (C) Villanova University 2010.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2,
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
David Maus's avatar
David Maus committed
 *
Demian Katz's avatar
Demian Katz committed
 * @category VuFind
David Maus's avatar
David Maus committed
 * @package  Search
 * @author   David Maus <maus@hab.de>
 * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
Demian Katz's avatar
Demian Katz committed
 * @link     https://vufind.org
David Maus's avatar
David Maus committed
 */
namespace VuFindSearch;

/**
 * ZF2 module definition for the VF2 search service.
 *
 * PHP version 7
David Maus's avatar
David Maus committed
 *
 * Copyright (C) Villanova University 2010.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2,
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
David Maus's avatar
David Maus committed
 *
Demian Katz's avatar
Demian Katz committed
 * @category VuFind
David Maus's avatar
David Maus committed
 * @package  Search
 * @author   David Maus <maus@hab.de>
 * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
Demian Katz's avatar
Demian Katz committed
 * @link     https://vufind.org
David Maus's avatar
David Maus committed
 */
class Module
{
    /**
     * Return autoloader configuration.
     *
     * @return array
     */
    public function getAutoloaderConfig()
David Maus's avatar
David Maus committed
    {
        return [
            'Zend\Loader\StandardAutoloader' => [
                'namespaces' => [
David Maus's avatar
David Maus committed
                    __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
David Maus's avatar
David Maus committed
    }