composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name":"alipaysdk/easysdk",
  3. "description":"支付宝官方 Alipay Easy SDK",
  4. "type":"library",
  5. "version":"2.0.0",
  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. "pimple/pimple": "^3.0",
  36. "xin/container":"^2.0.1",
  37. "guzzlehttp/guzzle":">=6.3",
  38. "psr/log": "^1.1",
  39. "ext-xmlwriter": "*",
  40. "songshenzong/support": "^2.0",
  41. "danielstjules/stringy": "^3.1",
  42. "mtdowling/jmespath.php": "^2.4",
  43. "adbario/php-dot-notation": "^2.2",
  44. "alibabacloud/tea": "^3.1",
  45. "alibabacloud/tea-fileform": "^0.3.2"
  46. },
  47. "require-dev": {
  48. "phpunit/phpunit": "^7.5"
  49. },
  50. "repositories":{
  51. "packagist":{
  52. "type":"composer",
  53. "url":"https://mirrors.aliyun.com/composer/"
  54. }
  55. }
  56. }