update v1.0.4

This commit is contained in:
sujitprasad
2016-01-04 18:05:45 +05:30
parent 372485336b
commit 4864e5a3f1
529 changed files with 20956 additions and 8178 deletions

View File

@@ -66,7 +66,7 @@ class BugsnagLaravelServiceProvider extends ServiceProvider
$client->setReleaseStage($app->environment());
$client->setNotifier(array(
'name' => 'Bugsnag Laravel',
'version' => '1.6.1',
'version' => '1.6.2',
'url' => 'https://github.com/bugsnag/bugsnag-laravel'
));

View File

@@ -25,7 +25,7 @@ return array(
| Example: array('development', 'production')
|
*/
'notify_release_stages' => null,
'notify_release_stages' => env('BUGSNAG_NOTIFY_RELEASE_STAGES', null),
/*
|--------------------------------------------------------------------------
@@ -37,7 +37,7 @@ return array(
| this should be the URL to your Bugsnag instance.
|
*/
'endpoint' => null,
'endpoint' => env('BUGSNAG_ENDPOINT', null),
/*
|--------------------------------------------------------------------------
@@ -49,7 +49,7 @@ return array(
| contain these strings will be filtered.
|
*/
'filters' => array('password'),
'filters' => env('BUGSNAG_FILTERS', array('password')),
/*
|--------------------------------------------------------------------------
@@ -72,6 +72,6 @@ return array(
| )
|
*/
'proxy' => null
'proxy' => env('BUGSNAG_PROXY', null)
);