2016-01-21 19:03:39 +08:00
|
|
|
<?php
|
2016-08-28 10:05:21 +08:00
|
|
|
|
2016-01-21 19:03:39 +08:00
|
|
|
/**
|
2016-09-10 18:09:12 +08:00
|
|
|
* Entrance of Blessing Skin Server
|
2016-08-28 10:05:21 +08:00
|
|
|
*
|
2016-09-10 18:09:12 +08:00
|
|
|
* @package Blessing Skin Server
|
|
|
|
* @author printempw <h@prinzeugen.net>
|
2016-01-21 19:03:39 +08:00
|
|
|
*/
|
2016-02-10 15:20:13 +08:00
|
|
|
|
2016-11-21 22:04:10 +08:00
|
|
|
// runtime check
|
|
|
|
if (version_compare(PHP_VERSION, '5.5.9', '<')) {
|
|
|
|
exit('[Error] Blessing Skin Server needs PHP version >= 5.5.9, you are now using '.PHP_VERSION);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!class_exists('PDO')) {
|
|
|
|
exit('[Error] You have not installed the PDO extension');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!function_exists('openssl_encrypt')) {
|
|
|
|
exit('[Error] You have not installed the OpenSSL extension');
|
|
|
|
}
|
|
|
|
|
2016-11-21 21:50:24 +08:00
|
|
|
require __DIR__.'/bootstrap/autoload.php';
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-11-21 21:50:24 +08:00
|
|
|
$app = require_once __DIR__.'/bootstrap/app.php';
|
2016-08-28 10:05:21 +08:00
|
|
|
|
|
|
|
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
|
|
|
|
|
|
|
|
$response = $kernel->handle(
|
|
|
|
$request = Illuminate\Http\Request::capture()
|
|
|
|
);
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-08-28 10:05:21 +08:00
|
|
|
$response->send();
|
2016-07-24 14:56:22 +08:00
|
|
|
|
2016-08-28 10:05:21 +08:00
|
|
|
$kernel->terminate($request, $response);
|