You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
307B

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

Powered by TurnKey Linux.