aboutsummaryrefslogtreecommitdiff
path: root/php
Commit message (Collapse)AuthorAgeFilesLines
* Add release logv3.5.0.1Bo Yang2017-12-061-0/+16
|
* Update php c extension version number to 3.5.0.1Bo Yang2017-12-062-4/+4
|
* Fix memory leak in php7Bo Yang2017-12-063-5/+11
|
* Fix several more memory leakBo Yang2017-12-064-6/+27
|
* Fix memory leak when creating map field via array.Bo Yang2017-12-062-2/+6
|
* Fix memory leak when creating repeated field via array.Bo Yang2017-12-062-2/+6
|
* Remove duplicate typedef. (#3975)Paul Yang2017-12-061-19/+7
|
* All integer types should accept null in json. (#3869)Paul Yang2017-11-131-5/+6
|
* Fix php well known type conformance tests (#3828) (#3840)Paul Yang2017-11-047-49/+508
| | | | | | | | | | | | | | | * Fix php well known type conformance tests * Properly generate code for test.proto * Provide GPBMetadata files in c extensions for generated files to import. * Remove unnecessary test * Clean up code * Add declaration for initOnce. * Refactoring
* update joda-time javadoc urlxuwei-k2017-10-301-1/+1
|
* Update descriptor protosJisi Liu2017-10-181-3/+6
|
* Merge remote-tracking branch 'origin/3.4.x' into masterJisi Liu2017-10-1114-21/+1205
|\
| * Merge pull request #3612 from TeBoring/php-bugPaul Yang2017-09-1511-16/+1011
| |\ | | | | | | Add prefix to php reserved keywords.
| | * Exclude valid constant name from reserved name.Bo Yang2017-09-126-223/+600
| | |
| | * Change array to map for reserved names in c extensionBo Yang2017-09-113-24/+69
| | |
| | * Change array to associate array.Bo Yang2017-09-111-20/+21
| | |
| | * Add prefix to php reserved keywords.Bo Yang2017-09-087-5/+577
| | |
| * | Bump version for minor releaseJisi Liu2017-09-142-5/+21
| |/
| * change the field number of php_generic_service to fix the conflict with (#3576)Paul Yang2017-08-303-4/+68
| | | | | | internal descriptor.proto
* | Reserve unknown fields in php (#3659)Paul Yang2017-10-0912-841/+2101
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Reserve unknown fields in upb 1) For decoding, an unknownfields will be lazily created on message, which contains bytes of unknown fields. 2) For encoding, if the unknownfields is present on message, all bytes contained in it will be serialized. * Register the function to encode unknown field at decode time. * Remove upb_handlers_setaddunknown * Use upb_sink_putunknown in decoder * Remove upb_pb_encoder_encode_unknown * Do not expose encode_unknown * Implement reserve unknown field in php Implement. * Make buffer private to CodedInputStream
* | Add well known types to php runtime. (#3697)Paul Yang2017-10-0541-101/+5374
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* | Enforce all error report for php tests. (#3670)Paul Yang2017-09-224-5/+24
| | | | | | | | | | | | * Enforce all error report for php tests. * Import vendor/autoload.php in tests/bootstrap_phpunit.php
* | Add $ before url_prefix_len to make it a variable. (#3668)Paul Yang2017-09-201-4/+2
| | | | | | | | | | | | | | | | * Add $ before url_prefix_len to make it a variable. * Remove unnecessary string length check * Remove useless $type_url_len
* | Integrated internal changes from GoogleAdam Cozzette2017-09-143-4/+98
| |
* | Add well-known timestamps to JSON for PHP (#3564)Jack Wakefield2017-09-103-31/+142
| |
* | Add native php support for Duration. (#3583)Paul Yang2017-09-056-0/+259
| |
* | Add php support for Timestamp. (#3575)Paul Yang2017-08-317-102/+441
| | | | | | | | | | | | * Add php support for Timestamp. * Fix comments
* | Add any support in php runtime. (#3486)Paul Yang2017-08-259-58/+902
|/ | | | | | | | | | | | * Add any support in php runtime. * Remove unused file in config.m4 * Fix comments * Fix error for tsrmls build * Add newly added file to Makefile.am
* Use message name as defined in php runtime.Bo Yang2017-08-215-1/+25
|
* Update php version number to 3.4.0Bo Yang2017-08-161-1/+1
|
* Update php c extension version number.Bo Yang2017-08-162-3/+19
|
* Merge branch 'master' into 3.4.xBo Yang2017-08-0531-91/+1558
|\
| * Fix the bug in php c extension that setting one field can change ↵Paul Yang2017-08-047-33/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | another field's value. (#3455) * Fix the bug in php c extension that setting one field can change another field's value. The reason is that previously, in c extension, it was assumed that the order that fields were declared in php is the same as the order of fields in upb. This is not true. Now, for every field in upb, we will look up the actual property that is corresponding to the upb field. * Cleanup pull request * Fix indentation * Port to php5 * Port with php7.1 * Port to zts
| * Update PHP descriptors (#3391)michaelbausor2017-08-0415-18/+607
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add descriptors test * Update descriptors tests * Add public descriptors * Add test_desriptors.proto to test script * Update composer files * Remove references to GPBType, update tests to be compatible with c * Update for c extension compatibility * Remove nested enums for descriptor, update tests * Strip leading '.' from descriptor name * Update tests with test for getClass, fix OneofDescriptor * Add new files to Makefile.am
| * Add getClass for php Descriptor in c extension (#3443)Paul Yang2017-08-023-1/+16
| |
| * Fixing HHVM Compatibility (#3437)Ryan Gordon2017-08-021-4/+2
| |
| * Expose descriptor API in php c extension (#3422)Paul Yang2017-08-026-26/+829
| |
| * Change divideInt64ToInt32 to static (#3436)Tony Wong2017-08-011-1/+1
| | | | | | | | | | divideInt64ToInt32 is called statically from protobuf/php/src/Google/Protobuf/Internal/CodedOutputStream.php (the only reference) This causes fatal error in PHP 7.1 (32-bit only because 64-bit doesn't use this function)
| * Removes unnecessary pass-by-references in PHP internal classes (#3433)Brent Shaffer2017-08-013-10/+10
| |
| * Fix cycle dependency for repeated field not collected by gc (#3399)Paul Yang2017-07-258-64/+243
| |
| * compiles removal of newline (#3333) (#3370)Brent Shaffer2017-07-1925-25/+0
| |
| * Merge pull request #3375 from TeBoring/3.3.xPaul Yang2017-07-193-2/+43
| |\ | | | | | | Merge 3.3.x into master
| | * Merge 3.3.x into masterBo Yang2017-07-183-2/+43
| | |\
| | | * Update version number to 3.3.2Bo Yang2017-06-212-2/+18
| | | |
| | | * Remove inclusion of ext/json/php_json.h. (#3241)Jeff Ching2017-06-201-1/+0
| | | | | | | | | | | | | | | | That implementation of json is not being used - this extension is using a json encoder/decoder provided by 'upb'.
| | | * Oneof field should be serialized even it's equal to default. (#3153)Paul Yang2017-06-203-1/+17
| | | |
| | | * Add ARRAY for reserved name (#3150)Paul Yang2017-06-205-3/+9
| | | |
| | | * Add LICENSE in package.xml (#3083)Paul Yang2017-05-111-0/+1
| | | |
| | | * Merge pull request #3074 from xfxyjwf/3.3.xFeng Xiao2017-05-112-2/+18
| | | |\ | | | | | | | | | | Update version number to 3.3.1
| | | | * Update version number to 3.3.1Feng Xiao2017-05-082-2/+18
| | | | |