Looking to hire Laravel developers? Try LaraJobs

laravel-heroku maintained by chatbox-inc

Author
Last update
2020/03/30 04:12 (dev-master)
License
Links
Downloads
1 994

Comments
comments powered by Disqus

Laravel on Heroku

Latest Stable Version

These are ServiceProviders that helps you use Laravel on Heroku.

functions

These provider wont be auto-discovered.

You should add setting to config/app.php.

  • HerokuPostgresServiceProvider : Support to connect Heroku Postgres
  • HerokuRedisServiceProvider : Support to connect Heroku Redis

Usage

$ composer require chatbox-inc/laravel-heroku

Heroku Postgres / Heroku Redis

HerokuPostgresServiceProvider をサービスプロバイダとして公開

For Laravel

// at config/app.php

"providers" => [
    HerokuPostgresServiceProvider::class,
]

After that, You can use herokupg keyword as DB_CONNECTION value.

DATABASE_URL will auto parsed on connecting DB.

DB_CONNECTION=herokupg
DATABASE_URL=postgres://xxxxxxxxxxxxxxxxxxxxxxxxx

Heroku Redis

HerokuRedisServiceProvider will auto setup your redis connection.

REDIS_URL will automatically parsed to connect Redis.

Procfile

cp vendor/chatbox-inc/laravel-heroku/Procfile Procfile