Ei kuvausta

.travis.install.sh 536B

1234567891011121314
  1. set -x
  2. if [ "$TRAVIS_PHP_VERSION" = 'hhvm' ] || [ "$TRAVIS_PHP_VERSION" = 'hhvm-nightly' ] ; then
  3. curl -sS https://getcomposer.org/installer > composer-installer.php
  4. hhvm composer-installer.php
  5. hhvm -v ResourceLimit.SocketDefaultTimeout=30 -v Http.SlowQueryThreshold=30000 composer.phar update --prefer-source
  6. elif [ "$TRAVIS_PHP_VERSION" = '5.3.3' ] ; then
  7. composer self-update
  8. composer update --prefer-source --no-dev
  9. composer dump-autoload
  10. else
  11. composer self-update
  12. composer update --prefer-source
  13. fi