File: build.xml

package info (click to toggle)
phing 3.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,368 kB
  • sloc: php: 59,821; xml: 9,767; sql: 78; makefile: 39; sh: 14
file content (37 lines) | stat: -rw-r--r-- 1,836 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<project name="PHPCS" default="test">
    <target name="testPhpCs">
        <phpcs bin="../../../../../bin/phpcs" file="../../../../../classes/phing/dispatch" level="debug" checkreturn="false" ignoreAnnotations="true" />
    </target>
    <target name="testMissingFileSetAndFilePhpCs1">
        <phpcs bin="../../../../../bin/phpcs" level="debug" checkreturn="false" ignoreAnnotations="true" >
        </phpcs>
    </target>
    <target name="testFileSetInPhpCs1">
        <phpcs bin="../../../../../bin/phpcs" level="debug" checkreturn="false" ignoreAnnotations="true" >
        <fileset dir="../.." includes="**/*.php"/>
        </phpcs>
    </target>
    <target name="testFileSetInPhpCs1FormatSet">
        <phpcs bin="../../../../../bin/phpcs" format="checkstyle" level="debug" checkreturn="false" ignoreAnnotations="true" >
        <fileset dir="../.." includes="**/*.php"/>
        </phpcs>
    </target>
    <target name="testFileSetInPhpCs1StandardSet">
        <phpcs bin="../../../../../bin/phpcs" standard="PSR12" level="debug" checkreturn="false" ignoreAnnotations="true" >
        <fileset dir="../.." includes="**/*.php"/>
        </phpcs>
    </target>
    <target name="testFileSetInPhpCs1OutfileSet">
        <phpcs bin="../../../../../bin/phpcs" outfile="/dev/null" level="debug" checkreturn="false" ignoreAnnotations="true" >
        <fileset dir="../.." includes="**/*.php"/>
        </phpcs>
    </target>
    <target name="testMultipleReportFormattersSet">
        <phpcs bin="../../../../../bin/phpcs" level="debug" checkreturn="false" ignoreAnnotations="true" >
        <fileset dir="../.." includes="**/*.php"/>
        <formatter type="checkstyle" outfile="/tmp/null1"/>
        <formatter type="summary" outfile="/tmp/null2"/>
        </phpcs>
    </target>
</project>