File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,11 @@ RUN set -eux; \
4141 # Composer
4242 && curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer \
4343{% endif %}
44+ {% if true == install_phive %}
45+ # Phive
46+ && curl -sSL https://phar.io/releases/phive.phar -o /usr/local/bin/phive \
47+ && chmod +x /usr/local/bin/phive \
48+ {% endif %}
4449{% if 'cli' == php_type %}
4550{% if true == install_postgres_client %}
4651 && apk add --no-cache \
Original file line number Diff line number Diff line change @@ -87,6 +87,12 @@ command:
8787 - "Composer version"
8888 exit-status: 0
8989{% endif %}
90+ {% if true == install_phive %}
91+ "phive --version":
92+ stdout:
93+ - "Phive 0."
94+ exit-status: 0
95+ {% endif %}
9096{% if true == install_faketime %}
9197 "cat /etc/ld.so.preload":
9298 stdout:
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ ext_pecl_enabled:
4848 - pdo_sqlsrv
4949
5050install_composer : true
51+ install_phive : true
5152install_faketime : true
5253
5354install_postgres_client : false
You can’t perform that action at this time.
0 commit comments