Files
bs 5c3b21193e
CI / testsuite (push) Successful in 3m13s
CI / Coding Standard & Static Analysis (push) Failing after 4m10s
first commit
2026-09-15 02:04:11 -07:00

11 lines
307 B
PHP

#!/usr/bin/php -q
<?php
require dirname(__DIR__) . '/vendor/autoload.php';
use App\Application;
use Cake\Console\CommandRunner;
// Build the runner with an application and root executable name.
$runner = new CommandRunner(new Application(dirname(__DIR__) . '/config'), 'cake');
exit($runner->run($argv));