-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
48 lines (48 loc) · 1.42 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": "nextras/migrations",
"description": "Database migrations runner",
"type": "library",
"license": "BSD-3-Clause",
"require": {
"php": ">=7.1"
},
"require-dev": {
"dibi/dibi": "~3.0 | ~4.0 | ~5.0",
"doctrine/cache": "~1.11 | ~2.0",
"doctrine/dbal": "~2.5 | ~3.0",
"doctrine/orm": "~2.5",
"mockery/mockery": "~1.3",
"nette/database": "~2.4 | ~3.0",
"nette/di": "~2.4.10 | ~3.0",
"nette/tester": "~2.3",
"nette/utils": "~2.3 | ~3.0 | ~4.0",
"nextras/dbal": "~1.0 | ~2.0 | ~3.0 | ~4.0 | ~5.0@dev",
"symfony/config": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0 | ~7.0",
"symfony/console": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0 | ~7.0",
"symfony/dependency-injection": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0 | ~7.0",
"symfony/framework-bundle": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0 | ~7.0",
"symfony/http-kernel": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0 | ~7.0",
"tracy/tracy": "~2.6",
"ext-openssl": "*"
},
"suggest": {
"dibi/dibi": "to use DibiAdapter",
"nette/database": "to use NetteAdapter",
"nextras/dbal": "to use NextrasAdapter",
"doctrine/dbal": "to use DoctrineAdapter",
"doctrine/orm": "to generate migrations with Doctrine SchemaTool",
"symfony/console": "to use Symfony commands"
},
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
},
"autoload": {
"psr-4": { "Nextras\\Migrations\\": "src/" },
"classmap": ["src/exceptions.php"]
},
"autoload-dev": {
"classmap": ["tests/inc"]
}
}