PHP Classes

File: support/testv

Recommend this page to a friend!
  Classes of Daniele Orlando   FluidXML   support/testv   Download  
File: support/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: 1 month ago
Size: 675 bytes
 

 

Contents

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