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

v1.0.2 2025-12-05 01:39 UTC

This package is auto-updated.

Last update: 2025-12-05 04:33:10 UTC


README

本项目基于 jackfinal/laravel-dm8 构建,并针对 Laravel10,Laravel11 进行了适配与改进。

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

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 .env files:

 '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.