Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix version php_modules/pdo_sqlsrv & php_modules/sqlsrv for php 7.4 #276

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .ansible/group_vars/all/mods.yml
Original file line number Diff line number Diff line change
Expand Up @@ -931,6 +931,9 @@ extensions_available:
type: pecl
build_dep: [unixodbc-dev]
run_dep: [unixodbc]
7.4:
type: pecl
version: 5.10.1
7.3:
type: pecl
version: 5.9.0
Expand Down Expand Up @@ -1136,6 +1139,9 @@ extensions_available:
type: pecl
build_dep: [unixodbc-dev]
run_dep: [unixodbc]
7.4:
type: pecl
version: 5.10.1
7.3:
type: pecl
version: 5.9.0
Expand Down
8 changes: 4 additions & 4 deletions Dockerfiles/mods/Dockerfile-7.4
Original file line number Diff line number Diff line change
Expand Up @@ -545,10 +545,10 @@ RUN set -eux \

# -------------------- Installing PHP Extension: pdo_sqlsrv --------------------
RUN set -eux \
# Installation: Generic
# Installation: Version specific
# Type: PECL extension
# Default: Pecl command
&& pecl install pdo_sqlsrv \
&& pecl install pdo_sqlsrv-5.10.1 \
# Enabling
&& docker-php-ext-enable pdo_sqlsrv \
&& true
Expand Down Expand Up @@ -633,10 +633,10 @@ phpize \

# -------------------- Installing PHP Extension: sqlsrv --------------------
RUN set -eux \
# Installation: Generic
# Installation: Version specific
# Type: PECL extension
# Default: Pecl command
&& pecl install sqlsrv \
&& pecl install sqlsrv-5.10.1 \
# Enabling
&& docker-php-ext-enable sqlsrv \
&& true
Expand Down
4 changes: 4 additions & 0 deletions php_modules/pdo_sqlsrv/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ all:
build_dep: [unixodbc-dev]
run_dep: [unixodbc]

7.4:
type: pecl
version: 5.10.1

7.3:
type: pecl
version: 5.9.0
Expand Down
4 changes: 4 additions & 0 deletions php_modules/sqlsrv/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ all:
build_dep: [unixodbc-dev]
run_dep: [unixodbc]

7.4:
type: pecl
version: 5.10.1

7.3:
type: pecl
version: 5.9.0
Expand Down
Loading