Skip to content

Commit

Permalink
Merge pull request #95 from stronk7/7.1-buster
Browse files Browse the repository at this point in the history
Add the uuid extension. Some tests use it - 7.1-buster
  • Loading branch information
stronk7 authored Oct 9, 2019
2 parents 5458342 + 4adb6de commit c064cb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions root/tmp/setup/php-extensions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ echo "Installing apt dependencies"
# Build packages will be added during the build, but will be removed at the end.
BUILD_PACKAGES="gettext gnupg libcurl4-openssl-dev libfreetype6-dev libicu-dev libjpeg62-turbo-dev \
libldap2-dev libmariadbclient-dev libmemcached-dev libpng-dev libpq-dev libxml2-dev libxslt-dev \
unixodbc-dev zlib1g-dev"
unixodbc-dev uuid-dev zlib1g-dev"

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

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

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

Expand Down
1 change: 1 addition & 0 deletions tests/fixtures/test.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
'xsl',
'xmlrpc',
'zip',
'uuid'
];

$buffer = '';;
Expand Down

0 comments on commit c064cb2

Please sign in to comment.