forked from dusterio/laravel-plain-sqs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 854 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
{
"name": "dusterio/laravel-plain-sqs",
"type": "library",
"description": "Custom SQS connector for Laravel that supports custom format JSON",
"keywords": ["php","laravel","lumen","sqs","aws"],
"homepage": "https://github.com/dusterio/laravel-plain-sqs",
"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"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"Dusterio\\PlainSqs\\": "src/"
}
}
}