Getting Started
Installation
composer require marquine/php-etlDatabase Configuration
$config = [ 'driver' => 'mysql', 'host' => 'localhost', 'port' => '3306', 'database' => 'database', 'username' => 'user', 'password' => 'password', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', ];$config = [ 'driver' => 'pgsql', 'host' => 'localhost', 'port' => '5432', 'database' => 'database', 'username' => 'user', 'password' => 'password', 'charset' => 'utf8', 'schema' => 'public', ];$config = [ 'driver' => 'sqlsrv', 'host' => 'localhost', 'port' => '1433', 'database' => 'database', 'username' => 'user', 'password' => 'password', ];$config = [ 'driver' => 'sqlite', 'database' => '/path/to/database.sqlite', ];
Adding connections
Laravel Integration
Last updated