Skip to content

Instantly share code, notes, and snippets.

View frne's full-sized avatar

Frank Neff frne

View GitHub Profile
@frne
frne / build.xml
Last active December 11, 2015 05:48
Make your PHP Build Workflow Env-Independent
<?xml version="1.0" encoding="UTF-8"?>
<project name="build" default="phpunit">
<target name="phpunit" depends="composer-install">
<exec executable="vendor/bin/phpunit" failonerror="true">
<!-- include group unit -->
<arg line="--group unit"/>
<!-- arg for test directory -->
<arg value="./"/>
</exec>