mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-25 11:00:52 +00:00
* Migration from php-ze-ph to php-mezzio-ph * Sample regen after rebase * update samples Co-authored-by: William Cheng <wing328hk@gmail.com>
12 lines
290 B
PHP
12 lines
290 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
chdir(dirname(__DIR__));
|
|
|
|
/** @var \Laminas\ServiceManager\ServiceManager $container */
|
|
$container = require_once __DIR__.'/../application/container.php';
|
|
|
|
/** @var \Mezzio\Application $app */
|
|
$app = $container->get(\Mezzio\Application::class);
|
|
$app->run();
|