wangl / laravel-dm8
修改可以适配laravel10+,11+框架的dm driver
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/wangl/laravel-dm8
Requires
- php: ^8.1
- ext-pdo: *
- illuminate/database: ^10|^11
- illuminate/pagination: ^10|^11
- illuminate/support: ^10|^11
- illuminate/validation: ^10|^11
Requires (Dev)
- doctrine/dbal: ^3.3|^4.0
- mockery/mockery: ^1.4.4|^1.6
- orchestra/testbench: ^8.0|^9.0
- phpunit/phpunit: ^9.5.8|^10.0
This package is auto-updated.
Last update: 2025-12-05 04:33:10 UTC
README
本项目基于 jackfinal/laravel-dm8 构建,并针对 Laravel10,Laravel11 进行了适配与改进。
- 源项目GitHub: https://github.com/Jackfinal/laravel-dm8.git
DM DB driver for Laravel via DM8
Laravel-DM8
Laravel-DM8 is an Dm Database Driver package for Laravel. Laravel-DM8 is an extension of Illuminate/Database that uses DM8 extension to communicate with Dm. Thanks to @yajra.
Documentations
- You will find user-friendly and updated documentation here: Laravel-DM8 Docs
- All about dm and php:The Underground PHP and Dm Manual
Laravel Version Compatibility
| Laravel | Package |
|---|---|
| 10.x.x | 1.x.x |
| 11.x.x | 1.x.x |
Quick Installation
composer require wangl/laravel-dm8
Service Provider (Optional on Laravel 5.5+)
Once Composer has installed or updated your packages you need to register Laravel-DM8. Open up config/app.php and find the providers key and add:
LaravelDm8\Dm8\Dm8ServiceProvider::class,
Configuration (OPTIONAL)
Finally you can optionally publish a configuration file by running the following Artisan command.
If config file is not publish, the package will automatically use what is declared on your .env file database configuration.
This will copy the configuration file to config/database.php.
Then, you can set connection data in your
.envfiles:
'connections' => [ 'mysql' => [ ………… ], 'dm' => [ 'driver' => 'dm', 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '5236'), 'database' => env('DB_DATABASE', 'laravel'), 'username' => env('DB_USERNAME', 'laravel'), 'password' => env('DB_PASSWORD', 'laravel'), 'charset' => 'UTF8', 'collation' => 'utf8_general_ci', 'prefix' => '', 'strict' => true, 'engine' => null, 'options' => [ \PDO::ATTR_PERSISTENT => true, \PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION, ], ], ],
Then run your laravel installation...
License
The MIT License (MIT). Please see License File for more information.