aboutsummaryrefslogtreecommitdiff
path: root/php
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
| | | | |
| | | * | Fix upb load descriptor when no messages defined in prorto. (#3080)Paul Yang2017-05-111-0/+3
| | | | |
| | | * | Fix c extension for php7.1. (#3077)Paul Yang2017-05-101-0/+8
| | | |/
* | | | Merge from masterJisi Liu2017-07-2510-66/+286
| | | |
* | | | Merge master into 3.4.xJisi Liu2017-07-1881-3387/+5832
|\| | |
| * | | Support PHP generic services (#3269)Matt A2017-07-187-1/+177
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add php_generic_services option * Generate PHP generic services * Respect namespaces for generated PHP services * Test PHP generated services * Rename PHP generator service method doc comment function * Correct phpdoc service method case * Test namespaced PHP generic services * Always use the FQCN for PHP generic service input/output * Add generated_service_test to php test.sh * Add php service test protos to CI * Add php service files to php_EXTRA_DIST * Use Interface suffix for php generic services
| * | remove pass by reference for php setters (#3344)Brent Shaffer2017-07-1723-59/+61
| | | | | | | | | | | | | | | | | | * remove pass by reference for php setters * comments out memory leak test
| * | Fix Implicit Return Types (#3363)Richard Fussenegger2017-07-171-2/+2
| | | | | | | | | | | | | | | Both native_slot_merge and native_slot_merge_by_array have no return type declared. GCC implicitly uses int as return type in such cases, however, these functions are actually void.
| * | Initial value in generated code cannot be used by c extension. (#3367)Paul Yang2017-07-145-2/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the generated code of previous versions, each php field is given an initial value. In c extension, it was assumed that the field order in the generated code is consistent with upb fields order, so that the correct initial value can be bound to the correct upb field. However, this may not be true. The order of fields in generated code is decided by proto compiler, while the order of upb fields is decided by the hash function used in c extension. This PR fixes the issue by reset the initial value at runtime.
| * | Add map iterator for c extension (#3350)Paul Yang2017-07-136-5/+157
| | |
| * | Uncomment php tests (#3301)Paul Yang2017-07-092-416/+416
| | |
| * | Add json encode/decode for php. (#3226)Paul Yang2017-06-3028-1666/+2772
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add json encode/decode for php. * Fix php conformance test on 32-bit machines. * Fix conformance test for c extension. * Fix comments
| * | adds PHPDoc @return and @param for getters and setters respectively (#3131)Brent Shaffer2017-06-2734-886/+1099
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * adds PHPDoc @return and @param for getters and setters respectively * addresses changes in PR review * adds documentation tests * Update php_generator: - Prepend \ to names where required - Remove <pre> tags - Update protobuf field comments * Updates class files with the protobuf changes * Addresses review comments * removes Protobuf Type line from PHP generated classes * fixes phpdoc test * adds array types to phpdoc
| * | Switch to addEnumType to fix fatal error (#3225)Ryan Gordon2017-06-194-160/+235
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Switch to addEnumType to fix fatal error * Fixing more cases of HHVM incompatibility * Updating tests to be hhvm compatible * Fixing tests * Fixing merge * Don't use call_user_func, should hopefully fix tests * Fixing spelling * Fixing another misspelling in a test * Fixing placement of append and kvUpdate functions * Actually fix function helpers * Remove double addEnumType. How did this ever work? * Fixing a couple more tests * Only use the setter if the return value isn't an object
| * | Remove inclusion of ext/json/php_json.h. (#3241)Jeff Ching2017-06-171-1/+0
| | | | | | | | | | | | That implementation of json is not being used - this extension is using a json encoder/decoder provided by 'upb'.
| * | Fix php jenkins test (#3233)Paul Yang2017-06-151-1/+1
| | | | | | | | | | | | Update commit id to upload latest composer. Compile php with bc-math for future json support.
| * | Fix incorrect function call (#3232)michaelbausor2017-06-151-1/+1
| | |
| * | Follows proper autoloading standards (#3123)Brent Shaffer2017-06-1414-836/+1039
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Follows proper autoloading standards - Splits PHP classes in descriptor.php into separate files - Splits MapFieldIter and RepeatedFieldIter into separate files - Moves descriptor.php to Internal/functions.php - Moves all namespaced functions into Iternal/functions.php * fixes Makefile.am for added php files * [PHP] moves all functions to GPBUtil * removes description.php from the makefile
| * | Add new file option php_namespace. (#3162)Paul Yang2017-06-0535-208/+568
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add new file option php_namespace. Use this option to change the namespace of php generated classes. Default is empty. When this option is empty, the package name will be used for determining the namespace. * Uncomment commented tests * Revert gdb test change * Update csharp descriptor. * Add test for empty php_namespace.
| * | Oneof field should be serialized even it's equal to default. (#3153)Paul Yang2017-05-293-1/+17
| | |
| * | Add ARRAY for reserved name (#3150)Paul Yang2017-05-295-5/+11
| | |
| * | Adds fluent setters for PHP (#3130)Brent Shaffer2017-05-291-0/+13
| | |
| * | Add compatibility test for php. (#3041)Paul Yang2017-05-052-2/+113
| |/ | | | | | | | | | | * Add compatibility test for php. * Revert API incompatible change.
* / Update csharp and php descriptorJisi Liu2017-07-183-21/+57
|/
* Add prefix to enum value with reserved name. (#3020)v3.3.0Paul Yang2017-04-261-0/+1
|
* Add a test case for nested enum, which was missed previously. (#3010)Paul Yang2017-04-251-0/+1
|
* Add nested enum descriptor in php rumtime. (#3009)v3.3.0rc1Paul Yang2017-04-243-1/+11
|
* Update php version number to 3.3.0 (#3001)Paul Yang2017-04-242-6/+22
|
* Throw exception when parsing invalid data. (#3000)Paul Yang2017-04-215-49/+296
|