forked from doesntmattr/mongodb-migrations-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.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
{
"name": "devture/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": "[email protected]"},
{"name": "Slavi Pantaleev", "email": "[email protected]"}
],
"conflict": {
"antimattr/mongodb-migrations-bundle" : "*",
"doesntmattr/mongodb-migrations-bundle" : "*"
},
"require": {
"php": "^7.1 || ^8.0",
"devture/mongodb-migrations": "^4.1",
"doctrine/mongodb-odm-bundle": "^3.0 || ^4.0 || ^5.0",
"symfony/framework-bundle": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/console": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.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"
}
}
}