-
Notifications
You must be signed in to change notification settings - Fork 58
/
composer.json
44 lines (44 loc) · 1019 Bytes
/
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
{
"name": "topthink/think-migration",
"authors": [
{
"name": "yunwuxin",
"email": "448901948@qq.com"
}
],
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Phinx\\": "phinx",
"think\\migration\\": "src"
}
},
"require": {
"php": ">=7.2",
"topthink/framework": "^6.0 || ^8.0",
"topthink/think-helper": "^3.0.3"
},
"require-dev": {
"fzaninotto/faker": "^1.8",
"robmorgan/phinx": "^0.13.4",
"composer/composer": "^2.5.8"
},
"suggest": {
"fzaninotto/faker": "Required to use the factory builder (^1.8)."
},
"scripts": {
"post-install-cmd": [
"think\\migration\\UsePhinx::run"
],
"post-update-cmd": [
"think\\migration\\UsePhinx::run"
]
},
"extra": {
"think": {
"services": [
"think\\migration\\Service"
]
}
}
}