sonar-project.properties 649 B

1234567891011121314151617
  1. # must be unique in a given SonarQube instance
  2. sonar.projectKey=phpoffice:phpword
  3. # this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
  4. sonar.projectName=PHPWord
  5. sonar.projectVersion=0.16
  6. # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
  7. # This property is optional if sonar.modules is set.
  8. sonar.sources=src
  9. sonar.tests=tests
  10. sonar.php.coverage.reportPaths=build/logs/clover.xml
  11. sonar.php.tests.reportPath=build/logs/logfile.xml
  12. # Encoding of the source code. Default is default system encoding
  13. #sonar.sourceEncoding=UTF-8
  14. sonar.host.url=http://localhost:9000