Files
huangjingfen/pro_v3.5.1/vendor/nesbot/carbon/bin/carbon
panchengyong 7acbf45ff7 new files
2026-03-07 22:29:07 +08:00

24 lines
391 B
PHP
Executable File

#!/usr/bin/env php
<?php
use Carbon\Cli\Invoker;
$dir = __DIR__.'/..';
if (!file_exists($dir.'/autoload.php')) {
$dir = __DIR__.'/../vendor';
}
if (!file_exists($dir.'/autoload.php')) {
$dir = __DIR__.'/../../..';
}
if (!file_exists($dir.'/autoload.php')) {
echo 'Autoload not found.';
exit(1);
}
require $dir.'/autoload.php';
exit((new Invoker())(...$argv) ? 0 : 1);