Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
lib
unicaen
ksup
Commits
b43ab4c8
Commit
b43ab4c8
authored
Nov 14, 2016
by
Laurent Lécluse
Browse files
Mise en place de la structure de base du module
parent
41388d5b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Module.php
0 → 100644
View file @
b43ab4c8
<?php
namespace
UnicaenKsup
;
use
Zend\ModuleManager\Feature\ConfigProviderInterface
;
use
Zend\Mvc\MvcEvent
;
/**
*
*
* @author Laurent LECLUSE <laurent.lecluse at unicaen.fr>
*/
class
Module
implements
ConfigProviderInterface
{
public
function
onBootstrap
(
MvcEvent
$e
)
{
}
public
function
getConfig
()
{
return
include
__DIR__
.
'/config/module.config.php'
;
}
}
\ No newline at end of file
composer.json
0 → 100644
View file @
b43ab4c8
{
"name"
:
"unicaen/unicaen-ksup"
,
"description"
:
"Intégration d'application avec Ksup"
,
"repositories"
:
[
{
"type"
:
"composer"
,
"url"
:
"http://dev.unicaen.fr/packagist"
}
],
"require-dev"
:
{
"phpunit/PHPUnit"
:
">=3.7"
,
"zendframework/zend-test"
:
">=2.2"
},
"autoload"
:
{
"psr-0"
:
{
"UnicaenCode"
:
"src/"
,
"UnicaenCodeTest"
:
"tests/"
},
"classmap"
:
[
"./Module.php"
]
}
}
config/module.config.php
0 → 100644
View file @
b43ab4c8
<?php
namespace
UnicaenKsup
;
return
[
'unicaen-ksup'
=>
[
],
];
config/unicaen-ksup.global.php.dist
0 → 100644
View file @
b43ab4c8
<?php
namespace
UnicaenKsup
;
return
[
'unicaen-ksup'
=>
[
],
];
config/unicaen-ksup.local.php.dist
0 → 100644
View file @
b43ab4c8
<?php
namespace
UnicaenKsup
;
return
[
'unicaen-ksup'
=>
[
],
];
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment