Merge pull request #1402 from bestlong/workspace-php72-prestissimo

Support Prestissimo
This commit is contained in:
Yu-Lung Shao (Allen) 2018-02-27 09:12:01 +08:00 committed by GitHub
commit a797d67f14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -471,6 +471,19 @@ RUN if [ ${INSTALL_DEPLOYER} = true ]; then \
chmod +x /usr/local/bin/dep \ chmod +x /usr/local/bin/dep \
;fi ;fi
#####################################
# Prestissimo:
#####################################
USER laradock
ARG INSTALL_PRESTISSIMO=false
ENV INSTALL_PRESTISSIMO ${INSTALL_PRESTISSIMO}
RUN if [ ${INSTALL_PRESTISSIMO} = true ]; then \
# Install Prestissimo
composer global require "hirak/prestissimo" \
;fi
##################################### #####################################
# Linuxbrew: # Linuxbrew:
##################################### #####################################