composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "six-shop/maker-bundle",
  3. "description": "A powerful CLI tool for generating SixShop extension boilerplate code",
  4. "type": "library",
  5. "keywords": [
  6. "sixshop",
  7. "thinkphp",
  8. "generator",
  9. "scaffold",
  10. "cli",
  11. "extension",
  12. "maker",
  13. "boilerplate"
  14. ],
  15. "require": {
  16. "topthink/framework": "^8.1",
  17. "symfony/console": "^7.3",
  18. "cakephp/migrations": "^4.6",
  19. "six-shop/system": "^v1.0.0"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^10.5",
  23. "mockery/mockery": "^1.6"
  24. },
  25. "license": "MIT",
  26. "minimum-stability": "dev",
  27. "prefer-stable": true,
  28. "autoload": {
  29. "psr-4": {
  30. "SixShop\\MakerBundle\\": "src/"
  31. }
  32. },
  33. "bin": [
  34. "bin/sixshop-maker"
  35. ],
  36. "authors": [
  37. {
  38. "name": "runphp",
  39. "email": "runphp@qq.com"
  40. }
  41. ],
  42. "config": {
  43. "allow-plugins": {
  44. "six-shop/core": false
  45. }
  46. }
  47. }