├── .idea ├── deployment.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── php.xml ├── php_grpc.iml ├── vcs.xml ├── webServers.xml └── workspace.xml ├── GPBMetadata └── User.php ├── README.md ├── Simple ├── GetUserListRequest.php ├── GetUserRequest.php ├── GetUserResponse.php ├── UserClient.php ├── UserListResponse.php └── UserSex.php ├── composer.json ├── composer.lock ├── grpc_php_plugin ├── index.php ├── server ├── user.proto └── vendor ├── autoload.php ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php └── installed.json └── grpc └── grpc ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── composer.json ├── etc └── roots.pem └── src └── lib ├── AbstractCall.php ├── BaseStub.php ├── BidiStreamingCall.php ├── CallInvoker.php ├── ClientStreamingCall.php ├── DefaultCallInvoker.php ├── Interceptor.php ├── Internal └── InterceptorChannel.php ├── ServerStreamingCall.php └── UnaryCall.php /.idea/deployment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/php_grpc.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/webServers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 19 | 20 | $PROJECT_DIR$/composer.json 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 50 | 51 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 |