Commit 9da3ee36 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Test PSR

parent 75d6112b
Loading
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
namespace UnicaenTbl;

use Laminas\ModuleManager\Feature\ConfigProviderInterface;
use Laminas\Mvc\MvcEvent;

/**
 *
@@ -12,13 +11,6 @@ use Laminas\Mvc\MvcEvent;
 */
class Module implements ConfigProviderInterface
{
    public function onBootstrap(MvcEvent $e)
    {

    }



    public function getConfig()
    {
        return include __DIR__ . '/config/module.config.php';
+2 −1
Original line number Diff line number Diff line
@@ -2,4 +2,5 @@
// Generated by ZF2's ./bin/classmap_generator.php
return array(
    'UnicaenTbl\Module' => __DIR__ . '/Module.php',
    'UnicaenTbl\Provider\Privilege\Privileges' => __DIR__ . '/src/Provider/Privilege/Privileges.php',
);
 No newline at end of file
+3 −7
Original line number Diff line number Diff line
@@ -10,13 +10,9 @@
    "require"     : {
        "unicaen/app": "dev-laminas_migration"
    },
    "require-dev" : {
        "phpunit/PHPUnit": "^5.6"
    },
    "autoload"    : {
        "psr-0"   : {
            "UnicaenTbl"    : "src/",
            "UnicaenTblTest": "tests/"
        "psr-4"   : {
            "UnicaenTbl\\": "src/"
        },
        "classmap": [
            "./Module.php"
Loading