Last active
May 14, 2018 18:13
-
-
Save weaverryan/66d972e1aac383f9330160c38ab12230 to your computer and use it in GitHub Desktop.
working on console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env php | |
<?php | |
use App\Kernel; | |
use Symfony\Bundle\FrameworkBundle\Console\Application; | |
use Symfony\Component\Console\Input\ArgvInput; | |
use Symfony\Component\Debug\Debug; | |
use Symfony\Component\Dotenv\Dotenv; | |
set_time_limit(0); | |
require __DIR__.'/../vendor/autoload.php'; | |
if (!class_exists(Application::class)) { | |
throw new \RuntimeException('You need to add "symfony/framework-bundle" as a Composer dependency.'); | |
} | |
// this would simply read .env and populate the environment variables | |
// (or do nothing if APP_ENV is already set) | |
Kernel::bootstrapEnvironment(); | |
$input = new ArgvInput(); | |
$env = $input->getParameterOption(['--env', '-e'], $_SERVER['APP_ENV'] ?? 'dev'); | |
$debug = ($_SERVER['APP_DEBUG'] ?? true) !== '0' && !$input->hasParameterOption(['--no-debug', '']); | |
if ($debug) { | |
umask(0000); | |
if (class_exists(Debug::class)) { | |
Debug::enable(); | |
} | |
} | |
$kernel = new Kernel($env, $debug); | |
$application = new Application($kernel); | |
$application->run($input); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment