Seteo inicial

This commit is contained in:
2020-07-02 18:44:16 -04:00
parent 8305f7a81c
commit 034e63d8b9
18 changed files with 254 additions and 0 deletions

16
setup/web/setup.php Normal file
View File

@ -0,0 +1,16 @@
<?php
use Psr\Container\ContainerInterface as Container;
return [
ProVM\Common\Alias\View::class => function(Container $c) {
return new ProVM\Common\Define\View(
$c->get('folders')->templates,
$c->get('folders')->cache,
null,
[
'urls' => $c->get('urls'),
'assets' => $c->get('assets')
]
);
}
];