<?php
/*
* This file is part of SolidInvoice project.
*
* (c) Pierre du Plessis <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
use SolidInvoice\Kernel;
$_SERVER['APP_RUNTIME_OPTIONS'] = [
'env_var_name' => 'SOLIDINVOICE_ENV',
'debug_var_name' => 'SOLIDINVOICE_DEBUG'
];
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return static function (array $context) {
return new Kernel($context['SOLIDINVOICE_ENV'], (bool) $context['SOLIDINVOICE_DEBUG']);
};