mirror of
https://github.com/halaxa/json-machine.git
synced 2025-01-18 05:28:14 +01:00
11 lines
188 B
Bash
Executable File
11 lines
188 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
if [ $(php -r "echo PHP_VERSION_ID;") -lt 70200 ]
|
|
then
|
|
set -x
|
|
COMPOSER=build/composer-lt-7.2.json composer --quiet update
|
|
else
|
|
set -x
|
|
composer --quiet update
|
|
fi
|