1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-02 17:52:59 +01:00
phpseclib/build/build.xml

26 lines
758 B
XML
Raw Normal View History

2014-04-12 07:47:53 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<project name="phpseclib"
description="PHP Secure Communications Library"
default="all"
>
2020-08-21 18:43:05 +02:00
<target name="all" depends="sniff" />
2014-04-12 07:47:53 +02:00
<!-- Code Sniffer -->
<target name="sniff" depends="sniff-php-code,sniff-php-tests" />
<target name="sniff-php-code">
<exec command="vendor/bin/phpcs -s
--extensions=php
--standard=build/code-sniffer-ruleset.xml
phpseclib/"
dir=".." checkreturn="true" passthru="true" />
2014-04-12 07:47:53 +02:00
</target>
<target name="sniff-php-tests">
<exec command="vendor/bin/phpcs -s
--extensions=php
--standard=build/code-sniffer-ruleset-tests.xml
tests/"
dir=".." checkreturn="true" passthru="true" />
2014-04-12 07:47:53 +02:00
</target>
</project>