TaoLer/vendor/topthink/think-migration/composer.json

45 lines
1019 B
JSON
Raw Normal View History

{
"name": "topthink/think-migration",
"authors": [
{
"name": "yunwuxin",
"email": "448901948@qq.com"
}
],
"license": "Apache-2.0",
"autoload": {
"psr-4": {
2024-04-01 10:04:16 +08:00
"Phinx\\": "phinx",
"think\\migration\\": "src"
}
},
"require": {
2024-04-01 10:04:16 +08:00
"php": ">=7.2",
2023-08-02 19:41:11 +08:00
"topthink/framework": "^6.0 || ^8.0",
"topthink/think-helper": "^3.0.3"
},
2024-04-01 10:04:16 +08:00
"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)."
},
2024-04-01 10:04:16 +08:00
"scripts": {
"post-install-cmd": [
"think\\migration\\UsePhinx::run"
],
"post-update-cmd": [
"think\\migration\\UsePhinx::run"
]
},
"extra": {
"think": {
"services": [
"think\\migration\\Service"
]
}
}
}