jackfinal / hyperf-database-dm
A dm driver for hyperf/database.
dev-main
2024-06-25 02:00 UTC
Requires
- php: >=8.1
- hyperf/database: ^3.1
- hyperf/db-connection: ^3.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- mockery/mockery: ^1.0
- phpstan/phpstan: ^1.0
- phpunit/phpunit: ^10.0
- swoole/ide-helper: dev-master
Suggests
- swow/swow: Required to create swow components.
This package is not auto-updated.
Last update: 2025-04-01 05:33:39 UTC
README
hyperf-database-dm
Hyperf-database-dm is an Dm Database Driver package for Hyperf. Hyperf-database-dm is an extension of Hyperf/Database that uses DM extension to communicate with Dm. Thanks to @yajra.
Documentations
- You will find user-friendly and updated documentation here: Hyperf-database-dm Docs
- All about dm and php:The Underground PHP and Dm Manual
Hyperf Version Compatibility
Hyperf | Package |
---|---|
3.1.x | 3.1.x |
Quick Installation
composer require jackfinal/hyperf-database-dm
Configuration (OPTIONAL)
You can set connection data in your
.env
files:
DB_DRIVER=dm
DB_HOST=192.168.45.132
DB_PORT=5236
DB_USERNAME=jack
DB_PASSWORD=1234
Then run your hyperf installation...
NOTICE
You can use $table->identity($column, $start = 1, $step = 1)
to relace $table->bigIncrements('id');
Increment ID (primary key).
Schema::create('users', function (Blueprint $table) {
$table->identity('id', 1, 1);
$table->primary('id');
$table->datetimes();
$table->softDeletes();
$table->comment('Table Comment');
$table->mediumText('description');
$table->string('name', 100);
$table->text('content');
});
License
The MIT License (MIT). Please see License File for more information.