composer.json 374 B

12345678910111213141516171819202122
  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. "files": [
  16. "src/config.php"
  17. ]
  18. },
  19. "require-dev": {
  20. "topthink/framework": "^5.0"
  21. }
  22. }