Files
compose-manager/app/bin/console.php

13 lines
251 B
PHP
Raw Normal View History

2024-08-22 19:49:44 -04:00
<?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);
}