{ "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'] ?? 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);", "" ], "executable": true } }, "ref": "5ec5bb098bc693cd92f03390dd488ea0847cfcc7" } } }