Skip to content

Commit

Permalink
Adding xmlrpc-beta now that 1.0.0RC2 has been released
Browse files Browse the repository at this point in the history
Link: https://pecl.php.net/package/xmlrpc

Note: RC1 had a packaging bug making it unusable, see https://bugs.php.net/bug.php?id=80618

Also, bump to 8.0.1
  • Loading branch information
stronk7 committed Jan 27, 2021
1 parent c95b66b commit 2c80679
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0-apache-buster
FROM php:8.0.1-apache-buster

ADD root/ /
# Fix the original permissions of /tmp, the PHP default upload tmp dir.
Expand Down
9 changes: 2 additions & 7 deletions root/tmp/setup/php-extensions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,8 @@ docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/
docker-php-ext-install -j$(nproc) ldap

# Memcached, MongoDB, Redis, APCu, igbinary, solr, uuid.
pecl install memcached mongodb redis apcu igbinary solr uuid
docker-php-ext-enable memcached mongodb redis apcu igbinary solr uuid

# xmlrpc -- not existing as of 8.0.0 release (not yet @ PECL, https://php.watch/versions/ 8.0#xmlrpc)
# (once available add it to the previous pecl command)
#pecl install xmlrpc
#docker-php-ext-enable xmlrpc
pecl install memcached mongodb redis apcu igbinary solr uuid xmlrpc-beta
docker-php-ext-enable memcached mongodb redis apcu igbinary solr uuid xmlrpc

echo 'apc.enable_cli = On' >> /usr/local/etc/php/conf.d/docker-php-ext-apcu.ini

Expand Down
4 changes: 2 additions & 2 deletions tests/fixtures/test.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
'sodium',
'solr',
'sqlsrv',
'uuid',
'xsl',
// 'xmlrpc', -- not existing as of 8.0.0 release (not yet @ PECL, https://php.watch/versions/8.0#xmlrpc)
'xmlrpc',
'zip',
'uuid'
];

$buffer = '';;
Expand Down

0 comments on commit 2c80679

Please sign in to comment.