Skip to content

Commit 89df19d

Browse files
authored
Merge pull request #59 from keboola/php81
drop php <8.1
2 parents ed0ccd2 + 26f83b9 commit 89df19d

5 files changed

Lines changed: 10 additions & 138 deletions

File tree

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ RUN /usr/bin/aws s3 cp s3://keboola-drivers/teradata/tdodbc1710-17.10.00.08-1.x8
55
RUN /usr/bin/aws s3 cp s3://keboola-drivers/exasol/EXASOL_ODBC-7.1.10.tar.gz /tmp/exasol/odbc.tar.gz
66

77
FROM php:8.1-cli-buster
8+
MAINTAINER Keboola <devel@keboola.com>
89

910
ARG COMPOSER_FLAGS="--prefer-dist --no-interaction"
1011
ARG DEBIAN_FRONTEND=noninteractive

Dockerfile.74

Lines changed: 0 additions & 127 deletions
This file was deleted.

composer.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
{
22
"name": "keboola/table-backend-utils",
3+
"authors": [
4+
{
5+
"name": "Keboola",
6+
"email": "devel@keboola.com"
7+
}
8+
],
39
"description": "Package allows to import files to Snowflake from multiple cloud storages",
410
"license": "MIT",
511
"require": {
6-
"php": "^7.4|^8",
12+
"php": "^8.1",
713
"ext-json": "*",
814
"ext-odbc": "*",
915
"ext-pdo": "*",
1016
"doctrine/dbal": "^3.3",
1117
"google/cloud-bigquery": "^1.23",
1218
"keboola/common-exceptions": "^1",
13-
"keboola/php-datatypes": "^6.3",
19+
"keboola/php-datatypes": "^6.3|^7",
1420
"keboola/php-utils": "^4.1",
1521
"keboola/retry": "^0.5.0"
1622
},

docker-compose.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,5 @@ services:
4545
privileged: true
4646
volumes:
4747
- exa-volume:/exa
48-
production74:
49-
<<: *prod
50-
build:
51-
context: .
52-
dockerfile: Dockerfile.74
53-
args:
54-
- AWS_ACCESS_KEY_ID
55-
- AWS_SECRET_ACCESS_KEY
5648
volumes:
5749
exa-volume:

docker/xdebug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
FROM keboola/php-db-import-export
22

3-
RUN pecl install xdebug-2.9.8 \
3+
RUN pecl install xdebug \
44
&& docker-php-ext-enable xdebug

0 commit comments

Comments
 (0)