Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions _integration/php/composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "go-mysql-server php test",
"name": "dolthub/go-mysql-server-php-test",
"description": "go-mysql-server php test for compatibility",
"autoload": {
"classmap": [
"src/"
]
},
"require-dev": {
"phpunit/phpunit": "^7"
"phpunit/phpunit": "^8.5.52"
Copy link

Copilot AI Feb 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bumping phpunit to 8.5.52 increases the minimum PHP version required to run the integration tests (phpunit now requires PHP >=7.2, whereas the previous setup allowed PHP 7.1). If the CI or local integration-test environment still uses PHP 7.1, composer install/make test will fail; consider either documenting/enforcing PHP >=7.2 for this integration suite or choosing a phpunit version compatible with the supported PHP baseline.

Suggested change
"phpunit/phpunit": "^8.5.52"
"phpunit/phpunit": "^7.5"

Copilot uses AI. Check for mistakes.
}
}
Loading