composer.json 621 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "ibrand/ec-open-backend",
  3. "type": "library",
  4. "description": "iBrand EC's open source backend.",
  5. "keywords": [
  6. "iBrand",
  7. "e-commerce",
  8. "open source",
  9. "server",
  10. "backend"
  11. ],
  12. "authors": [
  13. {
  14. "name": "shjchen",
  15. "email": "ibrand.shjchen@foxmail.com"
  16. }
  17. ],
  18. "autoload": {
  19. "files": [
  20. "src/helpers.php"
  21. ],
  22. "psr-4": {
  23. "iBrand\\EC\\Open\\Backend\\Store\\": "src/"
  24. }
  25. },
  26. "license": "MIT",
  27. "minimum-stability": "dev",
  28. "prefer-stable": true
  29. }