From aa5c3b9dcc5287db042063780846a30c4814a424 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Wed, 31 May 2023 16:50:21 +0900 Subject: [PATCH] composer add psr/log --- .phan/config.php | 5 ++++- composer.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.phan/config.php b/.phan/config.php index cc0ea26..9b99862 100644 --- a/.phan/config.php +++ b/.phan/config.php @@ -109,7 +109,10 @@ return [ 'PhanWriteOnlyPublicProperty', 'PhanUnreferencedConstant', 'PhanWriteOnlyPublicProperty', - 'PhanReadOnlyPublicProperty' + 'PhanReadOnlyPublicProperty', + // start ignore annotations + 'PhanUnextractableAnnotationElementName', + 'PhanUnextractableAnnotationSuffix', ], // Override to hardcode existence and types of (non-builtin) globals in the global scope. diff --git a/composer.json b/composer.json index 5e2f42d..b688dfd 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ "minimum-stability": "dev", "require": { "php": ">=8.1", - "psr/log": "^2.0 || ^3.0" + "psr/log": "^3.0@dev" }, "require-dev": { "phpstan/phpstan": "^1.10",