Skip to content
This repository has been archived by the owner on Apr 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #73 from pdbreen/master
Browse files Browse the repository at this point in the history
Fix bugsnag for v4 - env => get; fix require path in bugsnag doc
  • Loading branch information
antonmedv authored Nov 23, 2016
2 parents c2883d9 + c6268fb commit fe69c98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions bugsnag.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

$defaultConfig = [
'api_key' => null,
'release_stage' => env('stages')[0],
'repository' => env('repository'),
'release_stage' => get('stages')[0],
'repository' => get('repository'),
'provider' => null,
'branch' => env('branch'),
'branch' => get('branch'),
'revision' => trim(runLocally('git log -n 1 --format="%h"')),
'app_version' => null,
];
Expand Down
2 changes: 1 addition & 1 deletion docs/bugsnag.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```php
// deploy.php

require 'vendor/deployphp/recipes/bugsnag.php';
require 'vendor/deployer/recipes/bugsnag.php';
```

### Configuration options
Expand Down

0 comments on commit fe69c98

Please sign in to comment.