From 5f5cee215b97d7a13f55c1316217322afea14bf6 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Thu, 16 Mar 2023 22:19:56 -0400 Subject: [PATCH] Update cache dependency --- composer.json | 7 +++---- index.php | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 5e7a999a..2667d963 100644 --- a/composer.json +++ b/composer.json @@ -35,7 +35,7 @@ "aura/html": "^2.5.0", "aura/router": "^3.1.0", "aura/session": "^2.1.0", - "aviat/banker": "^3.0.0", + "aviat/banker": "^4.1.2", "aviat/query": "^4.0.0", "ext-dom": "*", "ext-gd": "*", @@ -46,10 +46,9 @@ "laminas/laminas-diactoros": "^2.5.0", "laminas/laminas-httphandlerrunner": "^2.1.0", "maximebf/consolekit": "^1.0.3", - "monolog/monolog": "^2.0.2", + "monolog/monolog": "^3.0.0", "php": ">= 8.1.0", "psr/http-message": "^1.0.1", - "psr/log": "*", "symfony/polyfill-mbstring": "^1.0.0", "symfony/polyfill-util": "^1.0.0", "tracy/tracy": "^2.8.0", @@ -64,7 +63,7 @@ "scripts": { "build:css": "cd public && npm run build:css && cd ..", "build:js": "cd public && npm run build:js && cd ..", - "coverage": "phpdbg -qrr -- vendor/bin/phpunit -c build", + "coverage": "php -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude=\"~vendor~\" ./vendor/bin/phpunit -c build", "phpstan": "phpstan analyse -c phpstan.neon", "watch:css": "cd public && npm run watch:css", "watch:js": "cd public && npm run watch:js", diff --git a/index.php b/index.php index 615c6086..78fdc69f 100644 --- a/index.php +++ b/index.php @@ -23,7 +23,7 @@ setlocale(LC_CTYPE, 'en_US'); // Load composer autoloader require_once __DIR__ . '/vendor/autoload.php'; -Debugger::$strictMode = E_ALL & ~E_DEPRECATED; // all errors except deprecated notices +Debugger::$strictMode = E_ALL; Debugger::$showBar = FALSE; Debugger::enable(Debugger::DEVELOPMENT, __DIR__ . '/app/logs');