Chris@0: #!/usr/bin/env bash Chris@0: Chris@0: set -e Chris@0: Chris@0: cd "${BASH_SOURCE%/*}/.." Chris@0: Chris@0: rm -rf build-vendor Chris@13: rm -f composer-*.lock Chris@0: Chris@0: cp composer.json composer-compat.json Chris@0: Chris@13: if [[ $(php --version) = PHP\ 5.4* ]]; then Chris@13: HOA_VERSION=^2.15 Chris@0: fi Chris@0: Chris@0: COMPOSER=composer-compat.json COMPOSER_VENDOR_DIR=build-vendor \ Chris@0: composer require symfony/intl hoa/console $HOA_VERSION --no-progress --no-update --no-interaction --verbose Chris@0: Chris@0: COMPOSER=composer-compat.json COMPOSER_VENDOR_DIR=build-vendor \ Chris@0: composer update --prefer-stable --no-dev --no-progress --classmap-authoritative --no-interaction --verbose Chris@0: