for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Evgeny Shpilevsky <[email protected]>
*/
namespace EnliteMonolog;
use Zend\ModuleManager\Feature\AutoloaderProviderInterface;
use Zend\ModuleManager\Feature\ConfigProviderInterface;
class Module implements
AutoloaderProviderInterface,
ConfigProviderInterface
{
* {@inheritdoc}
public function getAutoloaderConfig()
return array(
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/../../src/' . __NAMESPACE__,
),
)
);
}
public function getConfig()
return include __DIR__ . "/../../config/module.config.php";