12345678910111213141516171819202122232425262728 |
- parameters:
- autoload_files:
- - autoload.php
- level: 0
- excludes_analyse:
- - '../tests/Composer/Test/Fixtures/*'
- - '../tests/Composer/Test/Autoload/Fixtures/*'
- - '../tests/Composer/Test/Plugin/Fixtures/*'
- ignoreErrors:
- # ion cube is not installed
- - '~^Function ioncube_loader_\w+ not found\.$~'
- # rar is not installed
- - '~^Call to static method open\(\) on an unknown class RarArchive\.$~'
- # imagick is not installed
- - '~^Instantiated class Imagick not found\.$~'
- # variables from global scope
- - '~^Undefined variable: \$vendorDir$~'
- - '~^Undefined variable: \$baseDir$~'
- # variable defined in eval
- - '~^Undefined variable: \$res$~'
- # we don't have different constructors for parent/child
- - '~^Unsafe usage of new static\(\)\.$~'
- paths:
- - ../src
- - ../tests
|