1
0
Fork 0
composer/phpstan/config.neon

60 lines
2.2 KiB
Plaintext
Raw Normal View History

includes:
- ../vendor/phpstan/phpstan-phpunit/extension.neon
2021-06-03 09:36:39 +00:00
- ./baseline.neon
2019-01-07 15:22:41 +00:00
parameters:
level: 5
2019-01-07 15:22:41 +00:00
excludes_analyse:
2019-12-08 01:38:22 +00:00
- '../tests/Composer/Test/Fixtures/*'
- '../tests/Composer/Test/Autoload/Fixtures/*'
- '../tests/Composer/Test/Plugin/Fixtures/*'
- '../tests/Composer/Test/PolyfillTestCase.php'
2019-01-07 15:22:41 +00:00
ignoreErrors:
2020-04-07 12:13:50 +00:00
# unused parameters
- '~^Constructor of class Composer\\Repository\\VcsRepository has an unused parameter \$dispatcher\.$~'
- '~^Constructor of class Composer\\Util\\Http\\CurlDownloader has an unused parameter \$disableTls\.$~'
- '~^Constructor of class Composer\\Util\\Http\\CurlDownloader has an unused parameter \$options\.$~'
2019-01-07 15:22:41 +00:00
# ion cube is not installed
- '~^Function ioncube_loader_\w+ not found\.$~'
# variables from global scope
- '~^Undefined variable: \$vendorDir$~'
- '~^Undefined variable: \$baseDir$~'
# variable defined in eval
- '~^Undefined variable: \$res$~'
2019-12-08 01:38:22 +00:00
# we don't have different constructors for parent/child
- '~^Unsafe usage of new static\(\)\.$~'
2020-02-07 22:10:10 +00:00
# BC with older PHPUnit
- '~^Call to an undefined static method Composer\\Test\\PolyfillTestCase::setExpectedException\(\)\.$~'
2020-09-11 09:52:54 +00:00
- '~^Call to an undefined method Composer\\Test\\[a-zA-Z0-9\\]+::(assertFileDoesNotExist|assertMatchesRegularExpression)\(\)\.$~'
# Mock errors
- '~^Call to an undefined method (PHPUnit\\Framework\\MockObject\\MockObject|Prophecy\\Prophecy\\ObjectProphecy)::.*$~'
# Level 6 TODO
#- '~parameter .*? with no typehint specified.$~'
#- '~parameter .*? with no value type specified in iterable type array.$~'
#- '~has no return typehint specified.$~'
#- '~return type has no value type specified in iterable type array.$~'
#- '~ignorePlatformReqs~'
bootstrapFiles:
- ../tests/bootstrap.php
paths:
2019-12-08 01:38:22 +00:00
- ../src
- ../tests
dynamicConstantNames:
- Composer\Composer::BRANCH_ALIAS_VERSION
- Composer\Composer::VERSION
- Composer\Composer::RELEASE_DATE
- Composer\Composer::SOURCE_VERSION
rules:
- Composer\PHPStanRules\AnonymousFunctionWithThisRule