HEX
Server: LiteSpeed
System: Linux server44.twelveinks.com 5.14.0-570.12.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 13 06:11:55 EDT 2025 x86_64
User: moda (1338)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /python/moda/public_html/tech/old/vendor/bitpay/php-client/build.xml
<?xml version="1.0" encoding="UTF-8"?>

<project name="bitpay/package" default="build">
    <target name="build" depends="lint,phpunit,phpcs" />

    <target name="lint" description="Check the syntax of PHP files">
        <mkdir dir="${project.basedir}/build/cache" />
        <phplint cachefile="${project.basedir}/build/cache/phplint.cache">
            <fileset dir="${project.basedir}/src">
                <include name="**/*.php" />
            </fileset>
        </phplint>
    </target>

    <target name="phpunit">
        <delete dir="${project.basedir}/build/docs/code-coverage" />
        <mkdir dir="${project.basedir}/build/docs/code-coverage" />
        <exec executable="${project.basedir}/bin/phpunit" passthru="true">
            <arg value="-c" />
            <arg path="${project.basedir}/build" />
        </exec>
    </target>

    <target name="phpcs">
        <exec command="${project.basedir}/bin/phpcs ./src --standard=PSR1,PSR2 -n" passthru="true">
        </exec>
    </target>

    <target name="build:docs" description="Build user documentation">
        <exec executable="make" passthru="true" dir="${project.basedir}/docs">
            <arg value="html" />
        </exec>
    </target>
</project>