-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (64 loc) · 2.19 KB
/
Copy pathcomposer.json
File metadata and controls
73 lines (64 loc) · 2.19 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "fivelab/migrator",
"description": "Versioned migrations for any storage: SQL via PDO, ClickHouse and more, with independent migration groups and pluggable history storage.",
"keywords": ["migration", "migrations", "migrator", "database", "database-migrations", "schema", "pdo", "mysql", "clickhouse", "symfony", "phpmig"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vitalii Zhuk",
"email": "v.zhuk@fivelab.org"
},
{
"name": "FiveLab Team",
"email": "dev@fivelab.org",
"homepage": "https://fivelab.org"
}
],
"require": {
"php": "^8.4",
"psr/container": "^1.1 | ^2.0"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"phpunit/phpunit": "~13.0",
"phpmetrics/phpmetrics": "~3.0",
"phpstan/phpstan": "~2.2.0",
"escapestudios/symfony2-coding-standard": "~3.5",
"fivelab/ci-rules": "dev-master",
"matthiasnoback/symfony-dependency-injection-test": "~6.3.0",
"symfony/console": "~6.4 | ~7.0 | ~8.0",
"symfony/dependency-injection": "~6.4 | ~7.0 | ~8.0",
"symfony/config": "~6.4 | ~7.0 | ~8.0",
"smi2/phpclickhouse": "~1.6.0"
},
"minimum-stability": "RC",
"prefer-stable": true,
"suggest": {
"ext-pdo": "Implement version reader based on PDO (read from specific table).",
"smi2/phpclickhouse": "To create migrations for ClickHouse (ClickHouseMigrationFactory).",
"symfony/console": "Use console commands for migrations.",
"symfony/dependency-injection": "Integrate library with Symfony projects.",
"symfony/config": "Integrate library with Symfony projects (configuration)."
},
"autoload": {
"psr-4": {
"FiveLab\\Component\\Migrator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FiveLab\\Component\\Migrator\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"thanks": {
"name": "fivelab/migrator",
"url": "https://github.com/FiveLab/Migrator"
}
}
}