-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (60 loc) · 1.73 KB
/
composer.json
File metadata and controls
69 lines (60 loc) · 1.73 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
{
"name": "fivelab/migrator",
"description": "The library for easy implement migration system.",
"keywords": ["migration", "migrator"],
"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"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"phpunit/phpunit": "~12.0",
"phpmetrics/phpmetrics": "~3.0",
"phpstan/phpstan": "~2.1.0",
"escapestudios/symfony2-coding-standard": "~3.5",
"fivelab/ci-rules": "dev-master",
"matthiasnoback/symfony-dependency-injection-test": "~6.1.0",
"symfony/console": "~6.4 | ~7.0",
"symfony/dependency-injection": "~6.4 | ~7.0",
"symfony/config": "~6.4 | ~7.0",
"smi2/phpclickhouse": "~1.6.0"
},
"minimum-stability": "RC",
"suggest": {
"ext-pdo": "Implement version reader based on PDO (read from specific table).",
"symfony/console": "Use console commands for migrations.",
"symfony/dependency-injection": "Integrate library with Symfony projects."
},
"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"
}
}
}