Skip to content

Commit 1316814

Browse files
committed
Removed support of PHP 7.4
1 parent fef964f commit 1316814

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.buildkite/pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ steps:
55
env:
66
PHP_VERSION: "{{ matrix.php }}"
77
TEST_SUITE: "{{ matrix.suite }}"
8-
STACK_VERSION: 8.10-SNAPSHOT
8+
STACK_VERSION: 8.12-SNAPSHOT
99
matrix:
1010
setup:
1111
suite:
1212
- "free"
1313
- "platinum"
1414
php:
15+
- "8.3-cli"
1516
- "8.2-cli"
1617
- "8.1-cli"
1718
- "8.0-cli"
18-
- "7.4-cli"
1919
command: ./.buildkite/run-tests
2020
artifact_paths: "*.xml"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "library",
1111
"license": "MIT",
1212
"require": {
13-
"php": "^7.4 || ^8.0",
13+
"php": "^8.0",
1414
"elastic/transport": "^8.8",
1515
"psr/http-client": "^1.0",
1616
"psr/http-message": "^1.1 || ^2.0",

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
final class Client implements ClientInterface
2929
{
3030
const CLIENT_NAME = 'es';
31-
const VERSION = '8.11.0';
31+
const VERSION = '8.12.0';
3232
const API_COMPATIBILITY_HEADER = '%s/vnd.elasticsearch+%s; compatible-with=8';
3333

3434
use ClientEndpointsTrait;

0 commit comments

Comments
 (0)