When working with Phing, you can use the input task to request user input. <?xml version="1.0" encoding="UTF-8"?> <project name="test-deploy-ci" default="default"> <target name="default"> <input message="Please enter a value:" propertyName="value.entered"/> <echo msg="You entered: ${value.entered}"/> </target> </project> When you run this Phing build file,…
Read more ›
