composer.json 898 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "google/common-protos",
  3. "type": "library",
  4. "description": "Google API Common Protos for PHP",
  5. "keywords": ["google"],
  6. "homepage": "https://github.com/googleapis/common-protos-php",
  7. "license": "Apache-2.0",
  8. "require": {
  9. "php": ">=7.4",
  10. "google/protobuf": "^3.6.1"
  11. },
  12. "require-dev": {
  13. "phpunit/phpunit": "^9.0"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "Google\\Api\\": "src/Api",
  18. "Google\\Cloud\\": "src/Cloud",
  19. "Google\\Iam\\": "src/Iam",
  20. "Google\\Rpc\\": "src/Rpc",
  21. "Google\\Type\\": "src/Type",
  22. "GPBMetadata\\Google\\Api\\": "metadata/Api",
  23. "GPBMetadata\\Google\\Cloud\\": "metadata/Cloud",
  24. "GPBMetadata\\Google\\Iam\\": "metadata/Iam",
  25. "GPBMetadata\\Google\\Logging\\": "metadata/Logging",
  26. "GPBMetadata\\Google\\Rpc\\": "metadata/Rpc",
  27. "GPBMetadata\\Google\\Type\\": "metadata/Type"
  28. }
  29. }
  30. }