diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 3b4326b..a9f8099 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -1,24 +1,21 @@ before_commands: - "composer install --prefer-source" +inherit: true +filter: + paths: + - UAS/Parser.php + tools: # Code Coverage external_code_coverage: enabled: true timeout: 300 - filter: - excluded_paths: - - 'vendor/*' - - 'Tests/*' php_code_coverage: enabled: false test_command: phpunit - filter: - excluded_paths: - - 'vendor/*' - - 'Tests/*' # Code Sniffer @@ -27,17 +24,12 @@ tools: command: phpcs config: standard: PSR2 - filter: - excluded_paths: - - 'vendor/*' # Copy/Paste Detector php_cpd: enabled: true command: phpcpd - excluded_dirs: - - 'vendor' # PHP CS Fixer (http://http://cs.sensiolabs.org/). @@ -46,17 +38,12 @@ tools: command: php-cs-fixer config: level: psr2 - filter: - excluded_paths: - - 'vendor/*' # Analyzes the size and structure of a PHP project. php_loc: enabled: true command: phploc - excluded_dirs: - - vendor # PHP Mess Detector (http://phpmd.org). @@ -70,24 +57,16 @@ tools: - naming - design - controversial - filter: - excluded_paths: - - 'vendor/*' # Analyzes the size and structure of a PHP project. php_pdepend: enabled: true command: pdepend - excluded_dirs: - - vendor # Runs Scrutinizer's PHP Analyzer Tool php_analyzer: enabled: true - filter: - excluded_paths: - - 'vendor/*' # Security Advisory Checker - sensiolabs_security_checker: true \ No newline at end of file + sensiolabs_security_checker: true