-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.05 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
{
"name": "berlioz/queue-manager",
"description": "Queue manager",
"type": "library",
"minimum-stability": "beta",
"license": "MIT",
"homepage": "https://getberlioz.com",
"authors": [
{
"name": "Ronan Giron",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Berlioz\\QueueManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Berlioz\\QueueManager\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"berlioz/helpers": "^1.0",
"psr/clock": "^1.0",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^1.10",
"aws/aws-sdk-php": "^3.316",
"hectororm/query": "^1.0"
},
"suggest": {
"ext-pcntl": "Tu use signals to exit worker",
"aws/aws-sdk-php": "To use AWS SQS service",
"hectororm/query": "To use database queue"
},
"scripts": {
"test": "vendor/bin/phpunit --colors=never --stderr",
"analyse": "vendor/bin/phpstan analyse src tests"
}
}