Blame view

bin/cake.php 393 Bytes
6c4edfa3   Alexandre   First Commit LabI...
1
2
#!/usr/bin/php -q
<?php
07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
3
4
5
// Check platform requirements
require dirname(__DIR__) . '/config/requirements.php';
require dirname(__DIR__) . '/vendor/autoload.php';
6c4edfa3   Alexandre   First Commit LabI...
6

07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
7
8
use App\Application;
use Cake\Console\CommandRunner;
6c4edfa3   Alexandre   First Commit LabI...
9

07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
10
11
12
// Build the runner with an application and root executable name.
$runner = new CommandRunner(new Application(dirname(__DIR__) . '/config'), 'cake');
exit($runner->run($argv));