composer.json 940 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "ibrand/category",
  3. "type": "library",
  4. "description": "GuoJiangClub Category component",
  5. "keywords": [
  6. "GuoJiangClub",
  7. "Category",
  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. "kalnoy/nestedset":"~4.3"
  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\\Category\\": "src/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "GuoJiangClub\\Component\\Category\\Test\\": "tests"
  36. }
  37. },
  38. "extra": {
  39. "laravel": {
  40. "providers": [
  41. "GuoJiangClub\\Component\\Category\\CategoryServiceProvider"
  42. ]
  43. }
  44. },
  45. "minimum-stability": "dev",
  46. "prefer-stable": true
  47. }