-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
54 lines (54 loc) · 1.48 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
{
"name": "swarrot/swarrot-bundle",
"description": "SwarrotBundle",
"type": "symfony-bundle",
"keywords": ["swarrot","bundle"],
"license": "MIT",
"authors": [
{
"name": "Olivier Dolbeau",
"homepage": "http://odolbeau.fr/"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.4|^8.0",
"psr/log": "^1.0|^2.0|^3.0",
"swarrot/swarrot": "^4.0",
"symfony/config": "^5.4|^6.0|^7.0",
"symfony/console": "^5.4|^6.0|^7.0",
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
"symfony/http-kernel": "^5.4|^6.0|^7.0",
"symfony/yaml": "^5.4|^6.0|^7.0"
},
"require-dev": {
"doctrine/common": "^2.9|^3.0",
"doctrine/dbal": "^2.2|^3.0",
"friendsofphp/php-cs-fixer": "^3.59",
"php-amqplib/php-amqplib": "^2.9|^3.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.5",
"symfony/event-dispatcher": "^5.4|^6.0|^7.0",
"symfony/phpunit-bridge": "^5.4|^6.0|^7.0"
},
"suggest": {
"php-amqplib/php-amqplib": "Required if using amqp_lib"
},
"autoload": {
"psr-4": { "Swarrot\\SwarrotBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"conflict": {
"doctrine/persistence": "<1.3"
},
"extra": {
"branch-alias": {
"dev-master": "2.5-dev"
}
}
}