Conversation
Declare the SQLite driver platform requirements and autoload its runtime loader. Make the proxy depend on the driver and use Composer's project autoloader for its installed binary. Add package manifest validation to the relevant CI workflows.
Load Composer's autoloader in the usage example and remove PCRE from the extension list because PHP always enables it. https://www.php.net/manual/en/pcre.installation.php
Add package discovery, contributor, support, and license metadata. Include the GPL text in each standalone package and disable lock-file generation where lock files are intentionally not maintained.
JanJakes
marked this pull request as ready for review
August 11, 2026 15:39
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Makes the monorepo's PHP packages ready for standalone Composer installation and discovery.
The changes provide these outcomes:
All Composer manifests, repository coding standards, and the MySQL-on-SQLite, parser, and proxy test suites pass.
Why
The package manifests did not fully declare their runtime requirements, autoloading, relationships, and distribution metadata. The proxy also depended on a repository-local loader path, so installing it as a Composer dependency did not provide a self-contained runtime.
These changes make each package understandable to Composer and let applications consume the driver and proxy outside the monorepo.