Skip to content

Commit

Permalink
Add support for doctrine/dbal 4 version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Jan 26, 2024
1 parent 7809647 commit 4802f08
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/test-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,18 @@ jobs:
- php-version: '8.0'
dependencies: lowest
db: pgsql
- php-version: '8.3'
dependencies: highest
db: mysql
composer-stability: dev
- php-version: '8.3'
dependencies: highest
db: sqlite
composer-stability: dev
- php-version: '8.3'
dependencies: highest
db: pgsql
composer-stability: dev

services:
mysql:
Expand Down Expand Up @@ -73,6 +85,10 @@ jobs:
extensions: "pdo, pdo_sqlite, pdo_mysql, mysql, pdo_pgsql"
tools: 'composer:v2'

- name: Set composer stability
if: ${{ matrix.composer-stability }}
run: composer config minimum-stability ${{ matrix.composer-stability }}

- name: PHP 8.0 simple cache
# Symfony 5 is not compatible with SimpleCache 3 but does not declare a conflict. Symfony 6 can not be installed on PHP 8.0.
if: ${{ '8.0' == matrix.php-version }}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"ext-dom": "*",
"ext-pdo": "*",
"ext-xml": "*",
"doctrine/dbal": "^3.0",
"doctrine/dbal": "^3.0 || ^4.0",
"phpcr/phpcr": "~2.1.5",
"phpcr/phpcr-utils": "^1.8 || ^2.0",
"jackalope/jackalope": "^2.0.0-RC1",
Expand Down

0 comments on commit 4802f08

Please sign in to comment.