composer.json 891 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "ibrand/common",
  3. "type": "library",
  4. "description": "iBrand common server.",
  5. "keywords": [
  6. "iBrand",
  7. "common",
  8. "server"
  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. "overtrue/http": "~1.0",
  20. "barryvdh/laravel-cors": "^0.11.2"
  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. "iBrand\\Common\\": "src/"
  30. },
  31. "files": [
  32. "src/helpers.php"
  33. ]
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. }
  38. },
  39. "extra": {
  40. "laravel": {
  41. "providers": [
  42. "iBrand\\Common\\CommonServiceProvider",
  43. "iBrand\\Common\\Wechat\\WechatServiceProvider",
  44. "iBrand\\Common\\Platform\\ServiceProvider"
  45. ],
  46. "aliases": {
  47. }
  48. }
  49. },
  50. "minimum-stability": "dev",
  51. "prefer-stable": true
  52. }