forked from dusterio/laravel-aws-worker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
32 lines (32 loc) · 954 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
31
32
{
"name": "dusterio/laravel-aws-worker",
"type": "library",
"description": "Run Laravel (or Lumen) tasks and queue listeners inside of AWS Elastic Beanstalk workers",
"keywords": ["php","laravel","lumen","sqs","aws","elasticbeanstalk","worker"],
"homepage": "https://github.com/dusterio/laravel-aws-worker",
"license": "MIT",
"authors": [
{
"name": "Denis Mysenko",
"email": "[email protected]",
"homepage": "https://www.mysenko.com"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/support": "5.*",
"illuminate/queue": "5.*",
"illuminate/bus": "5.*",
"aws/aws-sdk-php": "~3.0",
"illuminate/http": "5.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"Dusterio\\AwsWorker\\": "src/"
}
}
}