first commit

This commit is contained in:
denisdulici
2017-09-14 22:21:00 +03:00
commit 515bdaf5cd
598 changed files with 48030 additions and 0 deletions

24
index.php Normal file
View File

@@ -0,0 +1,24 @@
<?php
/**
* @package Akaunting
* @copyright 2017 Akaunting. All rights reserved.
* @license GNU GPL version 3; see LICENSE.txt
* @link https://akaunting.com
*/
// Register the auto-loader
require(__DIR__.'/bootstrap/autoload.php');
// Load the app
$app = require_once(__DIR__.'/bootstrap/app.php');
// Run the app
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);