Composer info

This commit is contained in:
2025-07-20 15:08:16 -04:00
parent e0ca63ebdf
commit 0d14dd779a
10 changed files with 513 additions and 0 deletions

24
phpstan.neon.dist Normal file
View File

@@ -0,0 +1,24 @@
parameters:
level: 8
paths:
- src
- tests
excludePaths:
- tests/fixtures/*
treatPhpDocTypesAsCertain: false
checkMissingIterableValueType: false
checkGenericClassInNonGenericObjectType: false
reportUnmatchedIgnoredErrors: true
ignoreErrors:
# Allow using superglobals for framework integrations
- '#Accessing superglobal#'
# Allow dynamic properties in tests
-
message: '#Access to an undefined property#'
path: tests/*
parallel:
jobSize: 20
maximumNumberOfProcesses: 4
cache:
nodesByFileCountMax: 512
nodesByStringCountMax: 512