-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
71 lines (71 loc) · 2.31 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
62
63
64
65
66
67
68
69
70
71
{
"name": "facile-it/mongodb-messenger-transport",
"description": "A Symfony Messenger transport on MongoDB, on top of facile-it/mongodb-bundle",
"keywords": [
"MongoDB",
"Symfony",
"Database",
"Transport",
"Messenger"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Alessandro Lai",
"email": "alessandro.lai85@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-mongodb": "^1.6",
"facile-it/mongodb-bundle": "^1.6",
"mongodb/mongodb": "^1.5",
"symfony/deprecation-contracts": "^2.1 || ^3.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/messenger": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"facile-it/facile-coding-standard": "^1.2",
"facile-it/symfony-functional-testcase": "^1.0",
"infection/infection": ">=0.23",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "1.10.62",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.6.13",
"symfony/browser-kit": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/flex": "^1.21.6 || ^2.0",
"symfony/phpunit-bridge": "^7.0",
"symfony/property-access": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/property-info": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/serializer": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/yaml": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Facile\\MongoDbMessenger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Facile\\MongoDbMessenger\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"facile-it/facile-coding-standard": true,
"infection/extension-installer": true,
"ocramius/package-versions": true,
"phpstan/extension-installer": true,
"symfony/flex": true
}
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff --ansi",
"cs-fix": "php-cs-fixer fix --verbose --ansi"
}
}