mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-17 20:34:51 +08:00
31 lines
888 B
PHP
Executable File
31 lines
888 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
use StaticPHP\ConsoleApplication;
|
|
use StaticPHP\Exception\ExceptionHandler;
|
|
use StaticPHP\Exception\SPCException;
|
|
|
|
if (file_exists(dirname(__DIR__) . '/vendor/autoload.php')) {
|
|
// Current: ./bin (git/project mode)
|
|
require_once dirname(__DIR__) . '/vendor/autoload.php';
|
|
} else {
|
|
// Current: ./vendor/crazywhalecc/static-php-cli/bin (composer library mode)
|
|
require_once dirname(__DIR__, 3) . '/autoload.php';
|
|
}
|
|
|
|
// Print deprecation notice on PHP < 8.4, use red and highlight background
|
|
if (PHP_VERSION_ID < 80400) {
|
|
echo "\e[43mDeprecation Notice: PHP < 8.4 is deprecated, please upgrade your PHP version.\e[0m\n";
|
|
}
|
|
|
|
try {
|
|
(new ConsoleApplication())->run();
|
|
} catch (SPCException $e) {
|
|
ExceptionHandler::handleSPCException($e);
|
|
exit(1);
|
|
} catch (\Throwable $e) {
|
|
ExceptionHandler::handleDefaultException($e);
|
|
exit(1);
|
|
}
|
|
|