Skip to content

Commit d906785

Browse files
authored
feat(deps): allow PHPUnit 11 (#14)
1 parent 524c283 commit d906785

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,17 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest]
1616
php: [8.0, 8.1, 8.2, 8.3]
17-
phpunit: [^8.5.23, 9.*, 10.*]
17+
phpunit: [^8.5.23, 9.*, 10.*, 11.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
exclude:
2020
- php: 8.0
2121
phpunit: 10.*
22+
- php: 8.0
23+
phpunit: 11.*
24+
- php: 8.1
25+
phpunit: 11.*
26+
- php: 8.2
27+
phpunit: 11.*
2228

2329
name: P${{ matrix.php }} - PHPUnit ${{ matrix.phpunit }} - ${{ matrix.stability }} - ${{ matrix.os }}
2430

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"require": {
2020
"php": "^8.0.2",
2121
"illuminate/macroable": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
22-
"phpunit/phpunit": "^8.3|^9.0|^10.0",
22+
"phpunit/phpunit": "^8.3|^9.0|^10.0|^11.0",
2323
"spatie/url": "^1.3.4|^2.0",
2424
"symfony/dom-crawler": "^5.4|^6.1"
2525
},

0 commit comments

Comments
 (0)