-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
48 lines (48 loc) · 1.36 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
{
"name": "doesntmattr/mongodb-migrations",
"type": "library",
"description": "Managed Database Migrations for MongoDB",
"keywords": ["doesntmattr", "antimattr", "database", "doctrine", "migration", "mongodb"],
"homepage": "http://github.com/doesntmattr/mongodb-migrations",
"license": "MIT",
"authors": [
{"name": "Matthew Fitzgerald", "email": "[email protected]"},
{"name": "Ryan Catlin", "email": "[email protected]"}
],
"conflict": {
"antimattr/mongodb-migrations" : "*"
},
"require": {
"php": "^7.1",
"ext-mongodb": "*",
"mongodb/mongodb": "^1.4",
"symfony/console": "^2.7 || ^3.4 || ^4.0 || ^5.0",
"symfony/yaml": "^2.7 || ^3.4 || ^4.0 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"friendsofphp/php-cs-fixer": "^2.0",
"mikey179/vfsstream": "1.*"
},
"autoload": {
"psr-4": {
"AntiMattr\\": "src/AntiMattr"
}
},
"autoload-dev": {
"psr-4": {
"AntiMattr\\": [
"vendor/antimattr/test-case/src/AntiMattr",
"tests/AntiMattr"
]
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"archive": {
"exclude": ["bin", "demo", "tests", "*phpunit.xml"]
}
}