composer.json 416 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "volcengine/volc-sdk-php",
  3. "type": "library",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "bytedance"
  8. }
  9. ],
  10. "require": {
  11. "php": ">=7.0",
  12. "guzzlehttp/guzzle": "*",
  13. "ext-json": "*",
  14. "google/protobuf": "*",
  15. "google/gax": "*",
  16. "ext-openssl": "*"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "Volc\\": "src/",
  21. "Test\\": "tests/"
  22. }
  23. },
  24. "description": ""
  25. }