-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.39 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.39 KB
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
{
"name": "b2pweb/bdf-queue-bundle",
"type": "symfony-bundle",
"description": "Symfony BdfQueueBundle",
"keywords": [],
"license": "MIT",
"authors": [
{
"name": "Sébastien Tanneux"
}
],
"minimum-stability": "dev",
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"b2pweb/bdf-queue": "~1.4",
"symfony/config": "^6.0|~7.0",
"symfony/dependency-injection": "^6.0|~7.0",
"symfony/expression-language": "^6.0|~7.0",
"symfony/framework-bundle": "^6.0|~7.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"symfony/phpunit-bridge": "^6.0|~7.0",
"symfony/yaml": "^6.0|~7.0",
"symfony/console": "^6.0|~7.0",
"b2pweb/bdf-prime-bundle": "~1.2",
"friendsofphp/php-cs-fixer": "~3.0"
},
"conflict": {
"doctrine/instantiator": "~2.0"
},
"autoload": {
"psr-4": { "Bdf\\QueueBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"scripts": {
"tests": "phpunit",
"tests-with-coverage": "phpunit --coverage-clover coverage.xml",
"php-cs-fixer": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --diff --allow-risky=yes --ansi --dry-run"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}