php-censor/docs/en/plugins/phing.md

27 lines
625 B
Markdown
Raw Permalink Normal View History

2016-07-19 11:12:28 +02:00
Plugin Phing
2017-01-04 13:22:20 +01:00
============
2016-07-19 11:12:28 +02:00
2016-07-17 16:20:35 +02:00
This plugin allows you to use the Phing build system to build your project.
2016-07-19 11:12:28 +02:00
Configuration
2017-01-04 13:22:20 +01:00
-------------
2016-07-19 11:12:28 +02:00
### Options
2016-07-17 16:20:35 +02:00
* **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.
2016-07-19 11:12:28 +02:00
### Examples
2016-07-17 16:20:35 +02:00
```yml
phing:
build_file: 'build.xml'
targets:
- "build:test"
properties:
config_file: "php-censor"
2016-07-17 16:20:35 +02:00
```