From e3d6ac20ea996ef3eccbec70da8d71679e3d46d7 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Tue, 27 Nov 2018 14:57:27 -0500 Subject: [PATCH] Update cache dependency --- composer.json | 2 +- index.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 3a749542..f94fdf6b 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "aura/html": "^2.0", "aura/router": "^3.0", "aura/session": "^2.0", - "aviat/banker": "^1.0.0", + "aviat/banker": "^2.0.0", "aviat/ion": "^2.4.1", "ext-iconv": "*", "ext-json": "*", diff --git a/index.php b/index.php index e249fd48..f122dcfd 100644 --- a/index.php +++ b/index.php @@ -47,12 +47,12 @@ $CONF_DIR = _dir($APP_DIR, 'config'); // ----------------------------------------------------------------------------- // Dependency Injection setup // ----------------------------------------------------------------------------- -$baseConfig = require $APPCONF_DIR . '/base_config.php'; -$di = require $APP_DIR . '/bootstrap.php'; +$baseConfig = require "{$APPCONF_DIR}/base_config.php"; +$di = require "{$APP_DIR}/bootstrap.php"; $config = loadToml($CONF_DIR); -$overrideFile = $CONF_DIR . '/admin-override.toml'; +$overrideFile = "{$CONF_DIR}/admin-override.toml"; $overrideConfig = file_exists($overrideFile) ? loadTomlFile($overrideFile) : [];