forked from nextras/migrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.27 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
{
"name": "nextras/migrations",
"description": "Database migrations runner",
"type": "library",
"license": "BSD-3-Clause",
"require": {
"php": ">=5.4"
},
"require-dev": {
"dibi/dibi": "~3.0",
"dibi/dibi-legacy-2.x": "~2.3",
"doctrine/dbal": "~2.5",
"nette/database": "~2.2",
"nette/di": "~2.3.12 | ~2.4",
"nette/tester": "~1.4",
"nette/utils": "~2.3",
"nextras/dbal": "~1.0 | ~2.0",
"mockery/mockery": "~0.9",
"symfony/console": "~2.6 | ~3.0",
"ext-openssl": "*"
},
"suggest": {
"dibi/dibi": "to use DibiAdapter",
"nette/database": "to use NetteAdapter",
"nextras/dbal": "to use NextrasAdapter",
"doctrine/dbal": "to use DoctrineAdapter",
"symfony/console": "to use Symfony commands"
},
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
},
"autoload": {
"psr-4": { "Nextras\\Migrations\\": "src/" },
"classmap": ["src/exceptions.php", "src/deprecated"]
},
"repositories": [
{
"type": "package",
"package": {
"name": "dibi/dibi-legacy-2.x",
"version": "2.3.99",
"autoload": {
"classmap": ["dibi/drivers", "dibi/libs"],
"exclude-from-classmap": ["dibi/libs/Dibi.php"]
},
"source": {
"url": "https://github.com/dg/dibi.git",
"type": "git",
"reference": "v2.3.5"
}
}
}
]
}