Phing > configuration > minor updates

This commit is contained in:
Meritoo
2019-04-03 11:21:29 +02:00
parent 312e721dc3
commit a90eeed583
3 changed files with 5 additions and 4 deletions

View File

@@ -24,11 +24,11 @@ cache.clearWithWarmup = false
#
composer.download_command = bash ${project.basedir}/phing/composer-install.sh
# Path to composer executable or downloaded composer.phar file
# Path to Composer executable or downloaded composer.phar file
#
composer.path = ${project.basedir}/composer.phar
# Path to php executable used by composer
# Path to PHP executable used by Composer
#
composer.php = php

View File

@@ -57,7 +57,7 @@
<fileset refid="sourcecode"/>
<formatter type="checkstyle" outfile="${dir.reports}/checkstyle.xml"/>
<formatter type="csv" outfile="${dir.reports}/checkstyle.csv"/>
<formatter type="summary" outfile="${dir.reports}/checkstyle_summary.txt"/>
<formatter type="summary" outfile="${dir.reports}/checkstyle-summary.txt"/>
</phpcodesniffer>
</target>
@@ -65,7 +65,7 @@
<target name="check:cpd" depends="build:prepare">
<phpcpd>
<fileset refid="sourcecode"/>
<formatter type="pmd" outfile="${dir.reports}/pmd-cpd.xml"/>
<formatter type="pmd" outfile="${dir.reports}/copy-paste-detector.xml"/>
</phpcpd>
</target>