mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
41 lines
985 B
PHP
41 lines
985 B
PHP
<?php
|
|
/**
|
|
* October - The PHP platform that gets back to basics.
|
|
*
|
|
* @package October
|
|
* @author Alexey Bobkov, Samuel Georges
|
|
*/
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Register composer
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Composer provides a generated class loader for the application.
|
|
|
|
|
*/
|
|
|
|
require __DIR__.'/bootstrap/autoload.php';
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Load framework
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This bootstraps the framework and loads up this application.
|
|
|
|
|
*/
|
|
|
|
$app = require_once __DIR__.'/bootstrap/start.php';
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Process request
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Execute the request and send the response back to the client.
|
|
|
|
|
*/
|
|
|
|
$app->run();
|