Files
provision_sccp/build.xml
Diederik de Groot 729dccb7f8 Fix UnitTests
Split ResolveResult from Resolve.php
Split up Device.php

Signed-off-by: Diederik de Groot <ddegroot@talon.nl>
2020-03-22 14:06:33 +01:00

37 lines
871 B
XML

<?xml version="1.0"?>
<!-- phing build file -->
<project
name="provision_sccp"
default="build"
basedir="."
description="SCCP/Skinny Provisioner">
<target name="install">
<exec command="./composer.phar install" checkreturn="true" passthru="true"/>
<exec command="./composer.phar update" checkreturn="true" passthru="true"/>
</target>
<target name="clean">
<delete dir="build"/>
</target>
<target name="prepare">
<mkdir dir="build" mode="0755"/>
</target>
<target name="fixstyle">
<exec command="phpcbf --tab-width=4 --standard=PSR2 src test"
checkreturn="true"
passthru="false"/>
</target>
<target name="test">
<exec command="vendor/phpunit/phpunit/phpunit -v --debug tests"
checkreturn="true"
passthru="true"/>
</target>
<target name="build" depends="clean, prepare, test"/>
</project>