Notification Setup Error

We have detected an error in your notification set-up (Event-ID dab39dc24f564ec7bd4628d1305fd03c). Currently, we cannot inform you about inspection progress. Please check that the user 557058:bca11929-8c2d-43f2-8a82-c5416880d395 still has access to your repository or update the API account.

Completed
Pull Request — develop ( #81 )
by Alexandru
01:18
created

Global Config

filter:
    paths:
        - src/
        - lib/
tools:
    php_sim:
        enabled: true
        min_mass: 16
    external_code_coverage: false
    php_pdepend: true
    php_mess_detector:
        enabled: true
        extensions:
        - php
        command: phpmd
        filter:
            paths:
                - src/
                - lib/
        config:
            rulesets:
                - codesize
        path_configs: []

    php_cs_fixer:
        enabled: true
        extensions:
          - php
        filter:
            paths:
                - src/
                - lib/
        config:
            level: psr1
            fixers: []

    php_analyzer:
        enabled: true
        filter:
            paths:
                - src/
                - lib/
        extensions:
          - php
        path_configs: []

    php_code_sniffer:
        extensions:
            - php
        command: phpcs
        enabled: true
        filter:
            paths:
                - src/
                - lib/
        config:
            standard: PSR2
            sniffs: []
        path_configs: []

    sensiolabs_security_checker:
        enabled: true
        filter:
            paths:
                - src/
                - lib/
    php_cpd:
        enabled: true
        command: phpcpd
        min_lines: 5
        min_tokens: 70
        excluded_dirs:
            - '*/tests/*'
            - '*/Tests/*'
            - '*/test/*'
            - '*/example/*'
        names:
          - '*.php'
        filter:
            paths:
                - src/
                - lib/