HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/slenders.komma.pro/vendor/lstrojny/functional-php/build.xml
<?xml version="1.0"?>
<project name="functional-php" default="build">
    <target name="build" description="Run CI jobs" depends="clean,prepare,phpunit"/>

    <target name="clean">
        <delete dir="${basedir}/build/" includes="**/*" excludes="**/.gitkeep"/>
        <mkdir dir="${basedir}/build/logs/"/>
        <mkdir dir="${basedir}/build/coverage/"/>
    </target>

    <target name="prepare">
        <get src="http://getcomposer.org/composer.phar" dest="build/composer.phar"/>
        <exec executable="php" failonerror="true">
            <arg value="build/composer.phar"/> 
            <arg value="install"/>
            <arg value="--dev"/>
        </exec>
    </target>

    <target name="phpunit">
        <exec executable="phpunit" failonerror="true"/>
    </target>
</project>