-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
77 lines (77 loc) · 2.4 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
72
73
74
75
76
77
{
"name": "facile-it/mongodb-bundle",
"description": "Bundle service integration of official [mongodb/mongo-php-library](https://github.com/mongodb/mongo-php-library) driver library",
"keywords": [
"MongoDB",
"Symfony",
"Database"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Ilario Pierbattista",
"email": "pierbattista.ilario@gmail.com"
},
{
"name": "Alessandro Galli",
"email": "a.galli85@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-mongodb": "^1.6",
"mongodb/mongodb": "^1.5",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^4 || ^5 || ^6",
"symfony/web-profiler-bundle": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"phpunit/phpunit": "^9.6.13 || ^10.5.27",
"symfony/browser-kit": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/dom-crawler": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^7.0",
"symfony/routing": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"facile-it/facile-coding-standard": "1.3.0",
"phpstan/phpstan": "1.12.7",
"phpstan/extension-installer": "1.4.3",
"jangregor/phpstan-prophecy": "1.0.2",
"phpspec/prophecy": "^1.17",
"rector/rector": "^1.0.3",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/monolog-bundle": "*"
},
"minimum-stability": "stable",
"suggest": {
"symfony/web-profiler-bundle": "Enables profiling of mongodb queries",
"symfony/console": "Enables console commands"
},
"autoload": {
"psr-4": {
"Facile\\MongoDbBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Facile\\MongoDbBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"facile-it/facile-coding-standard": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix --diff",
"test": "bin/phpunit tests"
}
}