composer.json 756 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "topthink/think-migration",
  3. "authors": [
  4. {
  5. "name": "yunwuxin",
  6. "email": "448901948@qq.com"
  7. }
  8. ],
  9. "license": "Apache-2.0",
  10. "autoload": {
  11. "psr-4": {
  12. "Phinx\\": "phinx/src/Phinx",
  13. "think\\migration\\": "src"
  14. }
  15. },
  16. "extra": {
  17. "think": {
  18. "services": [
  19. "think\\migration\\Service"
  20. ]
  21. }
  22. },
  23. "require": {
  24. "topthink/framework": "^6.0",
  25. "topthink/think-helper": "^3.0.3"
  26. },
  27. "minimum-stability": "dev",
  28. "suggest": {
  29. "fzaninotto/faker": "Required to use the factory builder (^1.8)."
  30. },
  31. "require-dev": {
  32. "fzaninotto/faker": "^1.8"
  33. }
  34. }