PHP Classes

File: resources/readme/demo.xml

Recommend this page to a friend!
  Classes of jawira   Phing Build File Visualizer   resources/readme/demo.xml   Download  
File: resources/readme/demo.xml
Role: Documentation
Content type: text/plain
Description: Documentation
Class: Phing Build File Visualizer
Render chart to represent a Phing build process
Author: By
Last change:
Date: 4 years ago
Size: 749 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <project name="My Phing's buildfile" default="test"> <target name="test" depends="test:phpunit, test:composer"> <phingcall target="test:notify"/> </target> <target name="test:composer"> <exec command="composer validate --strict --no-check-lock" passthru="true"/> </target> <target name="test:phpunit"> <exec executable="${phpunit}"/> <phingcall target="test:clean"/> </target> <target name="test:notify"> <notifysend msg="Everything is OK!"/> </target> <target name="test:clean"> <delete dir="${dir.output}" verbose="true"/> </target> <target name="diagnostics"> <diagnostics/> </target> </project>