aboutsummaryrefslogtreecommitdiffhomepage
path: root/php/ext/google/protobuf/type_check.c
Commit message (Collapse)AuthorAge
* Fix several more memory leakGravatar Bo Yang2017-12-06
|
* Fix memory leak when creating map field via array.Gravatar Bo Yang2017-12-06
|
* Fix memory leak when creating repeated field via array.Gravatar Bo Yang2017-12-06
|
* Add well known types to php runtime. (#3697)Gravatar Paul Yang2017-10-05
| | | | | | | | | | | | | | | | | | | | | | | * Add well known types to php runtime. * Fix php7.0 tests * No longer generate empty.proto in test as it has been included in runtime. * Fix zts build * Clean code * Rename g_p_b_empty to empty. * Don't generate code for empty.proto in compatibility test * Fix 32-bit * Fix mac build * Fix Makefile.am to add new files
* Make PHP c extension work with PHP7 (#2951)Gravatar Paul Yang2017-04-19
|
* Update commit number in Docker to update composer dependency (#2869)Gravatar Paul Yang2017-03-21
|
* Repeated/Map field setter should accept a regular PHP array (#2817)Gravatar Paul Yang2017-03-10
| | | | | | | | Accept regular PHP array for repeated/map setter. Existing map/repeated field will be swapped by a clean map/repeated field. Then, elements in the array will be added to the map/repeated field. All elements will be type checked before adding. See #2686 for detail.
* Fix php c extension on 32-bit machines. (#2348)Gravatar Paul Yang2016-11-10
|
* Fix segmentation fault when ZTS is defined.Gravatar Bo Yang2016-10-10
|
* 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.