Getting Started
Installation
In your application's folder, run:
Database Configuration
If you are working with ETL, you probally need to read and/or write to databases. Currently, we support MySQL, PostgreSQL, SQL Server and SQLite.
These are the configuration parameters for each database driver:
MySQL
PostgreSQL
SQL Server
SQLite
Adding connections
Adding the default connection:
You can add more connections passing a name as the second argument to the addConnection
method:
Laravel Integration
If you are using Laravel 5.5 or greater, the package will automatically register all database connections.
For other versions, you need to add the ServiceProvider to the providers
array in the config/app.php
file:
Last updated