jackfinal / laravel-dm8
php_dm dm8
Installs: 1 036
Dependents: 0
Suggesters: 0
Security: 0
Stars: 18
Watchers: 1
Forks: 13
Open Issues: 0
Requires
- php: >7
- ext-pdo: *
- illuminate/database: >5
- illuminate/pagination: >5
- illuminate/support: >5
- illuminate/validation: >5
Requires (Dev)
- doctrine/dbal: ^3.3
- mockery/mockery: ^1.4.4
- orchestra/testbench: ^7.0
- phpunit/phpunit: ^9.5.8
This package is not auto-updated.
Last update: 2025-03-26 12:37:07 UTC
README
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 |
---|---|
5.1.x | 5.1.x |
5.2.x | 5.2.x |
5.3.x | 5.3.x |
5.4.x | 5.4.x |
5.5.x | 5.5.x |
5.6.x | 5.6.x |
5.7.x | 5.7.x |
5.8.x | 5.8.x |
6.x.x | 6.x.x |
7.x.x | 7.x.x |
8.x.x | 8.x.x |
9.x.x | 9.x.x |
Quick Installation
composer require jackfinal/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.
php artisan vendor:publish --tag=dm
This will copy the configuration file to config/dm.php
.
Then, you can set connection data in your
.env
files:
DB_CONNECTION=dm DB_HOST=dm.host DB_PORT=5236 DB_DATABASE=xe DB_USERNAME=hr DB_PASSWORD=hr DB_CHARSET=UTF8
Then run your laravel installation...
License
The MIT License (MIT). Please see License File for more information.