#!/bin/bash set -e set -o pipefail if [[ "$TRAVIS_PHP_VERSION" != "hhvm" && "$TRAVIS_PHP_VERSION" != "hhvm-nightly" ]]; then # install 'event' and 'ev' PHP extension if [[ "$TRAVIS_PHP_VERSION" != "5.3" && "$TRAVIS_PHP_VERSION" != "7.3" ]]; then echo "yes" | pecl install event echo "yes" | pecl install ev fi # install 'libevent' PHP extension (does not support php 7) if [[ "$TRAVIS_PHP_VERSION" != "7.0" && "$TRAVIS_PHP_VERSION" != "7.1" && "$TRAVIS_PHP_VERSION" != "7.2" && "$TRAVIS_PHP_VERSION" != "7.3" ]]; then curl http://pecl.php.net/get/libevent-0.1.0.tgz | tar -xz pushd libevent-0.1.0 phpize ./configure make make install popd echo "extension=libevent.so" >> "$(php -r 'echo php_ini_loaded_file();')" fi # install 'libev' PHP extension (does not support php 7) if [[ "$TRAVIS_PHP_VERSION" != "7.0" && "$TRAVIS_PHP_VERSION" != "7.1" && "$TRAVIS_PHP_VERSION" != "7.2" && "$TRAVIS_PHP_VERSION" != "7.3" ]]; then git clone --recursive https://github.com/m4rw3r/php-libev pushd php-libev phpize ./configure --with-libev make make install popd echo "extension=libev.so" >> "$(php -r 'echo php_ini_loaded_file();')" fi # install 'libuv' PHP extension (does not support php 5) if [[ "$TRAVIS_PHP_VERSION" = "7.0" || "$TRAVIS_PHP_VERSION" = "7.1" || "$TRAVIS_PHP_VERSION" = "7.2" ]]; then echo "yes" | pecl install uv-beta fi fi
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
examples | Folder | 0755 |
|
|
src | Folder | 0755 |
|
|
tests | Folder | 0755 |
|
|
.gitignore | File | 33 B | 0644 |
|
.travis.yml | File | 839 B | 0644 |
|
CHANGELOG.md | File | 11.96 KB | 0644 |
|
LICENSE | File | 1.04 KB | 0644 |
|
README.md | File | 24.98 KB | 0644 |
|
composer.json | File | 731 B | 0644 |
|
phpunit.xml.dist | File | 637 B | 0644 |
|
travis-init.sh | File | 1.59 KB | 0755 |
|