engines:
  structure:
    enabled: false
  duplication:
    enabled: false
  sonar-php:
    enabled: true
  fixme:
    enabled: true
  phpmd:
    enabled: true
    config:
      file_extensions: "php"
      rulesets: "phpmd.ruleset.xml"
  phpcodesniffer:
    enabled: true
    config:
      file_extensions: "php"
      standard: "PSR12"
  phan:
    enabled: true
    config:
      file_extensions: "php"
ratings:
  paths:
    - "**.php"
exclude_paths:
  - .git/**/*
  - vendor/**/*
  - tests/**/*
