aboutsummaryrefslogtreecommitdiff
path: root/php/ext/google/protobuf/type_check.c
Commit message (Collapse)AuthorAgeFilesLines
* Initialize python-wheel branchBo Yang2018-01-231-575/+0
|
* Fix several more memory leakBo Yang2017-12-061-0/+1
|
* Fix memory leak when creating map field via array.Bo Yang2017-12-061-2/+1
|
* Fix memory leak when creating repeated field via array.Bo Yang2017-12-061-2/+1
|
* Add well known types to php runtime. (#3697)Paul Yang2017-10-051-14/+23
| | | | | | | | | | | | | | | | | | | | | | | * 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)Paul Yang2017-04-191-25/+60
|
* Update commit number in Docker to update composer dependency (#2869)Paul Yang2017-03-211-2/+4
|
* Repeated/Map field setter should accept a regular PHP array (#2817)Paul Yang2017-03-101-8/+108
| | | | | | | | 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)Paul Yang2016-11-101-9/+130
|
* Fix segmentation fault when ZTS is defined.Bo Yang2016-10-101-1/+0
|
* Check in php implementation. (#2052)Paul Yang2016-09-151-0/+310
This pull request includes two implementation: C extension and PHP package. Both implementations support encode/decode of singular, repeated and map fields.