Files
symfony-flex-recipes-contrib/phpstreamserver/symfony/0.4/bin/phpss
T

14 lines
329 B
PHP
Executable File

#!/usr/bin/env php
<?php
use App\Kernel;
use PHPStreamServer\Symfony\PHPStreamServerRuntime;
$_SERVER['APP_RUNTIME'] = PHPStreamServerRuntime::class;
require_once \dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};