PHP Classes

File: backend/php/cakephp/bin/cake.php

Recommend this page to a friend!
  Packages of Everton C B Junior   Igreja Aberta   backend/php/cakephp/bin/cake.php   Download  
File: backend/php/cakephp/bin/cake.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Igreja Aberta
Church activity management application
Author: By
Last change:
Date: 11 days ago
Size: 393 bytes
 

Contents

Class file image Download
#!/usr/bin/php -q
<?php
// Check platform requirements
require dirname(__DIR__) . '/config/requirements.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));