Include autoload on console.php

Following 19f908d921
skala
Marco Villegas 12 years ago
parent e1ea01c8b2
commit eb65e667ec
  1. 3
      console.php

@ -8,6 +8,9 @@ if (PHP_SAPI != 'cli') {
die("Cannot be called by any other method than the command line.");
}
/** Composer autoload */
require_once __DIR__.'/vendor/autoload.php';
$app = require_once dirname(__FILE__).'/main/inc/global.inc.php';
use Knp\Provider\ConsoleServiceProvider;

Loading…
Cancel
Save