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.

Maintainers

Package info

github.com/BcommeBois/oihana-php-mysql

pkg:composer/oihana/php-mysql

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2026-05-20 16:11 UTC

This package is auto-updated.

Last update: 2026-05-20 16:12:42 UTC


README

Oihana PHP Mysql

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.

Latest Version
Total Downloads
License

๐Ÿ“š 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 configured PDO instance 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, MysqlPrivileges for 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

๐Ÿ› ๏ธ 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-system
  • oihana/php-core โ€“ core helpers and utilities used by this library: https://github.com/BcommeBois/oihana-php-core
  • oihana/php-enums โ€“ a collection of strongly-typed constant enumerations for PHP: https://github.com/BcommeBois/oihana-php-enums
  • oihana/php-reflect โ€“ reflection and hydration utilities: https://github.com/BcommeBois/oihana-php-reflect