aboutsummaryrefslogtreecommitdiffhomepage
path: root/php/tests/test.sh
Commit message (Collapse)AuthorAge
* Throw error if user want to access message properties (#4603)Gravatar Paul Yang2018-05-10
| | | | | | * Throw error if user want to access message properties * Fix typo
* Fix more memory leak for php c extension (#4211)Gravatar Paul Yang2018-01-25
| | | | | | * Fix more memory leak for php c extension * Fix memory leak for php5.5
* Expose descriptor API in php c extension (#3422)Gravatar Paul Yang2017-08-02
|
* Support PHP generic services (#3269)Gravatar Matt A2017-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | * 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)Gravatar Brent Shaffer2017-06-27
| | | | | | | | | | | | | | | | | | | | | | | | * 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)Gravatar Paul Yang2017-05-05
| | | | | | * Add compatibility test for php. * Revert API incompatible change.
* Add mergeFrom method on Message (#2766)Gravatar Paul Yang2017-03-01
| | | | | | | | 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)Gravatar Paul Yang2016-12-08
| | | | 1. Generate single file for each message. 2. Lazily initiate metadata.
* Rename Empty to GPBEmpty in php generated file.Gravatar Paul Yang2016-11-16
| | | | 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)Gravatar Paul Yang2016-11-10
|
* Fix compile error for php on Mac.Gravatar Bo Yang2016-10-10
|
* Test php5.5_c test on jenkinsGravatar Bo Yang2016-10-10
|
* Auto-generate proto files for tests.Gravatar Bo Yang2016-09-15
|
* Check in php implementation. (#2052)Gravatar Paul Yang2016-09-15
This pull request includes two implementation: C extension and PHP package. Both implementations support encode/decode of singular, repeated and map fields.