for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* ReportingCloud Zend Framework 3 Module
*
* Zend Framework 3 Module for ReportingCloud Web API. Authored and supported by Text Control GmbH.
* @link https://www.reporting.cloud to learn more about ReportingCloud
* @link https://git.io/Je5US for the canonical source repository
* @license https://github.com/TextControl/txtextcontrol-reportingcloud-php-zf-module/blob/master/LICENSE.md
* @copyright © 2020 Text Control GmbH
*/
namespace TxTextControl\ReportingCloud;
* Class Module
* @package TxTextControl\ReportingCloud
* @author Jonathan Maron (@JonathanMaron)
class Module
{
* Return the Zend Framework 3 module configuration array
* @return array
public function getConfig()
$filename = dirname(__FILE__, 2) . '/config/module.config.php';
return (array) include $filename;
}