composer.json 819 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "ibrand/laravel-aliyun-vod",
  3. "type": "library",
  4. "description": "iBrand aliyun vod.",
  5. "keywords": [
  6. "iBrand",
  7. "aliyun",
  8. "vod"
  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. "alibabacloud/sdk": "~1.0"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "~6.0",
  23. "orchestra/testbench": "~3.5",
  24. "orchestra/database": "~3.5"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "iBrand\\Aliyun\\Vod\\": "src/"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "iBrand\\Aliyun\\Vod\\Test\\": "tests"
  34. }
  35. },
  36. "extra": {
  37. "laravel": {
  38. "providers": [
  39. "iBrand\\Aliyun\\Vod\\ServiceProvider"
  40. ]
  41. }
  42. },
  43. "minimum-stability": "dev",
  44. "prefer-stable": true
  45. }