composer.json 475 B

123456789101112131415161718192021
  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. "google/protobuf": "^3.6.1"
  10. },
  11. "require-dev": {
  12. "phpunit/phpunit": "^4.8.36||^8.5",
  13. "sami/sami": "*"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "Google\\": "src",
  18. "GPBMetadata\\Google\\": "metadata"
  19. }
  20. }
  21. }