├── .coveralls.yml ├── .github ├── actions │ └── docs │ │ ├── entrypoint.sh │ │ └── sami.php └── workflows │ ├── ci.yaml │ └── docs.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Api │ ├── AppIdentity │ │ ├── AppIdentityException.php │ │ ├── AppIdentityService.php │ │ ├── PublicCertificate.php │ │ └── app_identity_service_pb.php │ ├── Mail │ │ ├── AdminMessage.php │ │ ├── BaseMessage.php │ │ ├── Message.php │ │ └── mail_service_pb.php │ ├── Memcache │ │ ├── Memcache.php │ │ ├── MemcacheItemWithTimestamps.php │ │ ├── MemcacheOptIn.php │ │ ├── Memcached.php │ │ └── memcache_service_pb.php │ ├── Modules │ │ ├── InvalidModuleStateException.php │ │ ├── ModulesException.php │ │ ├── ModulesService.php │ │ ├── TransientModulesException.php │ │ └── modules_service_pb.php │ ├── TaskQueue │ │ ├── MockMicrotime.php │ │ ├── PushQueue.php │ │ ├── PushTask.php │ │ ├── TaskAlreadyExistsException.php │ │ ├── TaskQueueException.php │ │ ├── TransientTaskQueueException.php │ │ └── taskqueue_service_pb.php │ ├── UrlFetch │ │ ├── UrlFetch.php │ │ ├── UrlFetchStream.php │ │ └── urlfetch_service_pb.php │ ├── Users │ │ ├── User.php │ │ ├── UserService.php │ │ ├── UserServiceUtil.php │ │ ├── UsersException.php │ │ └── user_service_pb.php │ ├── api_base_pb.php │ └── source_pb.php ├── Datastore │ ├── action_pb.php │ ├── datastore_v3_pb.php │ ├── document_pb.php │ ├── entity_pb.php │ └── snapshot_pb.php ├── Ext │ ├── RemoteApi │ │ └── remote_api_pb.php │ └── Session │ │ ├── MemcacheContainer.php │ │ └── MemcacheSessionHandler.php ├── Runtime │ ├── ApiProxy.php │ ├── ApiProxyBase.php │ ├── ApplicationError.php │ ├── ArgumentError.php │ ├── CallNotFoundError.php │ ├── CancelledError.php │ ├── CapabilityDisabledError.php │ ├── DeadlineExceededError.php │ ├── Error.php │ ├── FeatureNotEnabledError.php │ ├── Mail.php │ ├── MemcacheUtils.php │ ├── OverQuotaError.php │ ├── Proto │ │ ├── Decoder.php │ │ ├── Encoder.php │ │ ├── ProtocolBufferDecodeError.php │ │ ├── ProtocolBufferEncodeError.php │ │ └── ProtocolMessage.php │ ├── RPCFailedError.php │ ├── RealApiProxy.php │ ├── RequestTooLargeError.php │ ├── ResponseTooLargeError.php │ └── SendMail.php ├── Testing │ ├── ApiCallArguments.php │ ├── ApiProxyMock.php │ ├── ApiProxyTestBase.php │ └── TestUtils.php ├── Util │ ├── ArrayUtil.php │ ├── HttpUtil.php │ └── StringUtil.php └── aliases.php └── tests ├── Api ├── AppIdentity │ └── AppIdentityServiceTest.php ├── Mail │ ├── AdminMessageTest.php │ └── MessageTest.php ├── Memcache │ ├── MemcacheTest.php │ └── MemcachedTest.php ├── Modules │ └── ModulesServiceTest.php ├── TaskQueue │ ├── PushQueueTest.php │ └── PushTaskTest.php ├── UrlFetch │ ├── UrlFetchStreamTest.php │ └── UrlFetchTest.php └── Users │ ├── UserServiceTest.php │ └── UserTest.php ├── Datastore └── DatastoreProtoTest.php ├── Ext ├── RemoteApi │ └── RemoteApiProtoTest.php └── Session │ └── MemcacheSessionHandlerTest.php ├── Runtime ├── MailTest.php └── RealApiProxyTest.php └── Util └── ArrayUtilTest.php /.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: google -------------------------------------------------------------------------------- /.github/actions/docs/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/.github/actions/docs/entrypoint.sh -------------------------------------------------------------------------------- /.github/actions/docs/sami.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/.github/actions/docs/sami.php -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Api/AppIdentity/AppIdentityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/AppIdentity/AppIdentityException.php -------------------------------------------------------------------------------- /src/Api/AppIdentity/AppIdentityService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/AppIdentity/AppIdentityService.php -------------------------------------------------------------------------------- /src/Api/AppIdentity/PublicCertificate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/AppIdentity/PublicCertificate.php -------------------------------------------------------------------------------- /src/Api/AppIdentity/app_identity_service_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/AppIdentity/app_identity_service_pb.php -------------------------------------------------------------------------------- /src/Api/Mail/AdminMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Mail/AdminMessage.php -------------------------------------------------------------------------------- /src/Api/Mail/BaseMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Mail/BaseMessage.php -------------------------------------------------------------------------------- /src/Api/Mail/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Mail/Message.php -------------------------------------------------------------------------------- /src/Api/Mail/mail_service_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Mail/mail_service_pb.php -------------------------------------------------------------------------------- /src/Api/Memcache/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Memcache/Memcache.php -------------------------------------------------------------------------------- /src/Api/Memcache/MemcacheItemWithTimestamps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Memcache/MemcacheItemWithTimestamps.php -------------------------------------------------------------------------------- /src/Api/Memcache/MemcacheOptIn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Memcache/MemcacheOptIn.php -------------------------------------------------------------------------------- /src/Api/Memcache/Memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Memcache/Memcached.php -------------------------------------------------------------------------------- /src/Api/Memcache/memcache_service_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Memcache/memcache_service_pb.php -------------------------------------------------------------------------------- /src/Api/Modules/InvalidModuleStateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Modules/InvalidModuleStateException.php -------------------------------------------------------------------------------- /src/Api/Modules/ModulesException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Modules/ModulesException.php -------------------------------------------------------------------------------- /src/Api/Modules/ModulesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Modules/ModulesService.php -------------------------------------------------------------------------------- /src/Api/Modules/TransientModulesException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Modules/TransientModulesException.php -------------------------------------------------------------------------------- /src/Api/Modules/modules_service_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Modules/modules_service_pb.php -------------------------------------------------------------------------------- /src/Api/TaskQueue/MockMicrotime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/TaskQueue/MockMicrotime.php -------------------------------------------------------------------------------- /src/Api/TaskQueue/PushQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/TaskQueue/PushQueue.php -------------------------------------------------------------------------------- /src/Api/TaskQueue/PushTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/TaskQueue/PushTask.php -------------------------------------------------------------------------------- /src/Api/TaskQueue/TaskAlreadyExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/TaskQueue/TaskAlreadyExistsException.php -------------------------------------------------------------------------------- /src/Api/TaskQueue/TaskQueueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/TaskQueue/TaskQueueException.php -------------------------------------------------------------------------------- /src/Api/TaskQueue/TransientTaskQueueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/TaskQueue/TransientTaskQueueException.php -------------------------------------------------------------------------------- /src/Api/TaskQueue/taskqueue_service_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/TaskQueue/taskqueue_service_pb.php -------------------------------------------------------------------------------- /src/Api/UrlFetch/UrlFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/UrlFetch/UrlFetch.php -------------------------------------------------------------------------------- /src/Api/UrlFetch/UrlFetchStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/UrlFetch/UrlFetchStream.php -------------------------------------------------------------------------------- /src/Api/UrlFetch/urlfetch_service_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/UrlFetch/urlfetch_service_pb.php -------------------------------------------------------------------------------- /src/Api/Users/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Users/User.php -------------------------------------------------------------------------------- /src/Api/Users/UserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Users/UserService.php -------------------------------------------------------------------------------- /src/Api/Users/UserServiceUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Users/UserServiceUtil.php -------------------------------------------------------------------------------- /src/Api/Users/UsersException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Users/UsersException.php -------------------------------------------------------------------------------- /src/Api/Users/user_service_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/Users/user_service_pb.php -------------------------------------------------------------------------------- /src/Api/api_base_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/api_base_pb.php -------------------------------------------------------------------------------- /src/Api/source_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Api/source_pb.php -------------------------------------------------------------------------------- /src/Datastore/action_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Datastore/action_pb.php -------------------------------------------------------------------------------- /src/Datastore/datastore_v3_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Datastore/datastore_v3_pb.php -------------------------------------------------------------------------------- /src/Datastore/document_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Datastore/document_pb.php -------------------------------------------------------------------------------- /src/Datastore/entity_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Datastore/entity_pb.php -------------------------------------------------------------------------------- /src/Datastore/snapshot_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Datastore/snapshot_pb.php -------------------------------------------------------------------------------- /src/Ext/RemoteApi/remote_api_pb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Ext/RemoteApi/remote_api_pb.php -------------------------------------------------------------------------------- /src/Ext/Session/MemcacheContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Ext/Session/MemcacheContainer.php -------------------------------------------------------------------------------- /src/Ext/Session/MemcacheSessionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Ext/Session/MemcacheSessionHandler.php -------------------------------------------------------------------------------- /src/Runtime/ApiProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/ApiProxy.php -------------------------------------------------------------------------------- /src/Runtime/ApiProxyBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/ApiProxyBase.php -------------------------------------------------------------------------------- /src/Runtime/ApplicationError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/ApplicationError.php -------------------------------------------------------------------------------- /src/Runtime/ArgumentError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/ArgumentError.php -------------------------------------------------------------------------------- /src/Runtime/CallNotFoundError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/CallNotFoundError.php -------------------------------------------------------------------------------- /src/Runtime/CancelledError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/CancelledError.php -------------------------------------------------------------------------------- /src/Runtime/CapabilityDisabledError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/CapabilityDisabledError.php -------------------------------------------------------------------------------- /src/Runtime/DeadlineExceededError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/DeadlineExceededError.php -------------------------------------------------------------------------------- /src/Runtime/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/Error.php -------------------------------------------------------------------------------- /src/Runtime/FeatureNotEnabledError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/FeatureNotEnabledError.php -------------------------------------------------------------------------------- /src/Runtime/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/Mail.php -------------------------------------------------------------------------------- /src/Runtime/MemcacheUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/MemcacheUtils.php -------------------------------------------------------------------------------- /src/Runtime/OverQuotaError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/OverQuotaError.php -------------------------------------------------------------------------------- /src/Runtime/Proto/Decoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/Proto/Decoder.php -------------------------------------------------------------------------------- /src/Runtime/Proto/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/Proto/Encoder.php -------------------------------------------------------------------------------- /src/Runtime/Proto/ProtocolBufferDecodeError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/Proto/ProtocolBufferDecodeError.php -------------------------------------------------------------------------------- /src/Runtime/Proto/ProtocolBufferEncodeError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/Proto/ProtocolBufferEncodeError.php -------------------------------------------------------------------------------- /src/Runtime/Proto/ProtocolMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/Proto/ProtocolMessage.php -------------------------------------------------------------------------------- /src/Runtime/RPCFailedError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/RPCFailedError.php -------------------------------------------------------------------------------- /src/Runtime/RealApiProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/RealApiProxy.php -------------------------------------------------------------------------------- /src/Runtime/RequestTooLargeError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/RequestTooLargeError.php -------------------------------------------------------------------------------- /src/Runtime/ResponseTooLargeError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/ResponseTooLargeError.php -------------------------------------------------------------------------------- /src/Runtime/SendMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Runtime/SendMail.php -------------------------------------------------------------------------------- /src/Testing/ApiCallArguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Testing/ApiCallArguments.php -------------------------------------------------------------------------------- /src/Testing/ApiProxyMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Testing/ApiProxyMock.php -------------------------------------------------------------------------------- /src/Testing/ApiProxyTestBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Testing/ApiProxyTestBase.php -------------------------------------------------------------------------------- /src/Testing/TestUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Testing/TestUtils.php -------------------------------------------------------------------------------- /src/Util/ArrayUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Util/ArrayUtil.php -------------------------------------------------------------------------------- /src/Util/HttpUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Util/HttpUtil.php -------------------------------------------------------------------------------- /src/Util/StringUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/Util/StringUtil.php -------------------------------------------------------------------------------- /src/aliases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/src/aliases.php -------------------------------------------------------------------------------- /tests/Api/AppIdentity/AppIdentityServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Api/AppIdentity/AppIdentityServiceTest.php -------------------------------------------------------------------------------- /tests/Api/Mail/AdminMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Api/Mail/AdminMessageTest.php -------------------------------------------------------------------------------- /tests/Api/Mail/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Api/Mail/MessageTest.php -------------------------------------------------------------------------------- /tests/Api/Memcache/MemcacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Api/Memcache/MemcacheTest.php -------------------------------------------------------------------------------- /tests/Api/Memcache/MemcachedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Api/Memcache/MemcachedTest.php -------------------------------------------------------------------------------- /tests/Api/Modules/ModulesServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Api/Modules/ModulesServiceTest.php -------------------------------------------------------------------------------- /tests/Api/TaskQueue/PushQueueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Api/TaskQueue/PushQueueTest.php -------------------------------------------------------------------------------- /tests/Api/TaskQueue/PushTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Api/TaskQueue/PushTaskTest.php -------------------------------------------------------------------------------- /tests/Api/UrlFetch/UrlFetchStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Api/UrlFetch/UrlFetchStreamTest.php -------------------------------------------------------------------------------- /tests/Api/UrlFetch/UrlFetchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Api/UrlFetch/UrlFetchTest.php -------------------------------------------------------------------------------- /tests/Api/Users/UserServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Api/Users/UserServiceTest.php -------------------------------------------------------------------------------- /tests/Api/Users/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Api/Users/UserTest.php -------------------------------------------------------------------------------- /tests/Datastore/DatastoreProtoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Datastore/DatastoreProtoTest.php -------------------------------------------------------------------------------- /tests/Ext/RemoteApi/RemoteApiProtoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Ext/RemoteApi/RemoteApiProtoTest.php -------------------------------------------------------------------------------- /tests/Ext/Session/MemcacheSessionHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Ext/Session/MemcacheSessionHandlerTest.php -------------------------------------------------------------------------------- /tests/Runtime/MailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Runtime/MailTest.php -------------------------------------------------------------------------------- /tests/Runtime/RealApiProxyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Runtime/RealApiProxyTest.php -------------------------------------------------------------------------------- /tests/Util/ArrayUtilTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-php-sdk/HEAD/tests/Util/ArrayUtilTest.php --------------------------------------------------------------------------------