mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-18 23:00:54 +00:00
* Prefix slim-petstore-server.sh with 'php-' * Prefix slim sample folder * Prefix ze-ph-petstore-server.sh with 'php-' * Prefix ze-ph sample folder * Prefix lumen-petstore-server.sh with 'php-' * Prefix lumen sample folder
11 lines
280 B
PHP
11 lines
280 B
PHP
<?php
|
|
|
|
chdir(dirname(__DIR__));
|
|
|
|
/** @var \Zend\ServiceManager\ServiceManager $container */
|
|
$container = require_once __DIR__.'/../application/container.php';
|
|
|
|
/** @var \Zend\Expressive\Application $app */
|
|
$app = $container->get(\Zend\Expressive\Application::class);
|
|
$app->run();
|