Skip to content

Commit

Permalink
Add PhpParser to composer-require-checker configuration
Browse files Browse the repository at this point in the history
Note: PhpParser is only used in deprecated-src.

This change updates the configuration file by adding "PhpParser" to the list of globally recognized symbols. This ensures that the composer-require-checker tool accounts for "PhpParser" when verifying dependencies, preventing false positives in projects using this symbol.
  • Loading branch information
koriym committed Nov 29, 2024
1 parent b28f767 commit 9dfdc99
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion composer-require-checker.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"null", "true", "false",
"static", "self", "parent",
"array", "string", "int", "float", "bool", "iterable", "callable", "void", "object",
"Attribute", "ReflectionAttribute"
"Attribute", "ReflectionAttribute",
"PhpParser"
]
}

0 comments on commit 9dfdc99

Please sign in to comment.