forked from swarrot/swarrot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.49 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
49
50
51
52
53
54
55
56
57
{
"name": "swarrot/swarrot",
"description": "A simple lib to consume RabbitMQ queues",
"keywords": ["swarrot","worker","queue","amqp"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Olivier Dolbeau",
"homepage": "http://odolbeau.fr/"
}
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/options-resolver": "^3.4 || ^4.3 || ^5.0 || ^6.0",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"php-amqplib/php-amqplib": "^2.1 || ^3.0",
"doctrine/common": "^2.9",
"doctrine/dbal": "^2.4",
"php-http/curl-client": "^2.0",
"symfony/phpunit-bridge": "^5.0 || ^6.0",
"symfony/error-handler": "^5.0 || ^6.0",
"symfony/contracts": "^1.0 || ^2.0 || ^3.0"
},
"suggest": {
"pecl-amqp": "*",
"php-amqplib/php-amqplib": "^2.1 || ^3.0",
"symfony/console": "^3.4 || ^4.3 || ^5.0 || ^6.0",
"symfony/contracts": "^1.0 || ^2.0 || ^3.0"
},
"autoload": {
"psr-4": {
"Swarrot\\": "src/Swarrot"
}
},
"autoload-dev": {
"psr-4": {
"Swarrot\\Tests\\": "tests/Swarrot"
}
},
"scripts": {
"test": [
"phpunit --colors=always"
]
},
"conflict": {
"doctrine/persistence": "<1.3"
},
"extra": {
"branch-alias": {
"dev-master": "4.12.x-dev"
}
}
}