This commit is contained in:
Juan Pablo Vial
2023-06-22 23:15:17 -04:00
parent 05e37f19ae
commit b212381bb7
25 changed files with 433 additions and 89 deletions

3
bin/console Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
php /code/bin/index.php "$@"

8
bin/index.php Normal file
View File

@ -0,0 +1,8 @@
<?php
//$__environment = 'cli';
$app = include_once implode(DIRECTORY_SEPARATOR, [
dirname(__FILE__, 2),
'setup',
'cli.app.php'
]);
$app->run();