Forrest logo
back to context overview

phing

List of commands for phing:

  • phing:tldr:53d8f phing: Initialize a new build file.
    $ phing -i ${path-to-build-xml}
    try on your machine
    explain this command
  • phing:tldr:6fad4 phing: Specify a custom build file path.
    $ phing -f ${path-to-build-xml} ${task_name}
    try on your machine
    explain this command
  • phing:tldr:8c1b3 phing: Specify custom properties to use in the build.
    $ phing -D${property}=${value} ${task_name}
    try on your machine
    explain this command
  • phing:tldr:a0721 phing: Specify a custom listener class.
    $ phing -listener ${class_name} ${task_name}
    try on your machine
    explain this command
  • phing:tldr:a952b phing: Specify a log file to output to.
    $ phing -b ${path-to-log_file} ${task_name}
    try on your machine
    explain this command
  • phing:tldr:cdd2e phing: Perform the default task in the `build.xml` file.
    $ phing
    try on your machine
    explain this command
  • phing:tldr:cf631 phing: Build using verbose output.
    $ phing -verbose ${task_name}
    try on your machine
    explain this command
  • phing:tldr:d325a phing: Perform a specific task.
    $ phing ${task_name}
    try on your machine
    explain this command
back to context overview