composer.json 578 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "six-shop/limit-purchase",
  3. "description": "商品限购功能扩展",
  4. "type": "sixshop-extension",
  5. "keywords": [
  6. "sixshop",
  7. "limit-purchase",
  8. "thinkphp"
  9. ],
  10. "require": {
  11. "php": ">=8.3",
  12. "six-shop/system": ">=0.3.32 <1.0"
  13. },
  14. "authors": [
  15. {
  16. "name": "hui he",
  17. "email": "runphp@qq.com"
  18. }
  19. ],
  20. "license": "MIT",
  21. "autoload": {
  22. "psr-4": {
  23. "SixShop\\LimitPurchase\\": "src"
  24. }
  25. },
  26. "extra": {
  27. "sixshop": {
  28. "id": "limit_purchase",
  29. "class": "SixShop\\LimitPurchase\\Extension"
  30. }
  31. }
  32. }