oihana / php-mysql
MySQL utilities for PHP 8.4+: DSN builder, robust PDO connection builder, and high-level admin model for managing databases, users, privileges and tables.
1.0.0
2026-05-20 16:11 UTC
Requires
- php: >=8.4
- ext-pdo: *
- oihana/php-core: dev-main
- oihana/php-enums: dev-main
- oihana/php-reflect: dev-main
- oihana/php-system: dev-main
- php-di/php-di: ^7.0
- psr/container: ^2.0
Requires (Dev)
- nunomaduro/collision: ^8.8
- phpdocumentor/shim: ^3.8
- phpunit/phpunit: ^12
README
MySQL utilities for PHP 8.4+: DSN builder, robust PDO connection builder, and a high-level admin model for managing databases, users, privileges and tables.
๐ Documentation
Full project documentation is available at:
๐ https://bcommebois.github.io/oihana-php-mysql
๐ฆ Installation
Requires PHP 8.4+ and
ext-pdo
Install via Composer:
composer require oihana/php-mysql
โจ Features
MysqlDSNโ build a MySQL DSN string from a structured configuration (host, port, dbname, charset, unix socket).MysqlPDOBuilderโ create a configuredPDOinstance with sane defaults, optional validation, and easy override of options.MysqlModelโ high-level administrative model on top of PDO to manage databases, users, privileges and tables.- Traits โ reusable building blocks (
MysqlDatabaseTrait,MysqlUserTrait,MysqlPrivilegeTrait,MysqlTableTrait,MysqlAssertionsTrait,MysqlRootTrait). - Enums โ
MysqlParam,MysqlPrivilegesfor strongly-typed configuration keys and privilege names.
๐ Quick start
require __DIR__ . '/vendor/autoload.php'; use oihana\mysql\MysqlPDOBuilder; use oihana\mysql\MysqlModel; // Build a PDO connection $pdo = (new MysqlPDOBuilder([ 'host' => '127.0.0.1', 'dbname' => 'demo', 'username' => 'root', 'password' => 'secret', ]))(); // Use the admin model $model = new MysqlModel(); $model->setPDO( $pdo ); if ( !$model->databaseExists('my_app') ) { $model->createDatabase('my_app'); }
๐งฐ Usage
Build a DSN
use oihana\mysql\MysqlDSN; $dsn = new MysqlDSN([ MysqlDSN::HOST => '127.0.0.1', MysqlDSN::PORT => 3306, MysqlDSN::DBNAME => 'my_database', MysqlDSN::CHARSET => 'utf8mb4', MysqlDSN::UNIX_SOCKET => '/tmp/mysql.sock', ]); echo (string) $dsn; // mysql:host=127.0.0.1;port=3306;dbname=my_database;charset=utf8mb4;unix_socket=/tmp/mysql.sock
Build a PDO connection
use oihana\mysql\MysqlPDOBuilder; $pdo = (new MysqlPDOBuilder([ 'host' => 'localhost', 'dbname' => 'test_db', 'username' => 'user', 'password' => 'secret', // 'validate' => false, // disable validation if needed // 'skipDbName' => true, // build DSN without dbname ]))();
Administrative operations
use oihana\mysql\MysqlModel; $model = new MysqlModel(); $model->setPDO( $pdoAdmin ); // connect as root/admin $model->createDatabase('my_app'); $model->createUser('myuser', 'localhost', 'securepass'); $model->grantPrivileges('myuser', 'localhost', 'my_app'); $model->flushPrivileges(); // Rename a user $model->renameUser('myuser', 'localhost', 'user', 'localhost'); // Revoke privileges $model->revokePrivileges('user', 'localhost', 'my_app'); // Export information print_r( $model->toArray() );
โ Running Unit Tests
To run all tests:
composer run-script test
To run a specific test file:
composer run test ./tests/oihana/mysql/MysqlDSNTest.php
๐ค Contributing
Contributions are welcome! Please:
- Open an issue for discussion before large changes
- Write tests for new features and bug fixes
- Run the full test suite locally before submitting a PR
๐๏ธ Changelog
See CHANGELOG.md for notable changes.
๐งพ License
This project is licensed under the Mozilla Public License 2.0 (MPL-2.0).
๐ค About the author
- Author: Marc ALCARAZ (aka eKameleon)
- Mail: marc@ooop.fr
- Website: http://www.ooop.fr
๐ ๏ธ Generate the Documentation
We use phpDocumentor to generate the documentation into the ./docs folder.
composer doc
๐ Related packages
oihana/php-systemโ standard set of PHP helpers and tools (PDO model, logging, init, ...):https://github.com/BcommeBois/oihana-php-systemoihana/php-coreโ core helpers and utilities used by this library:https://github.com/BcommeBois/oihana-php-coreoihana/php-enumsโ a collection of strongly-typed constant enumerations for PHP:https://github.com/BcommeBois/oihana-php-enumsoihana/php-reflectโ reflection and hydration utilities:https://github.com/BcommeBois/oihana-php-reflect
