for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YAWIK
* Auth Module Bootstrap
*
* @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de)
* @license MIT
*/
namespace Geo;
use Zend\ServiceManager\ServiceManagerAwareInterface;
use Zend\ServiceManager\ServiceManager;
use SplFileInfo;
use Zend\View\Resolver\ResolverInterface;
use Zend\View\Renderer\RendererInterface as Renderer;
use Zend\Mvc\MvcEvent;
use Zend\View\ViewEvent;
use Zend\View\Model\ViewModel;
use Zend\EventManager\EventManagerInterface;
//use Core\View\Helper\InsertFile;
use Core\View\Helper\InsertFile\FileEvent;
use Core\Entity\FileEntity;
use Core\ModuleManager\ModuleConfigLoader;
* Geocoder Module
* This module automatically adds a typeahead feature to formular fields type="location"
class Module
{
* Loads module specific configuration.
* @return array
public function getConfig()
return ModuleConfigLoader::load(__DIR__ . '/config');
}
* Loads module specific autoloader configuration.
public function getAutoloaderConfig()
return array(
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
),
);