Update DB dependency

This commit is contained in:
Timothy Warren 2023-03-16 13:02:17 -04:00
parent cb33329a21
commit fffd75122f
2 changed files with 6 additions and 9 deletions

View File

@ -27,10 +27,7 @@
}
},
"config": {
"lock": false,
"platform": {
"php": "8"
}
"lock": false
},
"require": {
"amphp/amp": "^2.5.0",
@ -39,18 +36,18 @@
"aura/router": "^3.1.0",
"aura/session": "^2.1.0",
"aviat/banker": "^3.0.0",
"aviat/query": "^3.0.0",
"danielstjules/stringy": "^3.1.0",
"aviat/query": "^4.0.0",
"ext-dom": "*",
"ext-gd": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-gd": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"laminas/laminas-diactoros": "^2.5.0",
"laminas/laminas-httphandlerrunner": "^2.1.0",
"maximebf/consolekit": "^1.0.3",
"monolog/monolog": "^2.0.2",
"php": ">= 8.0.0",
"php": ">= 8.1.0",
"psr/http-message": "^1.0.1",
"psr/log": "*",
"symfony/polyfill-mbstring": "^1.0.0",

View File

@ -35,7 +35,7 @@ $CONF_DIR = _dir($APP_DIR, 'config');
// -----------------------------------------------------------------------------
// Dependency Injection setup
// -----------------------------------------------------------------------------
$baseConfig = require "{$APPCONF_DIR}/base_config.php";
$baseConfig = require _dir($APPCONF_DIR, 'base_config.php');
$di = require "{$APP_DIR}/bootstrap.php";
$config = loadConfig($CONF_DIR);