composer add psr/log

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

View File

@@ -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.

View File

@@ -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",