{ "manifests": { "symfony/console": { "manifest": { "copy-from-recipe": { "bin/": "%BIN_DIR%/" } }, "files": { "bin/console": { "contents": [ "#!/usr/bin/env php", "load(__DIR__.'/../.env');", "}", "", "$input = new ArgvInput();", "$env = $input->getParameterOption(['--env', '-e'], $_SERVER['APP_ENV'] ?? 'dev');", "$debug = ($_SERVER['APP_DEBUG'] ?? ('prod' !== $env)) && !$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);", "" ], "executable": true } }, "ref": "9f94d3ea453cd8a3b95db7f82592d7344fe3a76a" } } }