Skip to content

Commit

Permalink
Merge pull request #452 from cytopia/oracle-support
Browse files Browse the repository at this point in the history
Fixes #394 Native Oracle Database support for PHP
  • Loading branch information
cytopia authored Jan 2, 2019
2 parents 5cc0b54 + 39d1e1e commit 40d9bd1
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 144 deletions.
2 changes: 1 addition & 1 deletion .devilbox/www/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


$DEVILBOX_VERSION = 'v0.15';
$DEVILBOX_DATE = '2018-12-31';
$DEVILBOX_DATE = '2019-01-02';
$DEVILBOX_API_PAGE = 'devilbox-api/status.json';

//
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -649,13 +649,15 @@ The Devilbox is a development stack, so it is made sure that a lot of PHP module
| mysql ||| 🗸 | 🗸 | 🗸 | | | | | |
| mysqli || 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 |
| mysqlnd | ||||||||||
| oci8 | | d | d | d | d | d | d | d | d | d |
| openssl |||||||||||
| pcntl | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 |
| pcre |||||||||||
| PDO |||||||||||
| pdo_dblib | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 |
| PDO_Firebird | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 |
| pdo_mysql || 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 |
| PDO_OCI | | | | | | d | d | d | d | d |
| pdo_pgsql | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 |
| pdo_sqlite |||||||||||
| pdo_sqlsrv | | | | | | d | d | d | d | |
Expand Down
34 changes: 0 additions & 34 deletions cfg/php-startup-7.0/03-oracle-oci8-and-pdo_oci.sh-example

This file was deleted.

34 changes: 0 additions & 34 deletions cfg/php-startup-7.1/03-oracle-oci8-and-pdo_oci.sh-example

This file was deleted.

34 changes: 0 additions & 34 deletions cfg/php-startup-7.2/03-oracle-oci8-and-pdo_oci.sh-example

This file was deleted.

34 changes: 0 additions & 34 deletions cfg/php-startup-7.3/03-oracle-oci8-and-pdo_oci.sh-example

This file was deleted.

2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ services:
# PHP
# ------------------------------------------------------------
php:
image: devilbox/php-fpm:${PHP_SERVER}-work-0.64
image: devilbox/php-fpm:${PHP_SERVER}-work-0.65
hostname: php

##
Expand Down
10 changes: 5 additions & 5 deletions docs/configuration-files/env-file.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 | ``pdo_sqlsrv,sqlsrv,rdkafka,swoole`` |
+-------------------------+--------------------------------------+--------------------------------------+
+-------------------------+--------------------------------------+---------------------------------------------------+
| Name | Allowed values | Default value |
+=========================+======================================+===================================================+
| ``PHP_MODULES_DISABLE`` | comma separated list of module names | ``oci8,PDO_OCI,pdo_sqlsrv,sqlsrv,rdkafka,swoole`` |
+-------------------------+--------------------------------------+---------------------------------------------------+

Example:

Expand Down
2 changes: 1 addition & 1 deletion env-example
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ PHP_MODULES_ENABLE=
###
### PHP_MODULES_DISABLE=xdebug,imagick,swoole
###
PHP_MODULES_DISABLE=pdo_sqlsrv,sqlsrv,rdkafka,swoole
PHP_MODULES_DISABLE=oci8,PDO_OCI,pdo_sqlsrv,sqlsrv,rdkafka,swoole


###
Expand Down

0 comments on commit 40d9bd1

Please sign in to comment.