composer.json 721 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "ibrand/uploader",
  3. "type": "library",
  4. "description": "iBrand upload",
  5. "keywords": [
  6. "ibrand",
  7. "upload"
  8. ],
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "tangqi",
  13. "email": "tangqi@element.vip"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=7.0",
  18. "overtrue/laravel-filesystem-qiniu": "^1.0"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "~6.0",
  22. "orchestra/testbench": "~3.5",
  23. "orchestra/database": "~3.5"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "iBrand\\Upload\\": "src/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "iBrand\\Upload\\Test\\": "tests/"
  33. }
  34. },
  35. "extra": {
  36. "laravel": {
  37. "providers": [
  38. "iBrand\\Upload\\UploadServiceProvider"
  39. ]
  40. }
  41. },
  42. "minimum-stability": "dev",
  43. "prefer-stable": true
  44. }