composer.json 945 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "ibrand/discount",
  3. "type": "library",
  4. "description": "ibrand discount component",
  5. "keywords": [
  6. "ibrand",
  7. "discount",
  8. "component"
  9. ],
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "shjchen",
  14. "email": "i@chenhow.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=7.0",
  19. "ibrand/laravel-cache": "~1.0.0",
  20. "prettus/l5-repository": "^2.1"
  21. },
  22. "require-dev": {
  23. "mockery/mockery": "~1.0",
  24. "phpunit/phpunit": "~6.0",
  25. "orchestra/testbench": "~3.5",
  26. "orchestra/database": "~3.5"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "GuoJiangClub\\Component\\Discount\\": "src/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "GuoJiangClub\\Component\\Discount\\Test\\": "tests"
  36. }
  37. },
  38. "extra": {
  39. "laravel": {
  40. "providers": [
  41. "GuoJiangClub\\Component\\Discount\\Providers\\DiscountServiceProvider"
  42. ]
  43. }
  44. },
  45. "minimum-stability": "dev",
  46. "prefer-stable": true
  47. }