composer.json 921 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "ibrand/point",
  3. "type": "library",
  4. "description": "GuoJiangClub Point component",
  5. "keywords": [
  6. "GuoJiangClub",
  7. "Point",
  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. "prettus/l5-repository": "^2.1",
  20. "ibrand/laravel-scheduling": "~1.0"
  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\\Point\\": "src/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "GuoJiangClub\\Component\\Point\\Test\\": "tests"
  36. }
  37. },
  38. "extra": {
  39. "laravel": {
  40. "providers": [
  41. "GuoJiangClub\\Component\\Point\\PointServiceProvider"
  42. ]
  43. }
  44. },
  45. "config": {
  46. "preferred-install": "dist",
  47. "secure-http": false
  48. },
  49. "minimum-stability": "dev",
  50. "prefer-stable": true
  51. }