composer.json 799 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "ibrand/pay",
  3. "type": "library",
  4. "description": "ibrand pay component",
  5. "keywords": [
  6. "iBrand",
  7. "pay",
  8. "component"
  9. ],
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "shjchen",
  14. "email": "ibrand.shjchen@foxmail.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=7.0",
  19. "hidehalo/nanoid-php": "^1.1",
  20. "yansongda/pay": "^2.5"
  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. "iBrand\\Component\\Pay\\": "src/"
  31. }
  32. },
  33. "extra": {
  34. "laravel": {
  35. "providers": [
  36. "iBrand\\Component\\Pay\\PayServiceProvider"
  37. ],
  38. "aliases": {
  39. "Charge": "iBrand\\Component\\Pay\\Facades\\Charge"
  40. }
  41. }
  42. },
  43. "minimum-stability": "dev",
  44. "prefer-stable": true
  45. }