-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.54 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.54 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
49
50
51
{
"name": "sokil/message-bus-bundle",
"description": "Tools for Symfony Messenger",
"type": "symfony-bundle",
"require": {
"php": "^8.2",
"symfony/messenger": "^7.1",
"symfony/config": "^7.1",
"symfony/dependency-injection": "^7.1",
"symfony/serializer": "^7.1",
"doctrine/annotations": "^1.13",
"symfony/http-kernel": "^7.1",
"symfony/yaml": "^7.1",
"symfony/property-access": "^7.1"
},
"require-dev": {
"ext-amqp": "*",
"phpunit/phpunit": "^10.5.35",
"symfony/amqp-messenger": "^7.1",
"vimeo/psalm": "^5.26.1",
"squizlabs/php_codesniffer": "^3.5.4"
},
"suggest": {
"symfony/amqp-messenger": "To support AMQP messenger",
"ext-amqp": "To support AMQP messenger"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Sokil\\MessageBusBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sokil\\MessageBusBundle\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
}
},
"scripts": {
"psalm": "./vendor/bin/psalm --show-info=true",
"check-style": "./vendor/bin/phpcs",
"fix-style": "./vendor/bin/phpcbf",
"cover-ci": "./vendor/bin/phpunit --verbose ./tests --coverage-text --colors=never --log-junit report.xml",
"test": "./vendor/bin/phpunit"
}
}