mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-02-09 07:58:40 +00:00
rename http to httpuri
This commit is contained in:
parent
77664928c9
commit
e1d04b42bd
|
|
@ -1,20 +1,20 @@
|
||||||
<?php
|
<?php declare(strict_types=1);
|
||||||
/**
|
/**
|
||||||
* Remove old install and setup database.
|
* Remove old install and setup database.
|
||||||
*
|
*
|
||||||
* This script is usefull when you want to manually install the app without resetting an old database/app or new empty database.
|
* This script is usefull when you want to manually install the app without resetting an old database/app or new empty database.
|
||||||
*/
|
*/
|
||||||
ini_set('memory_limit', '2048M');
|
\ini_set('memory_limit', '2048M');
|
||||||
ini_set('display_errors', 1);
|
\ini_set('display_errors', 1);
|
||||||
ini_set('display_startup_errors', 1);
|
\ini_set('display_startup_errors', 1);
|
||||||
error_reporting(E_ALL);
|
\error_reporting(\E_ALL);
|
||||||
|
|
||||||
require_once __DIR__ . '/../phpOMS/Autoloader.php';
|
require_once __DIR__ . '/../phpOMS/Autoloader.php';
|
||||||
|
|
||||||
use Install\WebApplication;
|
use Install\WebApplication;
|
||||||
use phpOMS\Message\Http\HttpRequest;
|
use phpOMS\Message\Http\HttpRequest;
|
||||||
use phpOMS\Message\Http\RequestMethod;
|
|
||||||
use phpOMS\Message\Http\HttpResponse;
|
use phpOMS\Message\Http\HttpResponse;
|
||||||
|
use phpOMS\Message\Http\RequestMethod;
|
||||||
use phpOMS\Uri\HttpUri;
|
use phpOMS\Uri\HttpUri;
|
||||||
|
|
||||||
$config = [
|
$config = [
|
||||||
|
|
@ -118,7 +118,7 @@ $config = [
|
||||||
'en',
|
'en',
|
||||||
],
|
],
|
||||||
'apis' => [
|
'apis' => [
|
||||||
]
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
// Reset database
|
// Reset database
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user