48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
use Aura\Html\HelperLocatorFactory;
|
||
|
use Aura\Session\SessionFactory;
|
||
|
use Zend\Diactoros\ServerRequestFactory;
|
||
|
use Zend\Diactoros\Response;
|
||
|
|
||
|
use Aviat\Ion\Config;
|
||
|
use Aviat\Ion\Di\Container;
|
||
|
|
||
|
// -----------------------------------------------------------------------------
|
||
|
// Setup DI container
|
||
|
// -----------------------------------------------------------------------------
|
||
|
return static function(array $config_array = []) {
|
||
|
$container = new Container();
|
||
|
|
||
|
$container->set('config', static function() {
|
||
|
return new Config([]);
|
||
|
});
|
||
|
|
||
|
$container->setInstance('config', new Config($config_array));
|
||
|
|
||
|
$container->set('request', static function() {
|
||
|
return ServerRequestFactory::fromGlobals(
|
||
|
$_SERVER,
|
||
|
$_GET,
|
||
|
$_POST,
|
||
|
$_COOKIE,
|
||
|
$_FILES
|
||
|
);
|
||
|
});
|
||
|
|
||
|
$container->set('response', static function() {
|
||
|
return new Response();
|
||
|
});
|
||
|
|
||
|
// Create session Object
|
||
|
$container->set('session', static function() {
|
||
|
return (new SessionFactory())->newInstance($_COOKIE);
|
||
|
});
|
||
|
|
||
|
// Create Html helper Object
|
||
|
$container->set('html-helper', static function() {
|
||
|
return (new HelperLocatorFactory)->newInstance();
|
||
|
});
|
||
|
|
||
|
return $container;
|
||
|
};
|