PHP Classes

File: support/tools/testv

Recommend this page to a friend!
  Classes of Daniele Orlando   FluidXML   support/tools/testv   Download  
File: support/tools/testv
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: FluidXML
Manipulate XML documents using a fluent interface
Author: By
Last change:
Date: 8 years ago
Size: 678 bytes
 

Contents

Class file image Download
#!/usr/bin/env sh cd "$(dirname "$0")" . "./.common.sh" cd ../.. tester="./support/tools/test" if ! chkcmd 'brew'; then echo ' "brew" command not found.' echo ' Skipping version based testing for PHP {5.6, 7}.' "$tester" else brew unlink php56 php70 > /dev/null \ && brew link php56 > /dev/null \ && printf "\nTesting against PHP 5.6\n" \ && "$tester" \ && clear \ && brew unlink php56 > /dev/null \ && brew link php70 > /dev/null \ && printf "\nTesting against PHP 7.0\n" \ && "$tester" fi