-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.46 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.46 KB
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
{
"name": "nextras/migrations",
"description": "Database migrations runner",
"type": "library",
"license": "BSD-3-Clause",
"require": {
"php": ">=8.0",
"nextras/multi-query-parser": "^2.0"
},
"require-dev": {
"dibi/dibi": "^4.0 || ^5.0",
"doctrine/cache": "^1.11",
"doctrine/dbal": "^2.12 || ^3.0 || ^4.0",
"doctrine/doctrine-bundle": "^2.0 || ^3.0",
"doctrine/orm": "^2.7 || ^3.0",
"mockery/mockery": "^1.3",
"nette/database": "^2.4 || ^3.0",
"nette/di": "^2.4 || ^3.0",
"nette/tester": "^2.3",
"nette/utils": "^2.3 || ^3.0 || ^4.0",
"nextras/dbal": "^4.0 || ^5.0",
"symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/yaml": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.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"
},
"autoload": {
"psr-4": { "Nextras\\Migrations\\": "src/" },
"classmap": ["src/exceptions.php"]
},
"autoload-dev": {
"classmap": ["tests/inc"]
}
}