From 6e238cc095794a22a52b7b876842e6704bdf708b Mon Sep 17 00:00:00 2001 From: cytopia Date: Sun, 23 Dec 2018 12:19:38 +0100 Subject: [PATCH] Refs #439 Adding sqlsrv and pdo_sqlsrv for PHP 7.0, 7.1, 7.2 and 7.3 --- .devilbox/www/config.php | 2 +- README.md | 2 +- docker-compose.yml | 2 +- docs/configuration-files/env-file.rst | 10 +++++----- env-example | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.devilbox/www/config.php b/.devilbox/www/config.php index 2b01fe46..5e4c3265 100644 --- a/.devilbox/www/config.php +++ b/.devilbox/www/config.php @@ -14,7 +14,7 @@ putenv('RES_OPTIONS=retrans:1 retry:1 timeout:1 attempts:1'); $DEVILBOX_VERSION = 'v0.15'; -$DEVILBOX_DATE = '2018-12-22'; +$DEVILBOX_DATE = '2018-12-23'; $DEVILBOX_API_PAGE = 'devilbox-api/status.json'; // diff --git a/README.md b/README.md index e90df517..261e1287 100644 --- a/README.md +++ b/README.md @@ -592,7 +592,7 @@ Well-known and popular tools will be at your service as well: The Devilbox is a development stack, so it is made sure that a lot of PHP modules are available out of the box in order to work with many different frameworks. -> *amqp, 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, memcache, memcached, mongodb, msgpack, mysqli, mysqlnd, openssl, pcntl, pcre, PDO, pdo_dblib, PDO_Firebird, pdo_mysql, pdo_pgsql, pdo_sqlite, pgsql, phalcon, 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* +> *amqp, apc, apcu, bcmath, bz2, calendar, Core, ctype, curl, date, dba, dom, enchant, ereg, exif, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, igbinary, imagick, imap, interbase, intl, ioncube, json, ldap, libxml, mbstring, mcrypt, memcache, memcached, mhash, mongo, mongodb, msgpack, mysql, mysqli, mysqlnd, openssl, pcntl, pcre, PDO, pdo_dblib, PDO_Firebird, pdo_mysql, pdo_pgsql, pdo_sqlite, pdo_sqlsrv, pgsql, phalcon, Phar, posix, pspell, rdkafka, readline, recode, redis, Reflection, session, shmop, SimpleXML, snmp, soap, sockets, sodium, SPL, SQLite, sqlite3, sqlsrv, standard, swoole, sysvmsg, sysvsem, sysvshm, tidy, tokenizer, uploadprogress, wddx, xdebug, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend OPcache, zip, zlib* PHP modules can be enabled or disabled on demand to reflect the state of your target environment. diff --git a/docker-compose.yml b/docker-compose.yml index aff739fd..638e5c1a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -95,7 +95,7 @@ services: # PHP / HHVM # ------------------------------------------------------------ php: - image: devilbox/php-fpm:${PHP_SERVER}-work-0.57 + image: devilbox/php-fpm:${PHP_SERVER}-work-0.58 ## ## All .env variables diff --git a/docs/configuration-files/env-file.rst b/docs/configuration-files/env-file.rst index a272f113..fc1690b0 100644 --- a/docs/configuration-files/env-file.rst +++ b/docs/configuration-files/env-file.rst @@ -1201,11 +1201,11 @@ PHP_MODULES_DISABLE Disable any PHP modules in a comma separated list. -+-------------------------+--------------------------------------+--------------------+ -| Name | Allowed values | Default value | -+=========================+======================================+====================+ -| ``PHP_MODULES_DISABLE`` | comma separated list of module names | ``rdkafka,swoole`` | -+-------------------------+--------------------------------------+--------------------+ ++-------------------------+--------------------------------------+--------------------------------------+ +| Name | Allowed values | Default value | ++=========================+======================================+======================================+ +| ``PHP_MODULES_DISABLE`` | comma separated list of module names | ``pdo_sqlsrv,sqlsrv,rdkafka,swoole`` | ++-------------------------+--------------------------------------+--------------------------------------+ Example: diff --git a/env-example b/env-example index 0629b515..760b58c3 100644 --- a/env-example +++ b/env-example @@ -472,7 +472,7 @@ PHP_MODULES_ENABLE= ### ### PHP_MODULES_DISABLE=xdebug,imagick,swoole ### -PHP_MODULES_DISABLE=rdkafka,swoole +PHP_MODULES_DISABLE=pdo_sqlsrv,sqlsrv,rdkafka,swoole ###