Skip to content

Commit b3138d0

Browse files
author
Patrick Leckey
committed
fixed some more syntax
1 parent 6065b80 commit b3138d0

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,19 @@ Or add `intouch/laravel-newrelic` to your composer requirements:
2525
Once the package is installed, open your `app/config/app.php` configuration file and locate the `providers` key. Add
2626
the following line to the end:
2727

28-
'Intouch\LaravelNewrelic\NewrelicServiceProvider',
28+
```php
29+
'Intouch\LaravelNewrelic\NewrelicServiceProvider',
30+
```
2931

3032
Optionally, locate the `aliases` key and add the following line:
3133

32-
'Newrelic' => 'Intouch\LaravelNewrelic\Facades\Newrelic',
34+
```php
35+
'Newrelic' => 'Intouch\LaravelNewrelic\Facades\Newrelic',
36+
```
3337

3438
Finally, publish the default configuration (it will end up in `config/newrelic.php`):
3539

36-
$ php artisan vendor:publish
40+
php artisan vendor:publish
3741

3842
### Configuration
3943

0 commit comments

Comments
 (0)