Skip to content

Commit f90a353

Browse files
authored
Merge pull request #68 from devilbox/release-0.53
Add xdebug to PHP-FPM 7.3
2 parents a2d4325 + 59ecc5d commit f90a353

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Dockerfiles/mods/Dockerfile-7.3

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,12 @@ RUN set -x \
349349
&& (rm -rf /usr/local/lib/php/test/wddx || true) \
350350
&& (rm -rf /usr/local/lib/php/doc/wddx || true) \
351351
\
352+
# ---- Installing PHP Extension: xdebug ----
353+
&& pecl install xdebug-2.7.0beta1 \
354+
&& docker-php-ext-enable xdebug \
355+
&& (rm -rf /usr/local/lib/php/test/xdebug || true) \
356+
&& (rm -rf /usr/local/lib/php/doc/xdebug || true) \
357+
\
352358
# ---- Installing PHP Extension: xmlrpc ----
353359
&& /usr/local/bin/docker-php-ext-configure xmlrpc --with-libxml-dir=/usr --with-iconv-dir=/usr \
354360
&& /usr/local/bin/docker-php-ext-install -j$(getconf _NPROCESSORS_ONLN) xmlrpc \
@@ -531,6 +537,8 @@ RUN set -x \
531537
&& php-fpm -m | grep -oiE '^uploadprogress$' \
532538
&& php -m | grep -oiE '^wddx$' \
533539
&& php-fpm -m | grep -oiE '^wddx$' \
540+
&& php -m | grep -oiE '^xdebug$' \
541+
&& php-fpm -m | grep -oiE '^xdebug$' \
534542
&& php -m | grep -oiE '^xml$' \
535543
&& php-fpm -m | grep -oiE '^xml$' \
536544
&& php -m | grep -oiE '^xmlreader$' \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ Check out this table to see which Docker image provides what PHP modules.
566566
<tr>
567567
<th>7.3</th>
568568
<td id="73-base">Core, ctype, curl, date, dom, 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>
569-
<td id="73-mods">apcu, bcmath, bz2, calendar, Core, ctype, curl, date, dba, dom, enchant, exif, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, igbinary, imagick, imap, interbase, intl, json, ldap, libxml, mbstring, mcrypt, memcached, mongodb, mysqli, mysqlnd, openssl, pcntl, pcre, PDO, pdo_dblib, PDO_Firebird, pdo_mysql, pdo_pgsql, pdo_sqlite, pgsql, Phar, posix, pspell, rdkafka, readline, recode, redis, Reflection, session, shmop, SimpleXML, snmp, soap, sockets, sodium, SPL, sqlite3, standard, swoole, sysvmsg, sysvsem, sysvshm, tidy, tokenizer, uploadprogress, wddx, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend OPcache, zip, zlib</td>
569+
<td id="73-mods">apcu, bcmath, bz2, calendar, Core, ctype, curl, date, dba, dom, enchant, exif, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, igbinary, imagick, imap, interbase, intl, json, ldap, libxml, mbstring, mcrypt, memcached, mongodb, mysqli, mysqlnd, openssl, pcntl, pcre, PDO, pdo_dblib, PDO_Firebird, pdo_mysql, pdo_pgsql, pdo_sqlite, pgsql, Phar, posix, pspell, rdkafka, readline, recode, redis, Reflection, session, shmop, SimpleXML, snmp, soap, sockets, sodium, SPL, sqlite3, standard, swoole, sysvmsg, sysvsem, sysvshm, tidy, tokenizer, uploadprogress, wddx, xdebug, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend OPcache, zip, zlib</td>
570570
</tr>
571571
<tr>
572572
<th>7.4</th>

build/ansible/group_vars/all.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1433,7 +1433,7 @@ extensions_available:
14331433
configure: --with-libxml-dir=/usr
14341434
build_dep: [libxml2-dev]
14351435
xdebug:
1436-
disabled: [7.3, 7.4]
1436+
disabled: [7.4]
14371437
5.2:
14381438
type: pecl
14391439
version: 2.2.7
@@ -1449,6 +1449,9 @@ extensions_available:
14491449
5.6:
14501450
type: pecl
14511451
version: 2.4.1
1452+
7.3:
1453+
type: pecl
1454+
version: 2.7.0beta1
14521455
all:
14531456
type: pecl
14541457
xml:

0 commit comments

Comments
 (0)