composer.json 499 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "six-shop/hello",
  3. "description": "hello扩展",
  4. "type": "sixshop-extension",
  5. "keywords": [
  6. "sixshop",
  7. "thinkphp"
  8. ],
  9. "require": {
  10. "php": ">=8.3",
  11. "six-shop/core": "^v0.3"
  12. },
  13. "authors": [
  14. {
  15. "name": "hui he",
  16. "email": "runphp@qq.com"
  17. }
  18. ],
  19. "license": "MIT",
  20. "autoload": {
  21. "psr-4": {
  22. "SixShop\\Hello\\": "src"
  23. }
  24. },
  25. "extra": {
  26. "sixshop": {
  27. "id": "hello",
  28. "class": "SixShop\\Hello\\Extension"
  29. }
  30. }
  31. }