composer.json 455 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "ibrand/shipping",
  3. "description": "GuoJiangClub's shipping component",
  4. "keywords": [
  5. "GuoJiangClub",
  6. "shipping",
  7. "component"
  8. ],
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "shjchen",
  13. "email": "i@chenhow.com"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=7.0"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "GuoJiangClub\\Component\\Shipping\\": "src/"
  22. }
  23. },
  24. "minimum-stability": "dev",
  25. "prefer-stable": true
  26. }