Skip to content

Commit c064cb2

Browse files
authored
Merge pull request #95 from stronk7/7.1-buster
Add the uuid extension. Some tests use it - 7.1-buster
2 parents 5458342 + 4adb6de commit c064cb2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

root/tmp/setup/php-extensions.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ echo "Installing apt dependencies"
77
# Build packages will be added during the build, but will be removed at the end.
88
BUILD_PACKAGES="gettext gnupg libcurl4-openssl-dev libfreetype6-dev libicu-dev libjpeg62-turbo-dev \
99
libldap2-dev libmariadbclient-dev libmemcached-dev libpng-dev libpq-dev libxml2-dev libxslt-dev \
10-
unixodbc-dev zlib1g-dev"
10+
unixodbc-dev uuid-dev zlib1g-dev"
1111

1212
# Packages for Postgres.
1313
PACKAGES_POSTGRES="libpq5"
@@ -59,8 +59,8 @@ docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/
5959
docker-php-ext-install -j$(nproc) ldap
6060

6161
# SOLR, Memcached, Redis, APCu, igbinary.
62-
pecl install solr memcached mongodb redis apcu igbinary
63-
docker-php-ext-enable solr memcached mongodb redis apcu igbinary
62+
pecl install solr memcached mongodb redis apcu igbinary uuid
63+
docker-php-ext-enable solr memcached mongodb redis apcu igbinary uuid
6464

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

tests/fixtures/test.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
'xsl',
1919
'xmlrpc',
2020
'zip',
21+
'uuid'
2122
];
2223

2324
$buffer = '';;

0 commit comments

Comments
 (0)