Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
fail-fast: ${{ github.event_name == 'pull_request' }}
matrix:
php: ['8.1', '8.2', '8.3', '8.4', '8.5']
php: ['8.2', '8.3', '8.4', '8.5']
postgis: ['3.4', '3.5', '3.6']
postgres: ['16', '17', '18']
exclude:
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,10 @@ jobs:
strategy:
fail-fast: ${{ github.event_name == 'pull_request' }}
matrix:
php: ['8.1', '8.2', '8.3', '8.4', '8.5']
php: ['8.2', '8.3', '8.4', '8.5']
doctrine-lexer: ['2.1', '3.0', 'latest']
doctrine-orm: ['2.14', '2.18', '3.0', 'latest']
include:
- php: '8.1'
doctrine-orm: '2.14'
doctrine-lexer: '1.2'
- php: '8.5' # Run coverage report only based on the latest dependencies
doctrine-lexer: 'latest'
doctrine-orm: 'latest'
Expand Down
2 changes: 2 additions & 0 deletions ci/php-cs-fixer/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
[
'@PSR2' => true,
'@PHP7x1Migration' => true,
'@PHP8x1Migration' => true,
'@PHP8x2Migration' => true,
'@DoctrineAnnotation' => true,
'@PhpCsFixer' => true,
'align_multiline_comment' => false,
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},

"require": {
"php": "^8.1 <8.6",
"php": "^8.2 <8.6",
"ext-ctype": "*",
"ext-json": "*",
"ext-mbstring": "*",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ public static function provideValidTransformations(): array
'some text here',
'and some here',
<<<'END'
''"quotes"'' ain't no """worry""", '''right''' Alexander O'Vechkin?
END,
''"quotes"'' ain't no """worry""", '''right''' Alexander O'Vechkin?
END,
'and "double-quotes"',
],
'postgresValue' => <<<'END'
{1,"2",3.4,"5.6","text","some text here","and some here","''\"quotes\"'' ain't no \"\"\"worry\"\"\", '''right''' Alexander O'Vechkin?","and \"double-quotes\""}
END,
{1,"2",3.4,"5.6","text","some text here","and some here","''\"quotes\"'' ain't no \"\"\"worry\"\"\", '''right''' Alexander O'Vechkin?","and \"double-quotes\""}
END,
],
[
'phpValue' => ['STRING_A', 'STRING_B', 'STRING_C', 'STRING_D'],
Expand Down
Loading