PHP Classes

File: tests/travis.sh

Recommend this page to a friend!
  Classes of Scott Arciszewski   PHP Sodium Compat   tests/travis.sh   Download  
File: tests/travis.sh
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Sodium Compat
Cryptographic functions of libsodium in pure PHP
Author: By
Last change:
Date: 4 years ago
Size: 566 bytes
 

Contents

Class file image Download
#!/usr/bin/env bash vendor/bin/phpunit EXITCOMMAND=$? if [[ "$EXITCOMMAND" -ne 0 ]]; then exit $EXITCOMMAND; fi vendor/bin/phpunit --bootstrap autoload-fast.php EXITCOMMAND=$? if [[ "$EXITCOMMAND" -ne 0 ]]; then exit $EXITCOMMAND; fi if [[ $CHECK_MBSTRING -eq 1 ]]; then php -dmbstring.func_overload=7 vendor/bin/phpunit EXITCOMMAND=$? if [[ "$EXITCOMMAND" -ne 0 ]]; then exit $EXITCOMMAND; fi php -dmbstring.func_overload=7 vendor/bin/phpunit --bootstrap autoload-fast.php EXITCOMMAND=$? if [[ "$EXITCOMMAND" -ne 0 ]]; then exit $EXITCOMMAND; fi fi