PHP Classes

File: vendor/pimple/pimple/.travis.yml

Recommend this page to a friend!
  Classes of Gavin Gordon Markowski   Helphp PHP Class Generator   vendor/pimple/pimple/.travis.yml   Download  
File: vendor/pimple/pimple/.travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Helphp PHP Class Generator
Generate classes from configuration parameters
Author: By
Last change:
Date: 2 years ago
Size: 839 bytes
 

Contents

Class file image Download
language: php env: matrix: - PIMPLE_EXT=no - PIMPLE_EXT=yes global: - REPORT_EXIT_STATUS=1 php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm before_script: - composer self-update - COMPOSER_ROOT_VERSION=dev-master composer dump-autoload - if [ "$PIMPLE_EXT" == "yes" ]; then sh -c "cd ext/pimple && phpize && ./configure && make && sudo make install"; fi - if [ "$PIMPLE_EXT" == "yes" ]; then echo "extension=pimple.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`; fi script: - cd ext/pimple - if [ "$PIMPLE_EXT" == "yes" ]; then yes n | make test | tee output ; grep -E 'Tests failed +. +0' output; fi - cd ../.. - phpunit matrix: exclude: - php: hhvm env: PIMPLE_EXT=yes - php: 7.0 env: PIMPLE_EXT=yes - php: 7.1 env: PIMPLE_EXT=yes