23 lines
436 B
PHP
23 lines
436 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* phpVMS
|
||
|
*/
|
||
|
|
||
|
$path_to_phpvms_folder = __DIR__;
|
||
|
|
||
|
require $path_to_phpvms_folder.'/bootstrap/autoload.php';
|
||
|
|
||
|
$app = require_once $path_to_phpvms_folder.'/bootstrap/app.php';
|
||
|
$app->setPublicPath(__DIR__ . '/public');
|
||
|
|
||
|
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
|
||
|
|
||
|
$response = $kernel->handle(
|
||
|
$request = Illuminate\Http\Request::capture()
|
||
|
);
|
||
|
|
||
|
$response->send();
|
||
|
|
||
|
$kernel->terminate($request, $response);
|