Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbitron authored Jan 17, 2017
1 parent 02368f4 commit 2aeaa0e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ A Laravel package to monitor queue jobs. Logs certain information about [queue j

Install the composer package:

```
```php
composer require gilbitron/laravel-queue-monitor
```

Add the service provider in `config/app.php`:

```
```php
/*
* Package Service Providers...
*/
Expand All @@ -30,7 +30,7 @@ Gilbitron\LaravelQueueMonitor\LaravelQueueMonitorProvider::class,

Run a migration to setup the `queue_monitor` database table:

```
```php
php artisan migrate
```

Expand All @@ -42,7 +42,7 @@ All queue jobs will now be monitored and results stored to the `queue_monitor` d

To save custom data with the queue monitor results you need to include the `QueueMonitorData` trait in your Job and use the `saveQueueMonitorData()` method. For example:

```
```php
<?php

namespace App\Jobs;
Expand Down Expand Up @@ -90,4 +90,4 @@ class ExampleJob implements ShouldQueue
## Credits

Laravel Queue Monitor was created by [Gilbert Pellegrom](https://gilbert.pellegrom.me) from
[Dev7studios](https://dev7studios.co). Released under the MIT license.
[Dev7studios](https://dev7studios.co). Released under the MIT license.

0 comments on commit 2aeaa0e

Please sign in to comment.