Skip to content

Commit 3052f44

Browse files
committed
Improve QA defaults for examples
1 parent aa59802 commit 3052f44

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/laravel-5.1/config/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
|
7979
*/
8080

81-
'key' => env('APP_KEY', 'SomeRandomString'),
81+
'key' => env('APP_KEY', 'xlhF31NeOlibJcoOW9tvZg7TkHcAZI3a'),
8282

8383
'cipher' => 'AES-256-CBC',
8484

examples/laravel-5.1/config/sentry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
return array(
4-
'dsn' => env('SENTRY_DSN'),
4+
'dsn' => env('SENTRY_DSN', 'https://e9ebbd88548a441288393c457ec90441:[email protected]/3235'),
55

66
// capture release as git sha
77
// 'release' => trim(exec('git log --pretty="%h" -n1 HEAD')),

examples/laravel-5.2/config/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
|
9292
*/
9393

94-
'key' => env('APP_KEY'),
94+
'key' => env('APP_KEY', 'xlhF31NeOlibJcoOW9tvZg7TkHcAZI3a'),
9595

9696
'cipher' => 'AES-256-CBC',
9797

examples/laravel-5.2/config/sentry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
return array(
4-
'dsn' => env('SENTRY_DSN'),
4+
'dsn' => env('SENTRY_DSN', 'https://e9ebbd88548a441288393c457ec90441:[email protected]/3235'),
55

66
// capture release as git sha
77
// 'release' => trim(exec('git log --pretty="%h" -n1 HEAD')),

0 commit comments

Comments
 (0)