forked from baldurrensch/AliceBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
console
36 lines (27 loc) · 1005 Bytes
/
console
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env php
<?php
/*
* This file is part of the Hautelook\AliceBundle package.
*
* (c) Baldur Rensch <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
// Debug only
set_time_limit(0);
require_once __DIR__.'/vendor/autoload.php';
require_once __DIR__.'/Tests/SymfonyApp/autoload.php';
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Debug\Debug;
$input = new ArgvInput();
$env = $input->getParameterOption(array('--env', '-e'), getenv('SYMFONY_ENV') ?: 'dev');
$debug = getenv('SYMFONY_DEBUG') !== '0' && !$input->hasParameterOption(array('--no-debug', '')) && $env !== 'prod';
if ($debug) {
Debug::enable();
}
error_reporting(E_ALL & ~E_USER_DEPRECATED);
$kernel = new Hautelook\AliceBundle\Tests\SymfonyApp\AppKernel($env, $debug);
$application = new Application($kernel);
$application->run($input);