Skip to content

Commit 5307742

Browse files
committed
Add testing against PHP 8.4
1 parent 1ccb793 commit 5307742

File tree

30 files changed

+31
-29
lines changed

30 files changed

+31
-29
lines changed

.github/workflows/test-extensions.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
- "8.1"
3838
- "8.2"
3939
- "8.3"
40+
- "8.4"
4041
operating-system:
4142
- "ubuntu-latest"
4243

@@ -99,4 +100,4 @@ jobs:
99100
run: "composer test -- --group zstd-extension"
100101

101102
- name: "Test Snappy"
102-
run: "composer test -- --group snappy-extension"
103+
run: "composer test -- --group snappy-extension"

.github/workflows/test-suite.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ jobs:
7979
- "8.1"
8080
- "8.2"
8181
- "8.3"
82+
- "8.4"
8283
operating-system:
8384
- "ubuntu-latest"
8485

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"load"
1111
],
1212
"require": {
13-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
13+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
1414
"ext-bcmath": "*",
1515
"ext-dom": "*",
1616
"ext-hash": "*",

src/adapter/etl-adapter-avro/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"adapter"
1212
],
1313
"require": {
14-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
14+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
1515
"ext-json": "*",
1616
"flow-php/etl": "^0.10.0 || 1.x-dev"
1717
},

src/adapter/etl-adapter-chartjs/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"adapter"
1212
],
1313
"require": {
14-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
14+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
1515
"flow-php/etl": "^0.10.0 || 1.x-dev"
1616
},
1717
"config": {

src/adapter/etl-adapter-csv/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"adapter"
1212
],
1313
"require": {
14-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
14+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
1515
"flow-php/etl": "^0.10.0 || 1.x-dev"
1616
},
1717
"config": {

src/adapter/etl-adapter-doctrine/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"loader"
1414
],
1515
"require": {
16-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
16+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
1717
"doctrine/dbal": "^3.6 || ^4.0",
1818
"flow-php/doctrine-dbal-bulk": "^0.10.0 || 1.x-dev",
1919
"flow-php/etl": "^0.10.0 || 1.x-dev"

src/adapter/etl-adapter-elasticsearch/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"adapter"
1212
],
1313
"require": {
14-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
14+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
1515
"ext-hash": "*",
1616
"ext-json": "*",
1717
"elasticsearch/elasticsearch": "^7.6|^8.0",

src/adapter/etl-adapter-google-sheet/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"adapter"
1313
],
1414
"require": {
15-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
15+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
1616
"flow-php/etl": "^0.10.0 || 1.x-dev",
1717
"google/apiclient": "^2.13"
1818
},

src/adapter/etl-adapter-http/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"http"
1111
],
1212
"require": {
13-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
13+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
1414
"ext-json": "*",
1515
"flow-php/etl": "^0.10.0 || 1.x-dev",
1616
"psr/http-client": "^1.0"

0 commit comments

Comments
 (0)