Skip to content

YuK1Game/laravel-redshift

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Redshift

Latest Version on Packagist Total Downloads Build Status StyleCI

Redshift is compatible with Postgresql. However, not everything in Postgresql is compatible, and there are some data types that cannot be used. This library exists to absorb them and make it possible to handle Redshift on Laravel cleanly.

Installation

Via Composer

$ composer require yuk1/laravel-redshift

Usage

Add the Redshift driver to config/database.php.

'connections' => [
  'redshift' => [
    'driver' => 'redshift',
      'host' => env('AWS_REDSHIFT_HOST', '127.0.0.1'),
      'port' => env('AWS_REDSHIFT_PORT', '5439'),
      'database' => env('AWS_REDSHIFT_DATABASE', 'redshit'),
      'username' => env('AWS_REDSHIFT_USERNAME', 'root'),
      'password' => env('AWS_REDSHIFT_PASSWORD', ''),
    ],
  ],
]

Then, write the connection information in the .env file.

DB_CONNECTION=redshift
AWS_REDSHIFT_HOST=
AWS_REDSHIFT_PORT=
AWS_REDSHIFT_DATABASE=
AWS_REDSHIFT_USERNAME=
AWS_REDSHIFT_PASSWORD=

Change log

Please see the changelog for more information on what has changed recently.

Testing

$ composer test

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email author email instead of using the issue tracker.

Credits

License

license. Please see the license file for more information.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages