mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-25 05:59:07 +00:00
10 lines
437 B
Bash
10 lines
437 B
Bash
if [[ "${TRAVIS_PHP_VERSION}" == "5.4" ]]; then
|
|
php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &
|
|
elif [[ "${TRAVIS_PHP_VERSION}" == "5.5" ]]; then
|
|
php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &
|
|
elif [[ "${TRAVIS_PHP_VERSION}" == "5.6" ]]; then
|
|
php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &
|
|
elif [[ "${TRAVIS_PHP_VERSION}" == "hhvm" ]]; then
|
|
cd tests && hhvm --mode server --port 8000 --config PHPCurlClass/server.hdf &
|
|
fi
|