composer.json 487 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "xia/migration",
  3. "license": "Apache-2.0",
  4. "authors": [
  5. {
  6. "name": "小夏",
  7. "email": "yyw168@vip.qq.com"
  8. }
  9. ],
  10. "require": {
  11. "topthink/framework": "^6.0.0",
  12. "topthink/think-helper": "^3.0.3"
  13. },
  14. "autoload": {
  15. "psr-4": {
  16. "Phinx\\": "phinx/src/Phinx",
  17. "think\\migration\\": "src"
  18. }
  19. },
  20. "extra": {
  21. "think": {
  22. "services": [
  23. "think\\migration\\Service"
  24. ]
  25. }
  26. },
  27. "minimum-stability": "dev"
  28. }