• michaelbausor's avatar
    Update PHP descriptors (#3391) · 21b0e558
    michaelbausor authored
    * Add descriptors test
    
    * Update descriptors tests
    
    * Add public descriptors
    
    * Add test_desriptors.proto to test script
    
    * Update composer files
    
    * Remove references to GPBType, update tests to be compatible with c
    
    * Update for c extension compatibility
    
    * Remove nested enums for descriptor, update tests
    
    * Strip leading '.' from descriptor name
    
    * Update tests with test for getClass, fix OneofDescriptor
    
    * Add new files to Makefile.am
    21b0e558
This project manages its dependencies using Composer and defines a package named google/protobuf. Learn more
composer.json 565 Bytes
{
  "name": "google/protobuf",
  "type": "library",
  "description": "proto library for PHP",
  "keywords": ["proto"],
  "homepage": "https://developers.google.com/protocol-buffers/",
  "license": "BSD-3-Clause",
  "require": {
    "php": ">=5.5.0"
  },
  "require-dev": {
    "phpunit/phpunit": ">=4.8.0"
  },
  "suggest": {
    "ext-bcmath": "Need to support JSON deserialization"
  },
  "autoload": {
    "psr-4": {
      "Google\\Protobuf\\": "php/src/Google/Protobuf",
      "GPBMetadata\\Google\\Protobuf\\": "php/src/GPBMetadata/Google/Protobuf"
    }
  }
}