File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 18
18
/.settings
19
19
phpword.ini
20
20
/.buildpath
21
+ /.scannerwork
21
22
/.project
22
23
/nbproject
23
24
/.php_cs.cache
Original file line number Diff line number Diff line change 23
23
<logging >
24
24
<log type =" coverage-html" target =" ./build/coverage" />
25
25
<log type =" coverage-clover" target =" ./build/logs/clover.xml" />
26
+ <log type =" junit" target =" ./build/logs/logfile.xml" />
26
27
</logging >
27
28
</phpunit >
Original file line number Diff line number Diff line change
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
+
7
+ # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
8
+ # This property is optional if sonar.modules is set.
9
+ sonar.sources =src
10
+ sonar.tests =tests
11
+ sonar.php.coverage.reportPaths =build/logs/clover.xml
12
+ sonar.php.tests.reportPath =build/logs/logfile.xml
13
+
14
+ # Encoding of the source code. Default is default system encoding
15
+ # sonar.sourceEncoding=UTF-8
16
+
17
+ sonar.host.url =http://localhost:9000
You can’t perform that action at this time.
0 commit comments