File tree 3 files changed +12
-0
lines changed
3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,11 @@ RUN set -eux; \
41
41
# Composer
42
42
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer \
43
43
{% 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 %}
44
49
{% if 'cli' == php_type %}
45
50
{% if true == install_postgres_client %}
46
51
&& apk add --no-cache \
Original file line number Diff line number Diff line change @@ -87,6 +87,12 @@ command:
87
87
- "Composer version"
88
88
exit-status: 0
89
89
{% endif %}
90
+ {% if true == install_phive %}
91
+ "phive --version":
92
+ stdout:
93
+ - "Phive 0."
94
+ exit-status: 0
95
+ {% endif %}
90
96
{% if true == install_faketime %}
91
97
"cat /etc/ld.so.preload":
92
98
stdout:
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ ext_pecl_enabled:
48
48
- pdo_sqlsrv
49
49
50
50
install_composer : true
51
+ install_phive : true
51
52
install_faketime : true
52
53
53
54
install_postgres_client : false
You can’t perform that action at this time.
0 commit comments