forked from facile-it/mongodb-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.75 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
{
"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.1",
"ext-mongodb": "^1.1.5",
"mongodb/mongodb": "^1.0",
"symfony/framework-bundle": "^3.0 || ^4.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^2.3",
"symfony/web-profiler-bundle": "^2.8 || ^3.0 || ^4.0",
"symfony/console": "^2.8 || ^3.0 || ^4.0",
"phpunit/phpunit": "^6.0",
"symfony/phpunit-bridge": "^4.2",
"facile-it/facile-coding-standard": "^0.3.1",
"phpstan/phpstan": "^0.11.7"
},
"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"
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix --diff"
}
}