Skip to content

Commit 3258ddd

Browse files
authored
Merge pull request #76 from ydb-platform/tests
Add support of php 7.2
2 parents 05a9021 + c05ec5e commit 3258ddd

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
28-
php-versions: [ '7.4' ]
28+
php-versions: [ '7.2' ]
2929
steps:
3030
- uses: actions/checkout@v3
3131
name: Checkout

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.5.6
2+
3+
* added support of php 7.2
4+
15
## 1.5.5
26

37
* fixed iam auth for PHP < 8.0

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
],
1111
"require": {
12-
"php": ">=7.3",
12+
"php": ">=7.2",
1313
"ext-bcmath": "*",
1414
"ext-curl": "*",
1515
"ext-grpc": "*",

src/Ydb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Ydb
88
{
99
use Traits\LoggerTrait;
1010

11-
const VERSION = '1.5.5';
11+
const VERSION = '1.5.6';
1212

1313
/**
1414
* @var string

0 commit comments

Comments
 (0)