mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-11 23:26:40 +03:00
12 lines
298 B
PHP
Executable File
12 lines
298 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
use App\Kernel;
|
|
use PHPStreamServer\Symfony\ServerApplication;
|
|
|
|
require_once \dirname(__DIR__) . '/vendor/autoload_runtime.php';
|
|
|
|
return new ServerApplication(static function (array $context) {
|
|
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
|
|
});
|