composer.json 735 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "longyi/reward-points",
  3. "description": "Reward Points System for Bagisto",
  4. "keywords": ["bagisto", "reward", "points", "loyalty"],
  5. "license": "MIT",
  6. "type": "library",
  7. "version": "1.0.0",
  8. "authors": [
  9. {
  10. "name": "Longyi Team",
  11. "email": "dev@longyi.com"
  12. }
  13. ],
  14. "require": {
  15. "php": "^8.1|^8.2",
  16. "illuminate/support": "^10.0|^11.0"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "Longyi\\RewardPoints\\": "src/"
  21. }
  22. },
  23. "extra": {
  24. "laravel": {
  25. "providers": [
  26. "Longyi\\RewardPoints\\Providers\\RewardPointsServiceProvider"
  27. ],
  28. "aliases": {}
  29. }
  30. }
  31. }