-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 991 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
33
34
35
36
37
38
39
{
"name": "linio/queue",
"description": "Abstracts work queues, used to distribute time-consuming tasks among multiple workers.",
"keywords": ["linio", "queue", "rabbit", "rabbitmq", "distributed"],
"type": "library",
"license": "BSD-3-Clause",
"require": {
"php": ">=7.4",
"psr/log": "^1.0",
"linio/util": "^3.0|^4.0",
"php-amqplib/php-amqplib": "^2.11|^3.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"Linio\\Component\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Linio\\Component\\": "tests/"
}
},
"scripts": {
"lint": "php-cs-fixer fix --verbose --show-progress=estimating",
"lint:check": "php-cs-fixer fix --dry-run --verbose --show-progress=estimating",
"phpunit": "phpunit",
"phpstan": "phpstan analyze",
"test": [
"@lint:check",
"@phpunit",
"@phpstan"
]
}
}