-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
44 lines (44 loc) · 1.32 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
{
"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": "Alessandro Galli",
"email": "a.galli85@gmail.com"
}
],
"require": {
"php" : "^7.0",
"ext-mongodb": "^1.1.5",
"mongodb/mongodb": "^1.0",
"symfony/framework-bundle": "^2.8 || ^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"
},
"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": "0.x-dev"
}
},
"config": {
"bin-dir": "bin"
}
}