composer.json 788 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "ibrand/setting",
  3. "type": "library",
  4. "description": "ibrand setting component",
  5. "keywords": [
  6. "ibrand",
  7. "setting",
  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. },
  20. "require-dev": {
  21. "mockery/mockery": "~0.9",
  22. "phpunit/phpunit": "~6.0",
  23. "orchestra/testbench": "~3.5",
  24. "orchestra/database": "^3.5"
  25. },
  26. "autoload": {
  27. "files": [
  28. "src/helpers.php"
  29. ],
  30. "psr-4": {
  31. "iBrand\\Component\\Setting\\": "src/"
  32. }
  33. },
  34. "extra": {
  35. "laravel": {
  36. "providers": [
  37. "iBrand\\Component\\Setting\\ServiceProvider"
  38. ]
  39. }
  40. },
  41. "minimum-stability": "dev",
  42. "prefer-stable": true
  43. }