phing: add page

This commit is contained in:
pxgamer 2018-11-29 15:00:57 +00:00 committed by Agniva De Sarker
parent 38eddd7035
commit cc0a81671c

35
pages/common/phing.md Normal file
View File

@ -0,0 +1,35 @@
# phing
> A PHP build tool based on Apache Ant.
- Perform the default task in the "build.xml" file:
`phing`
- Initialise a new build file:
`phing -i {{path/to/build.xml}}`
- Perform a specific task:
`phing {{task_name}}`
- Specify a custom build file path:
`phing -f {{path/to/build.xml}} {{task_name}}`
- Specify a log file for output:
`phing -b {{path/to/log_file}} {{task_name}}`
- Specify custom properties to use in the build:
`phing -D{{property}}={{value}} {{task_name}}`
- Specify a custom listener class:
`phing -listener {{class_name}} {{task_name}}`
- Build using verbose output:
`phing -verbose {{task_name}}`