-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
48 lines (48 loc) · 1.11 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "lukewaite/laravel-queue-aws-batch",
"description": "Laravel Queue for AWS Batch, enabling users to submit jobs for processing to a Batch queue.",
"keywords": [
"laravel",
"aws",
"batch",
"queue"
],
"license": "MIT",
"autoload": {
"psr-4": {
"LukeWaite\\LaravelQueueAwsBatch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
":vendor\\:package_name\\": "tests"
}
},
"require": {
"illuminate/support": "^8",
"aws/aws-sdk-php": "^3.20.6"
},
"require-dev": {
"mockery/mockery": "^1.5",
"laravel/framework": "^8",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"scrutinizer/ocular": "^1.3",
"phpstan/phpstan": "^1.9",
"nunomaduro/larastan": "^1|^2",
"orchestra/testbench": "^6|^7"
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=psr12 src/",
"fix-style": "phpcbf -p --standard=psr12 src/",
"phpstan": "phpstan analyse"
},
"extra": {
"laravel": {
"providers": [
"LukeWaite\\LaravelQueueAwsBatch\\BatchQueueServiceProvider"
]
}
}
}