gitextract_ldg5u_7o/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── examples/ │ ├── 01-query.php │ ├── 02-query-stream.php │ ├── 11-interactive.php │ └── 12-slow-stream.php ├── phpunit.xml.dist ├── phpunit.xml.legacy ├── src/ │ ├── Commands/ │ │ ├── AbstractCommand.php │ │ ├── AuthenticateCommand.php │ │ ├── CommandInterface.php │ │ ├── PingCommand.php │ │ ├── QueryCommand.php │ │ └── QuitCommand.php │ ├── Exception.php │ ├── Io/ │ │ ├── Buffer.php │ │ ├── Connection.php │ │ ├── Constants.php │ │ ├── Executor.php │ │ ├── Factory.php │ │ ├── Parser.php │ │ ├── Query.php │ │ └── QueryStream.php │ ├── MysqlClient.php │ └── MysqlResult.php └── tests/ ├── BaseTestCase.php ├── Commands/ │ └── AuthenticateCommandTest.php ├── Io/ │ ├── BufferTest.php │ ├── ConnectionTest.php │ ├── FactoryTest.php │ ├── ParserTest.php │ ├── QueryStreamTest.php │ └── QueryTest.php ├── MysqlClientTest.php ├── NoResultQueryTest.php ├── ResultQueryTest.php └── wait-for-mysql.sh