composer.json 916 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name":"alipaysdk/easysdk",
  3. "description":"支付宝官方 Alipay Easy SDK",
  4. "type":"library",
  5. "version":"2.2.3",
  6. "authors":[
  7. {
  8. "name":"junying.wjy",
  9. "email":"junying.wjy@antfin.com"
  10. }
  11. ],
  12. "autoload":{
  13. "psr-4":{
  14. "Alipay\\EasySDK\\":"php/src/"
  15. }
  16. },
  17. "autoload-dev": {
  18. "psr-4": {
  19. "Alipay\\EasySDK\\Test\\": "php/test/"
  20. }
  21. },
  22. "license":"Apache-2.0",
  23. "minimum-stability":"dev",
  24. "require":{
  25. "php": ">=7.0",
  26. "ext-curl":"*",
  27. "ext-ctype":"*",
  28. "ext-dom":"*",
  29. "ext-fileinfo": "*",
  30. "ext-json":"*",
  31. "ext-libxml":"*",
  32. "ext-simplexml":"*",
  33. "ext-mbstring":"*",
  34. "ext-openssl":"*",
  35. "ext-xmlwriter": "*",
  36. "guzzlehttp/guzzle":">=6.3",
  37. "alibabacloud/tea": "^3.1",
  38. "alibabacloud/tea-fileform": "^0.3.2"
  39. },
  40. "require-dev": {
  41. "phpunit/phpunit": "^7.5"
  42. },
  43. "repositories":{
  44. "packagist":{
  45. "type":"composer",
  46. "url":"https://mirrors.aliyun.com/composer/"
  47. }
  48. }
  49. }