Skip to content

Commit d910978

Browse files
chore: run the project on PHP 8.5
1 parent 70a6675 commit d910978

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
php: ['8.1', '8.2', '8.3', '8.4']
46+
php: ['8.1', '8.2', '8.3', '8.4', '8.5']
4747
postgis: ['3.4', '3.5', '3.6']
4848
postgres: ['16', '17', '18']
4949
exclude:

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
php: ['8.1', '8.2', '8.3', '8.4']
46+
php: ['8.1', '8.2', '8.3', '8.4', '8.5']
4747
doctrine-lexer: ['2.1', '3.0', 'latest']
4848
doctrine-orm: ['2.14', '2.18', '3.0', 'latest']
4949
include:

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838

3939
"require": {
40-
"php": "^8.1",
40+
"php": "^8.1 <8.6",
4141
"ext-ctype": "*",
4242
"ext-json": "*",
4343
"ext-mbstring": "*",
@@ -57,7 +57,7 @@
5757
"symfony/cache": "^6.4||^7.0"
5858
},
5959
"suggest": {
60-
"php": "^8.3",
60+
"php": "^8.4",
6161
"doctrine/orm": "~2.14||~3.0"
6262
},
6363

tests/Unit/MartinGeorgiev/Utils/PHPArrayToPostgresValueTransformerTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,5 @@ public function can_transform_array_with_gd_resource(): void
260260
$resource = \imagecreatetruecolor(1, 1);
261261
$result = PHPArrayToPostgresValueTransformer::transformToPostgresTextArray([$resource]);
262262
$this->assertStringContainsString('GdImage', $result);
263-
\imagedestroy($resource);
264263
}
265264
}

0 commit comments

Comments
 (0)