-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1011 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
40
41
42
43
44
{
"name": "b2pweb/bdf-queue-prime-adapter",
"description": "Prime adapter for bdf queue component",
"type": "library",
"keywords": ["message broker", "design pattern"],
"license": "MIT",
"authors": [
{
"name": "Sébastien Tanneux"
}
],
"autoload": {
"psr-4": {
"Bdf\\Queue\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bdf\\Queue\\Tests\\": "tests/Fixtures"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "~7.1 | ~8.0.0 | ~8.1.0 | ~8.2.0 | ~8.3.0 | ~8.4.0",
"b2pweb/bdf-prime": "~1.2|~2.0",
"b2pweb/bdf-util": "~1.0",
"b2pweb/bdf-queue": "~1.1",
"symfony/console": "^4.0|^5.0|^6.0|~7.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0|~8.0|~9.0",
"symfony/phpunit-bridge": "^5.1|^6.0|~7.0"
},
"scripts": {
"tests": "phpunit",
"tests-with-coverage": "phpunit --coverage-clover coverage.xml"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}