composer.json 683 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "GuoJiangClub/auth-api",
  3. "type": "library",
  4. "description": "GuoJiangClub auth api.",
  5. "keywords": [
  6. "GuoJiangClub",
  7. "auth",
  8. "api"
  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-sms": "~1.0",
  20. "ibrand/common": "~1.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "~6.0",
  24. "orchestra/testbench": "~3.5",
  25. "orchestra/database": "~3.5"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "GuoJiangClub\\Auth\\Api\\": "src"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. }
  35. },
  36. "extra": {
  37. "laravel": {
  38. "providers": [
  39. ]
  40. }
  41. },
  42. "minimum-stability": "dev",
  43. "prefer-stable": true
  44. }