diff options
author | ctrlaltca <> | 2012-11-18 17:18:54 +0000 |
---|---|---|
committer | ctrlaltca <> | 2012-11-18 17:18:54 +0000 |
commit | cfd546c6b3240bd9d1ef34a9f6201b360fac3261 (patch) | |
tree | 626b0885f54cc5a066e92b3d6b4307756ace09c2 /buildscripts/phing/README.md | |
parent | 17139224a1f1f2bbdcc1f1a98cb20f60a12bdfab (diff) |
update ping. Part 2: added ping 2.4.12, fixed caller script
Diffstat (limited to 'buildscripts/phing/README.md')
-rw-r--r-- | buildscripts/phing/README.md | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/buildscripts/phing/README.md b/buildscripts/phing/README.md new file mode 100644 index 00000000..91c9d0e4 --- /dev/null +++ b/buildscripts/phing/README.md @@ -0,0 +1,64 @@ +P H I N G +========================= + + + (PH)ing (I)s (N)ot (G)NU make; it's a PHP project build system or build + tool based on Apache Ant. You can do anything with it that you could do + with a traditional build system like GNU make, and its use of simple XML + build files and extensible PHP "task" classes make it an easy-to-use and + highly flexible build framework. + + Features include running PHPUnit and SimpleTest unit tests (including test + result and coverage reports), file transformations (e.g. token replacement, + XSLT transformation, Smarty template transformations), + file system operations, interactive build support, SQL execution, + CVS/SVN/GIT operations, tools for creating PEAR packages, documentation + generation (DocBlox, PhpDocumentor) and much, much more. + + If you find yourself writing custom scripts to handle the packaging, + deploying, or testing of your applications, then we suggest looking at Phing. + Phing comes packaged with numerous out-of-the-box operation modules (tasks), + and an easy-to-use OO model to extend or add your own custom tasks. + + Phing provides the following features: + + * Simple XML buildfiles + * Rich set of provided tasks + * Easily extendable via PHP classes + * Platform-independent: works on UNIX, Windows, Mac OSX + * No required external dependencies + * Built for PHP5 + +The Latest Version +------------------ + + Details of the latest version can be found on the Phing homepage + <http://www.phing.info/>. + +Installation +------------ + + The preferred method to install Phing is through PEAR and the Phing PEAR + channel. You can install Phing by adding the pear.phing.info channel + to your PEAR environment and then installing Phing using the *phing* + channel alias and *phing* package name: + + $> pear channel-discover pear.phing.info + $> pear install [--alldeps] phing/phing + +Documentation +------------- + + Documentation is available in HTML format in the *docs* directory. In particular, + open the *docs/phing_guide/book/index.html* in a browser to see the + Phing User Guide. + + For online documentation, you can also visit the Phing website: http://www.phing.info/ + +Licensing +--------- + + This software is licensed under the terms you may find in the file + named "LICENSE" in this directory. + + Thank you for using PHING! |