composer.json 750 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name" : "dodgepudding/wechat-php-sdk",
  3. "description" : "the wechat api library without framework dependency",
  4. "version" : "1.1",
  5. "require" : {
  6. "php" : ">=5.1.0"
  7. },
  8. "authors" : [ {
  9. "name" : "dodgepudding",
  10. "email" : "dodgepudding@gmail.com"
  11. }, {
  12. "name" : "binsee",
  13. "email" : "binsee@163.com"
  14. } ],
  15. "keywords" : [ "wechat", "weixin", "thinkphp", "sample" ],
  16. "support" : {
  17. "issues" : "https://github.com/dodgepudding/wechat-php-sdk/issues",
  18. "wiki" : "https://github.com/dodgepudding/wechat-php-sdk/wiki",
  19. "source" : "https://github.com/dodgepudding/wechat-php-sdk"
  20. },
  21. "autoload" : {
  22. "psr-4" : {
  23. "dodgepudding\\wechat\\sdk\\" : ""
  24. }
  25. },
  26. "type" : "library",
  27. "license" : "LGPL"
  28. }