From bbd232d26005e3b4c3da17975f3f3443c7770d42 Mon Sep 17 00:00:00 2001 From: Dan Cryer Date: Thu, 17 Oct 2013 02:19:51 -0700 Subject: [PATCH] Created Phing Plugin (markdown) --- Phing-Plugin.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Phing-Plugin.md diff --git a/Phing-Plugin.md b/Phing-Plugin.md new file mode 100644 index 0000000..f29793a --- /dev/null +++ b/Phing-Plugin.md @@ -0,0 +1,20 @@ +# Phing Plugin + +This plugin allows you to use the Phing build system to build your project. + +### Configuration options: +* **directory** - Relative path to the directory in which you want to run phing. +* **build_file** - Your phing build.xml file. +* **targets** - Which build targets you want to run. +* **properties** - Any custom properties you wish to pass to phing. +* **property_file** - A file containing properties you wish to pass to phing. + +### Sample config: +```yml +phing: + build_file: 'build.xml' + targets: + - "build:test" + properties: + config_file: "PHPCI" +``` \ No newline at end of file