Skip to content

Commit

Permalink
Allow doctrine/dbal ^4
Browse files Browse the repository at this point in the history
  • Loading branch information
ostrolucky committed Aug 11, 2024
1 parent 1466d9b commit 401137b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2,609 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,19 @@ on:
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: ["8.0", "8.1", "8.2", "8.3"]
steps:
-
name: 'Checkout The Code'
uses: actions/checkout@v2
uses: actions/checkout@v4
-
name: 'Install Dependencies'
uses: php-actions/composer@v6
- name: 'Unit Tests (PHP 8.0)'
uses: php-actions/phpunit@v3
with:
php_version: '8.0'
- name: 'Unit Tests (PHP 8.1)'
uses: php-actions/phpunit@v3
php_version: "${{ matrix.php }}"
- name: 'Unit Tests'
uses: php-actions/phpunit@v4
with:
php_version: '8.1'
php_version: "${{ matrix.php }}"
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"require": {
"php": "^8.0",
"doctrine/dbal": "^2.5|^3.3"
"doctrine/dbal": "^2.5|^3.3|^4.0"
},
"require-dev": {
"mockery/mockery": "^1.5",
Expand Down
Loading

0 comments on commit 401137b

Please sign in to comment.