aboutsummaryrefslogtreecommitdiff
path: root/php/src/Google/Protobuf
Commit message (Collapse)AuthorAgeFilesLines
* Bug fix: When encoding, negative int32 values should be padded to int64 (#2660)Paul Yang2017-02-074-14/+14
| | | in order to be wire compatible.
* Decoding unknown field should succeed.Bo Yang2017-01-102-0/+9
|
* Fix int64 decoding on 32-bit machines.Bo Yang2017-01-094-36/+82
|
* PHP fix int64 decoding (#2516)Sufir2017-01-081-28/+47
| | | | | | * fix int64 decoding * fix int64 decoding + tests
* Make php generated code conform to PSR-4. (#2435)Paul Yang2016-12-0832-2532/+5719
| | | | 1. Generate single file for each message. 2. Lazily initiate metadata.
* Rename Empty to GPBEmpty in php generated file.Paul Yang2016-11-161-1/+14
| | | | 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-0/+10
|
* Fix pure php implementation for 32-bit machine. (#2282)Paul Yang2016-10-256-230/+155
|
* Fix the bug that message without namespace is not found in the descriptor ↵Paul Yang2016-10-111-3/+7
| | | | pool. (#2240)
* PHP: support 7.0 on PHP implementation (#2162)Stanley Cheung2016-09-221-21/+24
| | | | | | * PHP: support 7.0 * Also fix in test_util.php
* Check in php implementation. (#2052)Paul Yang2016-09-1517-0/+6327
This pull request includes two implementation: C extension and PHP package. Both implementations support encode/decode of singular, repeated and map fields.