Skip to content

Commit 050322c

Browse files
authored
Merge pull request #171 from devilbox/release-0.111
Release v0.111
2 parents 9e24730 + 5227af8 commit 050322c

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
## Unreleased
55

66

7+
## Release 0.111
8+
9+
#### Added
10+
- Added xdebug for PHP 8.0
11+
12+
713
## Release 0.110
814

915
#### Fixed

Dockerfiles/mods/Dockerfile-8.0

+18
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,22 @@ RUN set -eux \
413413
&& true
414414

415415

416+
# -------------------- Installing PHP Extension: xdebug --------------------
417+
RUN set -eux \
418+
# Installation: Version specific
419+
# Type: GIT extension
420+
&& git clone https://github.com/xdebug/xdebug /tmp/xdebug \
421+
&& cd /tmp/xdebug \
422+
# Default: Install command
423+
&& phpize \
424+
&& ./configure --enable-xdebug \
425+
&& make -j$(getconf _NPROCESSORS_ONLN) \
426+
&& make install \
427+
# Enabling
428+
&& docker-php-ext-enable xdebug \
429+
&& true
430+
431+
416432
# -------------------- Installing PHP Extension: xsl --------------------
417433
RUN set -eux \
418434
# Installation: Generic
@@ -659,6 +675,8 @@ RUN set -eux \
659675
&& php-fpm -m | grep -oiE '^tidy$' \
660676
&& php -m | grep -oiE '^tokenizer$' \
661677
&& php-fpm -m | grep -oiE '^tokenizer$' \
678+
&& php -m | grep -oiE '^xdebug$' \
679+
&& php-fpm -m | grep -oiE '^xdebug$' \
662680
&& php -m | grep -oiE '^xml$' \
663681
&& php-fpm -m | grep -oiE '^xml$' \
664682
&& php -m | grep -oiE '^xmlreader$' \

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ Check out this table to see which Docker image provides what PHP modules.
652652
<tr>
653653
<th>8.0</th>
654654
<td id="80-base">Core, ctype, curl, date, dom, FFI, fileinfo, filter, ftp, hash, iconv, json, libxml, mbstring, mysqlnd, openssl, pcre, PDO, pdo_sqlite, Phar, posix, readline, Reflection, session, SimpleXML, sodium, SPL, sqlite3, standard, tokenizer, xml, xmlreader, xmlwriter, zlib</td>
655-
<td id="80-mods">bcmath, bz2, calendar, Core, ctype, curl, date, dba, dom, enchant, exif, FFI, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, intl, json, ldap, libxml, mbstring, memcached, mysqli, mysqlnd, oci8, openssl, pcntl, pcre, PDO, pdo_dblib, PDO_Firebird, pdo_mysql, PDO_OCI, pdo_pgsql, pdo_sqlite, pgsql, Phar, posix, pspell, readline, redis, Reflection, session, shmop, SimpleXML, snmp, soap, sockets, sodium, SPL, sqlite3, standard, sysvmsg, sysvsem, sysvshm, tidy, tokenizer, xml, xmlreader, xmlwriter, xsl, Zend OPcache, zip, zlib</td>
655+
<td id="80-mods">bcmath, bz2, calendar, Core, ctype, curl, date, dba, dom, enchant, exif, FFI, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, intl, json, ldap, libxml, mbstring, memcached, mysqli, mysqlnd, oci8, openssl, pcntl, pcre, PDO, pdo_dblib, PDO_Firebird, pdo_mysql, PDO_OCI, pdo_pgsql, pdo_sqlite, pgsql, Phar, posix, pspell, readline, redis, Reflection, session, shmop, SimpleXML, snmp, soap, sockets, sodium, SPL, sqlite3, standard, sysvmsg, sysvsem, sysvshm, tidy, tokenizer, xdebug, xml, xmlreader, xmlwriter, xsl, Zend OPcache, zip, zlib</td>
656656
</tr>
657657
</tbody>
658658
</table>

build/ansible/group_vars/all/mods.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ extensions_available:
10231023
configure: --with-libxml-dir=/usr
10241024
build_dep: [libxml2-dev]
10251025
xdebug:
1026-
disabled: [8.0]
1026+
disabled: []
10271027
5.2:
10281028
type: pecl
10291029
version: 2.2.7
@@ -1042,6 +1042,10 @@ extensions_available:
10421042
7.0:
10431043
type: pecl
10441044
version: 2.9.0
1045+
8.0:
1046+
type: git
1047+
git_url: https://github.com/xdebug/xdebug
1048+
configure: --enable-xdebug
10451049
all:
10461050
type: pecl
10471051
xml:

0 commit comments

Comments
 (0)