composer add psr/log

This commit is contained in:
2023-05-31 16:50:21 +09:00
parent 24f7a903ef
commit a6e8eb5690
2 changed files with 5 additions and 2 deletions

View File

@@ -109,7 +109,10 @@ return [
'PhanWriteOnlyPublicProperty', 'PhanWriteOnlyPublicProperty',
'PhanUnreferencedConstant', 'PhanUnreferencedConstant',
'PhanWriteOnlyPublicProperty', 'PhanWriteOnlyPublicProperty',
'PhanReadOnlyPublicProperty' 'PhanReadOnlyPublicProperty',
// start ignore annotations
'PhanUnextractableAnnotationElementName',
'PhanUnextractableAnnotationSuffix',
], ],
// Override to hardcode existence and types of (non-builtin) globals in the global scope. // Override to hardcode existence and types of (non-builtin) globals in the global scope.

View File

@@ -17,7 +17,7 @@
"minimum-stability": "dev", "minimum-stability": "dev",
"require": { "require": {
"php": ">=8.1", "php": ">=8.1",
"psr/log": "^2.0 || ^3.0" "psr/log": "^3.0@dev"
}, },
"require-dev": { "require-dev": {
"phpstan/phpstan": "^1.10", "phpstan/phpstan": "^1.10",