composer.json 529 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "six-shop/maker-bundle",
  3. "description": "这个扩展用来生成sixshop扩展代码",
  4. "type": "library",
  5. "require": {
  6. "topthink/framework": "^8.1"
  7. },
  8. "license": "MIT",
  9. "minimum-stability": "dev",
  10. "prefer-stable": true,
  11. "autoload": {
  12. "psr-4": {
  13. "SixShop\\MakerBundle\\": "src/"
  14. }
  15. },
  16. "bin": [
  17. "bin/sixshop-maker"
  18. ],
  19. "authors": [
  20. {
  21. "name": "runphp",
  22. "email": "runphp@qq.com"
  23. }
  24. ]
  25. }