fix(envoy package): avoid specified version to support older PHP versions

We need to be able to install envoy for all versions of PHP.

(cherry picked from commit 7458e04d2c8287ed418a3f6cd7b82d9e6238db85)
This commit is contained in:
Pavel Savushkin 2021-03-20 01:45:51 +02:00
parent b9260fbff6
commit 15bf900fe6
No known key found for this signature in database
GPG Key ID: BD2EDA3E125300DD

View File

@ -981,7 +981,7 @@ ARG INSTALL_LARAVEL_ENVOY=false
RUN if [ ${INSTALL_LARAVEL_ENVOY} = true ]; then \
# Install the Laravel Envoy
composer global require "laravel/envoy=~2.0" \
composer global require laravel/envoy \
;fi
###########################################################################