forked from iron-io/laraworker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
30 lines (30 loc) · 886 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "sempro/laraworker",
"type": "library",
"description": "LaraWorker is a helper package that makes integrating your Laravel application with Iron.io's IronWorker very easy!",
"keywords": ["laravel","job","delayed_job","iron","iron_worker","background","task"],
"homepage": "http://github.com/iron-io/laraworker",
"license": "BSD 2-Clause License",
"authors": [
{
"name": "Kononov D",
"email": "dmitriy@iron.io",
"homepage": "http://iron.io",
"role": "Developer"
}
],
"require": {
"php": ">=5.2.0",
"iron-io/iron_mq": "3.*",
"iron-io/iron_worker": "1.*"
},
"autoload": {
"files": ["LaraWorker.php"]
},
"repositories":[
{
"type":"git",
"url":"http://github.com/iron-io/laraworker"
}
]
}