aboutsummaryrefslogtreecommitdiff
path: root/php/src/Google/Protobuf/Internal
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-101-0/+5
|
* 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-0831-0/+5719
| | | | 1. Generate single file for each message. 2. Lazily initiate metadata.
* 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
|
* PHP: support 7.0 on PHP implementation (#2162)Stanley Cheung2016-10-101-21/+24
| | | | | | * PHP: support 7.0 * Also fix in test_util.php
* Check in php implementation. (#2052)Paul Yang2016-09-1515-0/+3254
This pull request includes two implementation: C extension and PHP package. Both implementations support encode/decode of singular, repeated and map fields.