-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
41 lines (41 loc) · 1.24 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
{
"name": "doesntmattr/mongodb-migrations-bundle",
"type": "symfony-bundle",
"description": "Symfony MongoDBMigrationsBundle",
"keywords": ["doesntmattr", "antimattr", "database", "doctrine", "migration", "mongodb", "symfony"],
"homepage": "http://github.com/doesntmattr/mongodb-migrations-bundle",
"license": "MIT",
"authors": [
{"name": "Matthew Fitzgerald", "email": "matthewfitz@gmail.com"}
],
"conflict": {
"antimattr/mongodb-migrations-bundle" : "*"
},
"require": {
"php": "^7.1",
"doesntmattr/mongodb-migrations": "^3.0",
"doctrine/mongodb-odm-bundle": "^3.0 || ^4.0",
"symfony/framework-bundle": "^3.4 || ^4.0 || ^5.0",
"symfony/console": "^3.4 || ^4.0 || ^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"AntiMattr\\Bundle\\MongoDBMigrationsBundle\\": ""
},
"exclude-from-classmap": ["Tests/"]
},
"autoload-dev": {
"psr-4": {
"AntiMattr\\Bundle\\MongoDBMigrationsBundle\\": "Tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}