-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.68 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.68 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
52
53
54
55
56
57
58
{
"name": "babelqueue/symfony",
"description": "Symfony adapter for BabelQueue: a Messenger serializer that speaks the canonical polyglot envelope, so Symfony services interoperate with Laravel, Go, Python, .NET and Node over one wire format. Built on babelqueue/php-sdk.",
"keywords": [
"symfony",
"messenger",
"queue",
"polyglot",
"microservices",
"json"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Muhammet Şafak",
"email": "info@muhammetsafak.com.tr"
}
],
"homepage": "https://babelqueue.com",
"support": {
"issues": "https://github.com/BabelQueue/symfony/issues",
"source": "https://github.com/BabelQueue/symfony"
},
"require": {
"php": "^8.2",
"babelqueue/php-sdk": "^1.15.0",
"symfony/messenger": "^6.4|^7.0",
"symfony/config": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5|^11.0"
},
"autoload": {
"psr-4": {
"BabelQueue\\Symfony\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BabelQueue\\Symfony\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse",
"test": "phpunit",
"test:coverage": "phpunit --coverage-clover=coverage.xml",
"coverage:check": "php bin/check-coverage.php coverage.xml 90"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}