forked from swarrot/swarrot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.57 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
58
59
60
61
{
"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": "^5.4 || ^6.0 || ^7.0",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"doctrine/persistence": "^3.0",
"doctrine/dbal": "^3.0 || ^4.0",
"friendsofphp/php-cs-fixer": "^3.27",
"php-amqplib/php-amqplib": "^2.1 || ^3.0",
"phpspec/prophecy": "^1.15",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6 || ^10.0",
"symfony/error-handler": "^5.4 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
"symfony/service-contracts": "^2.5 || ^3.0"
},
"suggest": {
"pecl-amqp": "*",
"php-amqplib/php-amqplib": "^2.1 || ^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"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "4.x-dev"
}
}
}