mirror of
https://github.com/adlawson/php-vfs.git
synced 2024-11-22 04:25:12 +00:00
10 lines
392 B
Bash
Executable File
10 lines
392 B
Bash
Executable File
set -x
|
|
if [ "$TRAVIS_PHP_VERSION" = 'hhvm' ] || [ "$TRAVIS_PHP_VERSION" = 'hhvm-nightly' ]; then
|
|
curl -sS https://getcomposer.org/installer > composer-installer.php
|
|
hhvm composer-installer.php
|
|
hhvm -v ResourceLimit.SocketDefaultTimeout=30 -v Http.SlowQueryThreshold=30000 composer.phar install --prefer-source
|
|
else
|
|
composer self-update
|
|
composer install --prefer-source
|
|
fi
|