aboutsummaryrefslogtreecommitdiff
path: root/php/tests/test.sh
Commit message (Collapse)AuthorAgeFilesLines
* 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.