Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 2 additions & 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: false
matrix:
php: ['8.1', '8.2', '8.3', '8.4']
php: ['8.1', '8.2', '8.3', '8.4', '8.5']
postgis: ['3.4', '3.5', '3.6']
postgres: ['16', '17', '18']
exclude:
Expand Down Expand Up @@ -88,6 +88,7 @@ jobs:
coverage: ${{ matrix.calculate-code-coverage == true && 'xdebug' || 'none' }}
extensions: ctype, json, mbstring, pdo_pgsql
tools: composer
update: ${{ matrix.php == '8.5' }}

- name: Validate composer.json and composer.lock
run: composer validate --strict
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.1', '8.2', '8.3', '8.4']
php: ['8.1', '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:
Expand All @@ -70,6 +70,7 @@ jobs:
coverage: ${{ matrix.calculate-code-coverage == true && 'xdebug' || 'none' }}
extensions: ctype, json, mbstring
tools: composer
update: ${{ matrix.php == '8.5' }}

- name: Cache Composer packages
id: composer-cache
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},

"require": {
"php": "^8.1",
"php": "^8.1 <8.6",
"ext-ctype": "*",
"ext-json": "*",
"ext-mbstring": "*",
Expand All @@ -57,7 +57,7 @@
"symfony/cache": "^6.4||^7.0"
},
"suggest": {
"php": "^8.3",
"php": "^8.4",
"doctrine/orm": "~2.14||~3.0"
},

Expand Down
Loading