Commit de750d9f authored by Theo Kouzelis's avatar Theo Kouzelis

Change PUSHER enviroment variable names

pusher.com's copy and paste .env snippet uses enviroment variables that
all start with "PUSHER_APP". This commit brings the config files in line
with pusher.com
parent b43890c1
...@@ -28,5 +28,5 @@ MAIL_PASSWORD=null ...@@ -28,5 +28,5 @@ MAIL_PASSWORD=null
MAIL_ENCRYPTION=null MAIL_ENCRYPTION=null
PUSHER_APP_ID= PUSHER_APP_ID=
PUSHER_KEY= PUSHER_APP_KEY=
PUSHER_SECRET= PUSHER_APP_SECRET=
...@@ -32,8 +32,8 @@ return [ ...@@ -32,8 +32,8 @@ return [
'pusher' => [ 'pusher' => [
'driver' => 'pusher', 'driver' => 'pusher',
'key' => env('PUSHER_KEY'), 'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_SECRET'), 'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'), 'app_id' => env('PUSHER_APP_ID'),
'options' => [ 'options' => [
// //
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment