forked from loafle/openapi-generator-original
* Set required PHP version to ^7.2.5 * Write .gitignore into srcBasePath * Update dependencies * Copy latest Lumen sources to templates * Add Lumen license template * Use Lumen license in templates * Fix typo in readme * Add Init App Config readme section * Add composer.lock to root gitignore * Add Travis-CI task * Set OAS 3.0 input spec file for samples * Refresh samples
33 lines
1.0 KiB
PHP
33 lines
1.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* The Lumen framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
|
|
*/
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Create The Application
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| First we need to get an application instance. This creates an instance
|
|
| of the application / container and bootstraps the application so it
|
|
| is ready to receive HTTP / Console requests from the environment.
|
|
|
|
|
*/
|
|
|
|
$app = require __DIR__.'/../bootstrap/app.php';
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Run The Application
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Once we have the application, we can handle the incoming request
|
|
| through the kernel, and send the associated response back to
|
|
| the client's browser allowing them to enjoy the creative
|
|
| and wonderful application we have prepared for them.
|
|
|
|
|
*/
|
|
|
|
$app->run();
|