aboutsummaryrefslogtreecommitdiff
path: root/php/tests/test.sh
Commit message (Collapse)AuthorAgeFilesLines
* Expose descriptor API in php c extension (#3422)Paul Yang2017-08-021-1/+1
|
* Support PHP generic services (#3269)Matt A2017-07-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | * Add php_generic_services option * Generate PHP generic services * Respect namespaces for generated PHP services * Test PHP generated services * Rename PHP generator service method doc comment function * Correct phpdoc service method case * Test namespaced PHP generic services * Always use the FQCN for PHP generic service input/output * Add generated_service_test to php test.sh * Add php service test protos to CI * Add php service files to php_EXTRA_DIST * Use Interface suffix for php generic services
* adds PHPDoc @return and @param for getters and setters respectively (#3131)Brent Shaffer2017-06-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | * adds PHPDoc @return and @param for getters and setters respectively * addresses changes in PR review * adds documentation tests * Update php_generator: - Prepend \ to names where required - Remove <pre> tags - Update protobuf field comments * Updates class files with the protobuf changes * Addresses review comments * removes Protobuf Type line from PHP generated classes * fixes phpdoc test * adds array types to phpdoc
* Add compatibility test for php. (#3041)Paul Yang2017-05-051-2/+2
| | | | | | * Add compatibility test for php. * Revert API incompatible change.
* Add mergeFrom method on Message (#2766)Paul Yang2017-03-011-3/+5
| | | | | | | | This method merges the contents of the specified message into the current message. Singular fields that are set in the specified message overwrite the corresponding fields in the current message. Repeated fields are appended. Map fields key-value pairs are overritten. Singular/Oneof sub-messages are recursively merged. All overritten sub-messages are deep-copied.
* Make php generated code conform to PSR-4. (#2435)Paul Yang2016-12-081-5/+2
| | | | 1. Generate single file for each message. 2. Lazily initiate metadata.
* Rename Empty to GPBEmpty in php generated file.Paul Yang2016-11-161-1/+1
| | | | In php, class name cannot be "Empty". Modified code generator to (#2375) generate GPBEmpty instead (for google.protobuf.Empty only). Also change runtime code to work with the new generated code accordingly.
* Fix php c extension on 32-bit machines. (#2348)Paul Yang2016-11-101-1/+2
|
* Fix compile error for php on Mac.Bo Yang2016-10-101-5/+0
|
* Test php5.5_c test on jenkinsBo Yang2016-10-101-5/+5
|
* Auto-generate proto files for tests.Bo Yang2016-09-151-3/+12
|
* Check in php implementation. (#2052)Paul Yang2016-09-151-0/+23
This pull request includes two implementation: C extension and PHP package. Both implementations support encode/decode of singular, repeated and map fields.