Files
compose-manager/app/bin/console.php
2024-08-22 19:49:44 -04:00

13 lines
251 B
PHP

<?php
$app = require_once implode(DIRECTORY_SEPARATOR, [
dirname(__DIR__),
'bootstrap',
'app.php'
]);
try {
$app->run();
} catch (Exception $e) {
$app->getContainer()->get(Psr\Log\LoggerInterface::class)->error($e);
exit(1);
}