Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.

Commit d878e1c

Browse files
Tweaked the readme
1 parent 86ae07c commit d878e1c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

readme.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Laravel 4 Async Queue Driver
2+
23
## Push a function/closure to the background.
34

45
Just like the 'sync' driver, this is not a real queue driver. It is always fired immediatly.
@@ -8,14 +9,15 @@ This package is more usable as an alternative for running incidental tasks in th
89
> **Note:** If you are coming from 0.1.0 (or dev-master), you will need to run the migrations, since the new versions uses a database to store the queue.
910
1011
### Install
12+
1113
Add the package to the require section of your composer.json and run `composer update`
1214

1315
"barryvdh/laravel-async-queue": "0.2.x"
1416

1517
Add the Service Provider to the providers array in config/app.php
1618

1719
'Barryvdh\Queue\AsyncServiceProvider',
18-
20+
1921
You need to run the migrations for this package
2022

2123
$ php artisan migrate --package="barryvdh/laravel-async-queue"
@@ -27,7 +29,7 @@ Or publish them, so they are copied to your regular migrations
2729
You should now be able to use the async driver in config/queue.php
2830

2931
'default' => 'async',
30-
32+
3133
'connections' => array(
3234
...
3335
'async' => array(

0 commit comments

Comments
 (0)