Skip to content

Commit f500790

Browse files
authored
Merge pull request #96 from stronk7/7.2-stretch
Add the uuid extension. Some tests use it - 7.2-stretch
2 parents 6169322 + 485dd83 commit f500790

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

root/tmp/setup/php-extensions.sh

+3-3
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"
10+
unixodbc-dev uuid-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
# Memcached, MongoDB, Redis, APCu, igbinary.
62-
pecl install memcached mongodb redis apcu igbinary
63-
docker-php-ext-enable memcached mongodb redis apcu igbinary
62+
pecl install memcached mongodb redis apcu igbinary uuid
63+
docker-php-ext-enable memcached mongodb redis apcu igbinary uuid
6464

6565
# ZIP
6666
docker-php-ext-configure zip --with-libzip

tests/fixtures/test.php

+1
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)