Skip to content

Commit 17ee6f4

Browse files
fix(security): bump PHPUnit for GHSA-qrr6-mg7r-m243 and related fixes
- Require patched dev versions: ^9.6.33, ^10.5.62, ^11.5.50, ^12.5.22, ^13.1.6 - Add composer.lock and track it (Dependabot needs a lockfile to resolve versions) - Set config.platform.php to 8.0.30 so the lock matches the package minimum Made-with: Cursor
1 parent ba6d4e3 commit 17ee6f4

3 files changed

Lines changed: 2498 additions & 2 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Thumbs.db
1313

1414
#composer related
1515
composer.phar
16-
composer.lock
1716
vendor/
1817

1918
.phpunit.result.cache

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,17 @@
1010
],
1111
"minimum-stability": "dev",
1212
"prefer-stable": true,
13+
"config": {
14+
"platform": {
15+
"php": "8.0.30"
16+
}
17+
},
1318
"require": {
1419
"php": ">=8.0",
1520
"symfony/validator": "^5.4.43 || ^6.4.11 || ^7.1.4 || ^8.0"
1621
},
1722
"require-dev": {
18-
"phpunit/phpunit": "^9.6 || ^10.5 || ^11.0.3"
23+
"phpunit/phpunit": "^9.6.33 || ^10.5.62 || ^11.5.50 || ^12.5.22 || ^13.1.6"
1924
},
2025
"autoload": {
2126
"psr-4": {

0 commit comments

Comments
 (0)