composer.json 623 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "jrtk/aliyun-ots-sdk-php",
  3. "description": "Aliyun OTS SDK for PHP",
  4. "homepage": "http://www.aliyun.com/product/ots/",
  5. "type": "library",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Aliyuncs",
  10. "homepage": "http://www.aliyun.com"
  11. }
  12. ],
  13. "require": {
  14. "php":">=5.3",
  15. "guzzlehttp/guzzle":"^6.3"
  16. },
  17. "require-dev" : {
  18. },
  19. "minimum-stability": "stable",
  20. "autoload": {
  21. "files": ["src/ProtoBuffer/pb_message.php","src/ProtoBuffer/pb_proto_ots.php"],
  22. "psr-4": {"Aliyun\\OTS\\": "src"}
  23. }
  24. }