Merge pull request #2896 from PavelSavushkinMix/fix/envoy_package

fix(envoy package): avoid specified version to support older PHP versions
This commit is contained in:
Shao Yu-Lung (Allen) 2021-03-21 21:44:18 +08:00 committed by GitHub
commit 0b75caeb95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
###########################################################################