├── .github ├── dependabot.yml └── workflows │ ├── publish-release.yml │ └── security-scan.yml ├── .gitignore ├── LICENSE ├── SECURITY.md ├── changelog.txt ├── changes.md ├── composer.json ├── composer.lock ├── l10n.php ├── lib ├── Google │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── UPGRADING.md │ ├── composer.json │ ├── composer.lock │ ├── phpstan.neon.dist │ ├── src │ │ ├── AccessToken │ │ │ ├── Revoke.php │ │ │ └── Verify.php │ │ ├── AuthHandler │ │ │ ├── AuthHandlerFactory.php │ │ │ ├── Guzzle6AuthHandler.php │ │ │ └── Guzzle7AuthHandler.php │ │ ├── Client.php │ │ ├── Collection.php │ │ ├── Exception.php │ │ ├── Http │ │ │ ├── Batch.php │ │ │ ├── MediaFileUpload.php │ │ │ └── REST.php │ │ ├── Model.php │ │ ├── Service.php │ │ ├── Service │ │ │ ├── Exception.php │ │ │ ├── README.md │ │ │ └── Resource.php │ │ ├── Task │ │ │ ├── Composer.php │ │ │ ├── Exception.php │ │ │ ├── Retryable.php │ │ │ └── Runner.php │ │ ├── Utils │ │ │ └── UriTemplate.php │ │ └── aliases.php │ └── vendor │ │ ├── autoload.php │ │ ├── bin │ │ └── google-cloud-batch │ │ ├── brick │ │ └── math │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── BigDecimal.php │ │ │ ├── BigInteger.php │ │ │ ├── BigNumber.php │ │ │ ├── BigRational.php │ │ │ ├── Exception │ │ │ ├── DivisionByZeroException.php │ │ │ ├── IntegerOverflowException.php │ │ │ ├── MathException.php │ │ │ ├── NegativeNumberException.php │ │ │ ├── NumberFormatException.php │ │ │ └── RoundingNecessaryException.php │ │ │ ├── Internal │ │ │ ├── Calculator.php │ │ │ └── Calculator │ │ │ │ ├── BcMathCalculator.php │ │ │ │ ├── GmpCalculator.php │ │ │ │ └── NativeCalculator.php │ │ │ └── RoundingMode.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ ├── installed.php │ │ └── platform_check.php │ │ ├── firebase │ │ └── php-jwt │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── BeforeValidException.php │ │ │ ├── CachedKeySet.php │ │ │ ├── ExpiredException.php │ │ │ ├── JWK.php │ │ │ ├── JWT.php │ │ │ ├── JWTExceptionWithPayloadInterface.php │ │ │ ├── Key.php │ │ │ └── SignatureInvalidException.php │ │ ├── google │ │ ├── apiclient-services │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── autoload.php │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Storage.php │ │ │ │ └── Storage │ │ │ │ ├── AdvanceRelocateBucketOperationRequest.php │ │ │ │ ├── AnywhereCache.php │ │ │ │ ├── AnywhereCaches.php │ │ │ │ ├── Bucket.php │ │ │ │ ├── BucketAccessControl.php │ │ │ │ ├── BucketAccessControlProjectTeam.php │ │ │ │ ├── BucketAccessControls.php │ │ │ │ ├── BucketAutoclass.php │ │ │ │ ├── BucketBilling.php │ │ │ │ ├── BucketCors.php │ │ │ │ ├── BucketCustomPlacementConfig.php │ │ │ │ ├── BucketEncryption.php │ │ │ │ ├── BucketHierarchicalNamespace.php │ │ │ │ ├── BucketIamConfiguration.php │ │ │ │ ├── BucketIamConfigurationBucketPolicyOnly.php │ │ │ │ ├── BucketIamConfigurationUniformBucketLevelAccess.php │ │ │ │ ├── BucketIpFilter.php │ │ │ │ ├── BucketIpFilterPublicNetworkSource.php │ │ │ │ ├── BucketIpFilterVpcNetworkSources.php │ │ │ │ ├── BucketLifecycle.php │ │ │ │ ├── BucketLifecycleRule.php │ │ │ │ ├── BucketLifecycleRuleAction.php │ │ │ │ ├── BucketLifecycleRuleCondition.php │ │ │ │ ├── BucketLogging.php │ │ │ │ ├── BucketObjectRetention.php │ │ │ │ ├── BucketOwner.php │ │ │ │ ├── BucketRetentionPolicy.php │ │ │ │ ├── BucketSoftDeletePolicy.php │ │ │ │ ├── BucketStorageLayout.php │ │ │ │ ├── BucketStorageLayoutCustomPlacementConfig.php │ │ │ │ ├── BucketStorageLayoutHierarchicalNamespace.php │ │ │ │ ├── BucketVersioning.php │ │ │ │ ├── BucketWebsite.php │ │ │ │ ├── Buckets.php │ │ │ │ ├── BulkRestoreObjectsRequest.php │ │ │ │ ├── Channel.php │ │ │ │ ├── ComposeRequest.php │ │ │ │ ├── ComposeRequestSourceObjects.php │ │ │ │ ├── ComposeRequestSourceObjectsObjectPreconditions.php │ │ │ │ ├── Expr.php │ │ │ │ ├── Folder.php │ │ │ │ ├── FolderPendingRenameInfo.php │ │ │ │ ├── Folders.php │ │ │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ ├── HmacKey.php │ │ │ │ ├── HmacKeyMetadata.php │ │ │ │ ├── HmacKeysMetadata.php │ │ │ │ ├── ManagedFolder.php │ │ │ │ ├── ManagedFolders.php │ │ │ │ ├── Notification.php │ │ │ │ ├── Notifications.php │ │ │ │ ├── ObjectAccessControl.php │ │ │ │ ├── ObjectAccessControlProjectTeam.php │ │ │ │ ├── ObjectAccessControls.php │ │ │ │ ├── Objects.php │ │ │ │ ├── Policy.php │ │ │ │ ├── PolicyBindings.php │ │ │ │ ├── RelocateBucketRequest.php │ │ │ │ ├── RelocateBucketRequestDestinationCustomPlacementConfig.php │ │ │ │ ├── Resource │ │ │ │ ├── AnywhereCache.php │ │ │ │ ├── AnywhereCaches.php │ │ │ │ ├── BucketAccessControls.php │ │ │ │ ├── Buckets.php │ │ │ │ ├── Channels.php │ │ │ │ ├── DefaultObjectAccessControls.php │ │ │ │ ├── Folders.php │ │ │ │ ├── ManagedFolders.php │ │ │ │ ├── Notifications.php │ │ │ │ ├── ObjectAccessControls.php │ │ │ │ ├── Objects.php │ │ │ │ ├── Operations.php │ │ │ │ ├── Projects.php │ │ │ │ ├── ProjectsHmacKeys.php │ │ │ │ └── ProjectsServiceAccount.php │ │ │ │ ├── RewriteResponse.php │ │ │ │ ├── ServiceAccount.php │ │ │ │ ├── StorageObject.php │ │ │ │ ├── StorageObjectCustomerEncryption.php │ │ │ │ ├── StorageObjectOwner.php │ │ │ │ ├── StorageObjectRetention.php │ │ │ │ └── TestIamPermissionsResponse.php │ │ ├── auth │ │ │ ├── COPYING │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── VERSION │ │ │ ├── autoload.php │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── AccessToken.php │ │ │ │ ├── ApplicationDefaultCredentials.php │ │ │ │ ├── Cache │ │ │ │ ├── FileSystemCacheItemPool.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── Item.php │ │ │ │ ├── MemoryCacheItemPool.php │ │ │ │ ├── SysVCacheItemPool.php │ │ │ │ └── TypedItem.php │ │ │ │ ├── CacheTrait.php │ │ │ │ ├── CredentialSource │ │ │ │ ├── AwsNativeSource.php │ │ │ │ ├── ExecutableSource.php │ │ │ │ ├── FileSource.php │ │ │ │ └── UrlSource.php │ │ │ │ ├── Credentials │ │ │ │ ├── AppIdentityCredentials.php │ │ │ │ ├── ExternalAccountCredentials.php │ │ │ │ ├── GCECredentials.php │ │ │ │ ├── IAMCredentials.php │ │ │ │ ├── ImpersonatedServiceAccountCredentials.php │ │ │ │ ├── InsecureCredentials.php │ │ │ │ ├── ServiceAccountCredentials.php │ │ │ │ ├── ServiceAccountJwtAccessCredentials.php │ │ │ │ └── UserRefreshCredentials.php │ │ │ │ ├── CredentialsLoader.php │ │ │ │ ├── ExecutableHandler │ │ │ │ ├── ExecutableHandler.php │ │ │ │ └── ExecutableResponseError.php │ │ │ │ ├── ExternalAccountCredentialSourceInterface.php │ │ │ │ ├── FetchAuthTokenCache.php │ │ │ │ ├── FetchAuthTokenInterface.php │ │ │ │ ├── GCECache.php │ │ │ │ ├── GetQuotaProjectInterface.php │ │ │ │ ├── GetUniverseDomainInterface.php │ │ │ │ ├── HttpHandler │ │ │ │ ├── Guzzle6HttpHandler.php │ │ │ │ ├── Guzzle7HttpHandler.php │ │ │ │ ├── HttpClientCache.php │ │ │ │ └── HttpHandlerFactory.php │ │ │ │ ├── Iam.php │ │ │ │ ├── IamSignerTrait.php │ │ │ │ ├── Logging │ │ │ │ ├── LoggingTrait.php │ │ │ │ ├── RpcLogEvent.php │ │ │ │ └── StdOutLogger.php │ │ │ │ ├── MetricsTrait.php │ │ │ │ ├── Middleware │ │ │ │ ├── AuthTokenMiddleware.php │ │ │ │ ├── ProxyAuthTokenMiddleware.php │ │ │ │ ├── ScopedAccessTokenMiddleware.php │ │ │ │ └── SimpleMiddleware.php │ │ │ │ ├── OAuth2.php │ │ │ │ ├── ProjectIdProviderInterface.php │ │ │ │ ├── ServiceAccountSignerTrait.php │ │ │ │ ├── SignBlobInterface.php │ │ │ │ ├── UpdateMetadataInterface.php │ │ │ │ └── UpdateMetadataTrait.php │ │ ├── cloud-core │ │ │ ├── .gitattributes │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── VERSION │ │ │ ├── bin │ │ │ │ └── google-cloud-batch │ │ │ ├── composer.json │ │ │ ├── perf-bootstrap.php │ │ │ ├── snippet-bootstrap.php │ │ │ ├── src │ │ │ │ ├── AnonymousCredentials.php │ │ │ │ ├── ApiHelperTrait.php │ │ │ │ ├── ArrayTrait.php │ │ │ │ ├── Batch │ │ │ │ │ ├── BatchDaemon.php │ │ │ │ │ ├── BatchDaemonTrait.php │ │ │ │ │ ├── BatchJob.php │ │ │ │ │ ├── BatchRunner.php │ │ │ │ │ ├── BatchTrait.php │ │ │ │ │ ├── ClosureSerializerInterface.php │ │ │ │ │ ├── ConfigStorageInterface.php │ │ │ │ │ ├── HandleFailureTrait.php │ │ │ │ │ ├── InMemoryConfigStorage.php │ │ │ │ │ ├── InterruptTrait.php │ │ │ │ │ ├── JobConfig.php │ │ │ │ │ ├── JobInterface.php │ │ │ │ │ ├── JobTrait.php │ │ │ │ │ ├── OpisClosureSerializer.php │ │ │ │ │ ├── ProcessItemInterface.php │ │ │ │ │ ├── QueueOverflowException.php │ │ │ │ │ ├── Retry.php │ │ │ │ │ ├── SerializableClientTrait.php │ │ │ │ │ ├── SimpleJob.php │ │ │ │ │ ├── SimpleJobTrait.php │ │ │ │ │ ├── SysvConfigStorage.php │ │ │ │ │ └── SysvProcessor.php │ │ │ │ ├── Blob.php │ │ │ │ ├── CallTrait.php │ │ │ │ ├── ClientTrait.php │ │ │ │ ├── Compute │ │ │ │ │ ├── Metadata.php │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── Readers │ │ │ │ │ │ ├── HttpHandlerReader.php │ │ │ │ │ │ ├── ReaderInterface.php │ │ │ │ │ │ └── StreamReader.php │ │ │ │ ├── ConcurrencyControlTrait.php │ │ │ │ ├── DebugInfoTrait.php │ │ │ │ ├── DetectProjectIdTrait.php │ │ │ │ ├── Duration.php │ │ │ │ ├── EmulatorTrait.php │ │ │ │ ├── Exception │ │ │ │ │ ├── AbortedException.php │ │ │ │ │ ├── BadRequestException.php │ │ │ │ │ ├── ConflictException.php │ │ │ │ │ ├── DeadlineExceededException.php │ │ │ │ │ ├── FailedPreconditionException.php │ │ │ │ │ ├── GoogleException.php │ │ │ │ │ ├── NotFoundException.php │ │ │ │ │ ├── ServerException.php │ │ │ │ │ └── ServiceException.php │ │ │ │ ├── ExponentialBackoff.php │ │ │ │ ├── GeoPoint.php │ │ │ │ ├── GrpcRequestWrapper.php │ │ │ │ ├── GrpcTrait.php │ │ │ │ ├── Iam │ │ │ │ │ ├── Iam.php │ │ │ │ │ ├── IamConnectionInterface.php │ │ │ │ │ ├── IamManager.php │ │ │ │ │ └── PolicyBuilder.php │ │ │ │ ├── InsecureCredentialsWrapper.php │ │ │ │ ├── Int64.php │ │ │ │ ├── Iterator │ │ │ │ │ ├── ItemIterator.php │ │ │ │ │ ├── ItemIteratorTrait.php │ │ │ │ │ ├── PageIterator.php │ │ │ │ │ └── PageIteratorTrait.php │ │ │ │ ├── JsonTrait.php │ │ │ │ ├── Lock │ │ │ │ │ ├── FlockLock.php │ │ │ │ │ ├── LockInterface.php │ │ │ │ │ ├── LockTrait.php │ │ │ │ │ ├── SemaphoreLock.php │ │ │ │ │ └── SymfonyLockAdapter.php │ │ │ │ ├── Logger │ │ │ │ │ ├── AppEngineFlexFormatter.php │ │ │ │ │ ├── AppEngineFlexFormatterV2.php │ │ │ │ │ ├── AppEngineFlexFormatterV3.php │ │ │ │ │ ├── AppEngineFlexHandler.php │ │ │ │ │ ├── AppEngineFlexHandlerFactory.php │ │ │ │ │ ├── AppEngineFlexHandlerV2.php │ │ │ │ │ ├── AppEngineFlexHandlerV3.php │ │ │ │ │ └── FormatterTrait.php │ │ │ │ ├── LongRunning │ │ │ │ │ ├── LROTrait.php │ │ │ │ │ ├── LongRunningConnectionInterface.php │ │ │ │ │ ├── LongRunningOperation.php │ │ │ │ │ └── OperationResponseTrait.php │ │ │ │ ├── PhpArray.php │ │ │ │ ├── Report │ │ │ │ │ ├── CloudRunMetadataProvider.php │ │ │ │ │ ├── EmptyMetadataProvider.php │ │ │ │ │ ├── GAEFlexMetadataProvider.php │ │ │ │ │ ├── GAEMetadataProvider.php │ │ │ │ │ ├── GAEStandardMetadataProvider.php │ │ │ │ │ ├── MetadataProviderInterface.php │ │ │ │ │ ├── MetadataProviderUtils.php │ │ │ │ │ └── SimpleMetadataProvider.php │ │ │ │ ├── RequestBuilder.php │ │ │ │ ├── RequestHandler.php │ │ │ │ ├── RequestProcessorTrait.php │ │ │ │ ├── RequestWrapper.php │ │ │ │ ├── RequestWrapperTrait.php │ │ │ │ ├── RestTrait.php │ │ │ │ ├── Retry.php │ │ │ │ ├── RetryDeciderTrait.php │ │ │ │ ├── ServiceBuilder.php │ │ │ │ ├── SysvTrait.php │ │ │ │ ├── Testing │ │ │ │ │ ├── ArrayHasSameValuesToken.php │ │ │ │ │ ├── CheckForClassTrait.php │ │ │ │ │ ├── DatastoreOperationRefreshTrait.php │ │ │ │ │ ├── FileListFilterIterator.php │ │ │ │ │ ├── GcTestListener.php │ │ │ │ │ ├── GrpcTestTrait.php │ │ │ │ │ ├── KeyPairGenerateTrait.php │ │ │ │ │ ├── Lock │ │ │ │ │ │ ├── MockGlobals.php │ │ │ │ │ │ └── MockValues.php │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Reflection │ │ │ │ │ │ ├── DescriptionFactory.php │ │ │ │ │ │ ├── ReflectionHandlerFactory.php │ │ │ │ │ │ ├── ReflectionHandlerV5.php │ │ │ │ │ │ └── ReflectionHandlerV6.php │ │ │ │ │ ├── RegexFileFilter.php │ │ │ │ │ ├── Snippet │ │ │ │ │ │ ├── Container.php │ │ │ │ │ │ ├── Coverage │ │ │ │ │ │ │ ├── Coverage.php │ │ │ │ │ │ │ ├── ExcludeFilter.php │ │ │ │ │ │ │ ├── Scanner.php │ │ │ │ │ │ │ └── ScannerInterface.php │ │ │ │ │ │ ├── Fixtures.php │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ ├── InvokeResult.php │ │ │ │ │ │ │ ├── Parser.php │ │ │ │ │ │ │ └── Snippet.php │ │ │ │ │ │ ├── SnippetTestCase.php │ │ │ │ │ │ └── keyfile-stub.json │ │ │ │ │ ├── StubTrait.php │ │ │ │ │ ├── System │ │ │ │ │ │ ├── DeletionQueue.php │ │ │ │ │ │ ├── KeyManager.php │ │ │ │ │ │ └── SystemTestCase.php │ │ │ │ │ └── TestHelpers.php │ │ │ │ ├── TimeTrait.php │ │ │ │ ├── Timestamp.php │ │ │ │ ├── TimestampTrait.php │ │ │ │ ├── Upload │ │ │ │ │ ├── AbstractUploader.php │ │ │ │ │ ├── MultipartUploader.php │ │ │ │ │ ├── ResumableUploader.php │ │ │ │ │ ├── SignedUrlUploader.php │ │ │ │ │ └── StreamableUploader.php │ │ │ │ ├── UriTrait.php │ │ │ │ ├── ValidateTrait.php │ │ │ │ ├── ValueMapperTrait.php │ │ │ │ └── WhitelistTrait.php │ │ │ ├── system-bootstrap.php │ │ │ └── unit-bootstrap.php │ │ ├── cloud-storage │ │ │ ├── .gitattributes │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── VERSION │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Acl.php │ │ │ │ ├── Bucket.php │ │ │ │ ├── Connection │ │ │ │ ├── ConnectionInterface.php │ │ │ │ ├── IamBucket.php │ │ │ │ ├── Rest.php │ │ │ │ ├── RetryTrait.php │ │ │ │ └── ServiceDefinition │ │ │ │ │ └── storage-v1.json │ │ │ │ ├── CreatedHmacKey.php │ │ │ │ ├── EncryptionTrait.php │ │ │ │ ├── HmacKey.php │ │ │ │ ├── Lifecycle.php │ │ │ │ ├── Notification.php │ │ │ │ ├── ObjectIterator.php │ │ │ │ ├── ObjectPageIterator.php │ │ │ │ ├── ReadStream.php │ │ │ │ ├── SigningHelper.php │ │ │ │ ├── StorageClient.php │ │ │ │ ├── StorageObject.php │ │ │ │ ├── StreamWrapper.php │ │ │ │ └── WriteStream.php │ │ ├── common-protos │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── VERSION │ │ │ ├── composer.json │ │ │ ├── metadata │ │ │ │ ├── Api │ │ │ │ │ ├── Annotations.php │ │ │ │ │ ├── Auth.php │ │ │ │ │ ├── Backend.php │ │ │ │ │ ├── Billing.php │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ConfigChange.php │ │ │ │ │ ├── Consumer.php │ │ │ │ │ ├── Context.php │ │ │ │ │ ├── Control.php │ │ │ │ │ ├── Distribution.php │ │ │ │ │ ├── Documentation.php │ │ │ │ │ ├── Endpoint.php │ │ │ │ │ ├── ErrorReason.php │ │ │ │ │ ├── FieldBehavior.php │ │ │ │ │ ├── FieldInfo.php │ │ │ │ │ ├── Http.php │ │ │ │ │ ├── Httpbody.php │ │ │ │ │ ├── Label.php │ │ │ │ │ ├── LaunchStage.php │ │ │ │ │ ├── Log.php │ │ │ │ │ ├── Logging.php │ │ │ │ │ ├── Metric.php │ │ │ │ │ ├── MonitoredResource.php │ │ │ │ │ ├── Monitoring.php │ │ │ │ │ ├── Policy.php │ │ │ │ │ ├── Quota.php │ │ │ │ │ ├── Resource.php │ │ │ │ │ ├── Routing.php │ │ │ │ │ ├── Service.php │ │ │ │ │ ├── SourceInfo.php │ │ │ │ │ ├── SystemParameter.php │ │ │ │ │ ├── Usage.php │ │ │ │ │ └── Visibility.php │ │ │ │ ├── Cloud │ │ │ │ │ ├── ExtendedOperations.php │ │ │ │ │ └── Location │ │ │ │ │ │ └── Locations.php │ │ │ │ ├── Iam │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── IamPolicy.php │ │ │ │ │ │ ├── Logging │ │ │ │ │ │ └── AuditData.php │ │ │ │ │ │ ├── Options.php │ │ │ │ │ │ └── Policy.php │ │ │ │ ├── Logging │ │ │ │ │ └── Type │ │ │ │ │ │ ├── HttpRequest.php │ │ │ │ │ │ └── LogSeverity.php │ │ │ │ ├── Rpc │ │ │ │ │ ├── Code.php │ │ │ │ │ ├── Context │ │ │ │ │ │ ├── AttributeContext.php │ │ │ │ │ │ └── AuditContext.php │ │ │ │ │ ├── ErrorDetails.php │ │ │ │ │ └── Status.php │ │ │ │ └── Type │ │ │ │ │ ├── CalendarPeriod.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Date.php │ │ │ │ │ ├── Datetime.php │ │ │ │ │ ├── Dayofweek.php │ │ │ │ │ ├── Decimal.php │ │ │ │ │ ├── Expr.php │ │ │ │ │ ├── Fraction.php │ │ │ │ │ ├── Interval.php │ │ │ │ │ ├── Latlng.php │ │ │ │ │ ├── LocalizedText.php │ │ │ │ │ ├── Money.php │ │ │ │ │ ├── Month.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ ├── PostalAddress.php │ │ │ │ │ ├── Quaternion.php │ │ │ │ │ └── Timeofday.php │ │ │ ├── renovate.json │ │ │ └── src │ │ │ │ ├── Api │ │ │ │ ├── Advice.php │ │ │ │ ├── AuthProvider.php │ │ │ │ ├── AuthRequirement.php │ │ │ │ ├── Authentication.php │ │ │ │ ├── AuthenticationRule.php │ │ │ │ ├── Backend.php │ │ │ │ ├── BackendRule.php │ │ │ │ ├── BackendRule │ │ │ │ │ └── PathTranslation.php │ │ │ │ ├── Billing.php │ │ │ │ ├── Billing │ │ │ │ │ └── BillingDestination.php │ │ │ │ ├── ChangeType.php │ │ │ │ ├── ClientLibraryDestination.php │ │ │ │ ├── ClientLibraryOrganization.php │ │ │ │ ├── ClientLibrarySettings.php │ │ │ │ ├── CommonLanguageSettings.php │ │ │ │ ├── ConfigChange.php │ │ │ │ ├── Context.php │ │ │ │ ├── ContextRule.php │ │ │ │ ├── Control.php │ │ │ │ ├── CppSettings.php │ │ │ │ ├── CustomHttpPattern.php │ │ │ │ ├── Distribution.php │ │ │ │ ├── Distribution │ │ │ │ │ ├── BucketOptions.php │ │ │ │ │ ├── BucketOptions │ │ │ │ │ │ ├── Explicit.php │ │ │ │ │ │ ├── Exponential.php │ │ │ │ │ │ └── Linear.php │ │ │ │ │ ├── Exemplar.php │ │ │ │ │ └── Range.php │ │ │ │ ├── Documentation.php │ │ │ │ ├── DocumentationRule.php │ │ │ │ ├── DotnetSettings.php │ │ │ │ ├── Endpoint.php │ │ │ │ ├── ErrorReason.php │ │ │ │ ├── FieldBehavior.php │ │ │ │ ├── FieldInfo.php │ │ │ │ ├── FieldInfo │ │ │ │ │ └── Format.php │ │ │ │ ├── FieldPolicy.php │ │ │ │ ├── GoSettings.php │ │ │ │ ├── Http.php │ │ │ │ ├── HttpBody.php │ │ │ │ ├── HttpRule.php │ │ │ │ ├── JavaSettings.php │ │ │ │ ├── JwtLocation.php │ │ │ │ ├── LabelDescriptor.php │ │ │ │ ├── LabelDescriptor │ │ │ │ │ └── ValueType.php │ │ │ │ ├── LaunchStage.php │ │ │ │ ├── LogDescriptor.php │ │ │ │ ├── Logging.php │ │ │ │ ├── Logging │ │ │ │ │ └── LoggingDestination.php │ │ │ │ ├── MethodPolicy.php │ │ │ │ ├── MethodSettings.php │ │ │ │ ├── MethodSettings │ │ │ │ │ └── LongRunning.php │ │ │ │ ├── Metric.php │ │ │ │ ├── MetricDescriptor.php │ │ │ │ ├── MetricDescriptor │ │ │ │ │ ├── MetricDescriptorMetadata.php │ │ │ │ │ ├── MetricKind.php │ │ │ │ │ └── ValueType.php │ │ │ │ ├── MetricRule.php │ │ │ │ ├── MonitoredResource.php │ │ │ │ ├── MonitoredResourceDescriptor.php │ │ │ │ ├── MonitoredResourceMetadata.php │ │ │ │ ├── Monitoring.php │ │ │ │ ├── Monitoring │ │ │ │ │ └── MonitoringDestination.php │ │ │ │ ├── NodeSettings.php │ │ │ │ ├── OAuthRequirements.php │ │ │ │ ├── Page.php │ │ │ │ ├── PhpSettings.php │ │ │ │ ├── ProjectProperties.php │ │ │ │ ├── Property.php │ │ │ │ ├── Property │ │ │ │ │ └── PropertyType.php │ │ │ │ ├── Publishing.php │ │ │ │ ├── PythonSettings.php │ │ │ │ ├── Quota.php │ │ │ │ ├── QuotaLimit.php │ │ │ │ ├── ResourceDescriptor.php │ │ │ │ ├── ResourceDescriptor │ │ │ │ │ ├── History.php │ │ │ │ │ └── Style.php │ │ │ │ ├── ResourceReference.php │ │ │ │ ├── RoutingParameter.php │ │ │ │ ├── RoutingRule.php │ │ │ │ ├── RubySettings.php │ │ │ │ ├── Service.php │ │ │ │ ├── SourceInfo.php │ │ │ │ ├── SystemParameter.php │ │ │ │ ├── SystemParameterRule.php │ │ │ │ ├── SystemParameters.php │ │ │ │ ├── TypeReference.php │ │ │ │ ├── Usage.php │ │ │ │ ├── UsageRule.php │ │ │ │ ├── Visibility.php │ │ │ │ └── VisibilityRule.php │ │ │ │ ├── Cloud │ │ │ │ ├── Iam │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditConfigDelta.php │ │ │ │ │ │ ├── AuditConfigDelta │ │ │ │ │ │ └── Action.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── AuditLogConfig │ │ │ │ │ │ └── LogType.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── BindingDelta.php │ │ │ │ │ │ ├── BindingDelta │ │ │ │ │ │ └── Action.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PolicyDelta.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ └── TestIamPermissionsResponse.php │ │ │ │ ├── Location │ │ │ │ │ ├── GetLocationRequest.php │ │ │ │ │ ├── ListLocationsRequest.php │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ └── Location.php │ │ │ │ ├── Logging │ │ │ │ │ └── Type │ │ │ │ │ │ ├── HttpRequest.php │ │ │ │ │ │ └── LogSeverity.php │ │ │ │ └── OperationResponseMapping.php │ │ │ │ ├── Iam │ │ │ │ └── V1 │ │ │ │ │ └── Logging │ │ │ │ │ └── AuditData.php │ │ │ │ ├── Rpc │ │ │ │ ├── BadRequest.php │ │ │ │ ├── BadRequest │ │ │ │ │ └── FieldViolation.php │ │ │ │ ├── Code.php │ │ │ │ ├── Context │ │ │ │ │ ├── AttributeContext.php │ │ │ │ │ ├── AttributeContext │ │ │ │ │ │ ├── Api.php │ │ │ │ │ │ ├── Auth.php │ │ │ │ │ │ ├── Peer.php │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ ├── Resource.php │ │ │ │ │ │ └── Response.php │ │ │ │ │ └── AuditContext.php │ │ │ │ ├── DebugInfo.php │ │ │ │ ├── ErrorInfo.php │ │ │ │ ├── Help.php │ │ │ │ ├── Help │ │ │ │ │ └── Link.php │ │ │ │ ├── LocalizedMessage.php │ │ │ │ ├── PreconditionFailure.php │ │ │ │ ├── PreconditionFailure │ │ │ │ │ └── Violation.php │ │ │ │ ├── QuotaFailure.php │ │ │ │ ├── QuotaFailure │ │ │ │ │ └── Violation.php │ │ │ │ ├── RequestInfo.php │ │ │ │ ├── ResourceInfo.php │ │ │ │ ├── RetryInfo.php │ │ │ │ └── Status.php │ │ │ │ └── Type │ │ │ │ ├── CalendarPeriod.php │ │ │ │ ├── Color.php │ │ │ │ ├── Date.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── DayOfWeek.php │ │ │ │ ├── Decimal.php │ │ │ │ ├── Expr.php │ │ │ │ ├── Fraction.php │ │ │ │ ├── Interval.php │ │ │ │ ├── LatLng.php │ │ │ │ ├── LocalizedText.php │ │ │ │ ├── Money.php │ │ │ │ ├── Month.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ ├── PhoneNumber │ │ │ │ └── ShortCode.php │ │ │ │ ├── PostalAddress.php │ │ │ │ ├── Quaternion.php │ │ │ │ ├── TimeOfDay.php │ │ │ │ └── TimeZone.php │ │ ├── gax │ │ │ ├── .repo-metadata.json │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── VERSION │ │ │ ├── composer.json │ │ │ ├── metadata │ │ │ │ ├── ApiCore │ │ │ │ │ └── Testing │ │ │ │ │ │ └── Mocks.php │ │ │ │ ├── Google │ │ │ │ │ └── ApiCore │ │ │ │ │ │ └── Tests │ │ │ │ │ │ └── Unit │ │ │ │ │ │ └── Example.php │ │ │ │ └── README.md │ │ │ ├── phpstan.neon.dist │ │ │ ├── phpunit.xml.dist │ │ │ ├── renovate.json │ │ │ └── src │ │ │ │ ├── AgentHeader.php │ │ │ │ ├── ApiException.php │ │ │ │ ├── ApiKeyHeaderCredentials.php │ │ │ │ ├── ApiStatus.php │ │ │ │ ├── ArrayTrait.php │ │ │ │ ├── BidiStream.php │ │ │ │ ├── Call.php │ │ │ │ ├── ClientOptionsTrait.php │ │ │ │ ├── ClientStream.php │ │ │ │ ├── CredentialsWrapper.php │ │ │ │ ├── FixedSizeCollection.php │ │ │ │ ├── GPBLabel.php │ │ │ │ ├── GPBType.php │ │ │ │ ├── GapicClientTrait.php │ │ │ │ ├── GrpcSupportTrait.php │ │ │ │ ├── HeaderCredentialsInterface.php │ │ │ │ ├── InsecureCredentialsWrapper.php │ │ │ │ ├── InsecureRequestBuilder.php │ │ │ │ ├── Middleware │ │ │ │ ├── CredentialsWrapperMiddleware.php │ │ │ │ ├── FixedHeaderMiddleware.php │ │ │ │ ├── MiddlewareInterface.php │ │ │ │ ├── OperationsMiddleware.php │ │ │ │ ├── OptionsFilterMiddleware.php │ │ │ │ ├── PagedMiddleware.php │ │ │ │ ├── RequestAutoPopulationMiddleware.php │ │ │ │ ├── ResponseMetadataMiddleware.php │ │ │ │ └── RetryMiddleware.php │ │ │ │ ├── OperationResponse.php │ │ │ │ ├── Options │ │ │ │ ├── CallOptions.php │ │ │ │ ├── ClientOptions.php │ │ │ │ ├── OptionsTrait.php │ │ │ │ ├── TransportOptions.php │ │ │ │ └── TransportOptions │ │ │ │ │ ├── GrpcFallbackTransportOptions.php │ │ │ │ │ ├── GrpcTransportOptions.php │ │ │ │ │ └── RestTransportOptions.php │ │ │ │ ├── Page.php │ │ │ │ ├── PageStreamingDescriptor.php │ │ │ │ ├── PagedListResponse.php │ │ │ │ ├── PathTemplate.php │ │ │ │ ├── PollingTrait.php │ │ │ │ ├── RequestBuilder.php │ │ │ │ ├── RequestParamsHeaderDescriptor.php │ │ │ │ ├── ResourceHelperTrait.php │ │ │ │ ├── ResourceTemplate │ │ │ │ ├── AbsoluteResourceTemplate.php │ │ │ │ ├── Parser.php │ │ │ │ ├── RelativeResourceTemplate.php │ │ │ │ ├── ResourceTemplateInterface.php │ │ │ │ └── Segment.php │ │ │ │ ├── RetrySettings.php │ │ │ │ ├── Serializer.php │ │ │ │ ├── ServerStream.php │ │ │ │ ├── ServerStreamingCallInterface.php │ │ │ │ ├── ServiceAddressTrait.php │ │ │ │ ├── Testing │ │ │ │ ├── GeneratedTest.php │ │ │ │ ├── MessageAwareArrayComparator.php │ │ │ │ ├── MessageAwareExporter.php │ │ │ │ ├── MockBidiStreamingCall.php │ │ │ │ ├── MockClientStreamingCall.php │ │ │ │ ├── MockGrpcTransport.php │ │ │ │ ├── MockRequest.php │ │ │ │ ├── MockRequestBody.php │ │ │ │ ├── MockResponse.php │ │ │ │ ├── MockServerStreamingCall.php │ │ │ │ ├── MockStatus.php │ │ │ │ ├── MockStubTrait.php │ │ │ │ ├── MockTransport.php │ │ │ │ ├── MockUnaryCall.php │ │ │ │ ├── ProtobufGPBEmptyComparator.php │ │ │ │ ├── ProtobufMessageComparator.php │ │ │ │ ├── ReceivedRequest.php │ │ │ │ ├── SerializationTrait.php │ │ │ │ └── mocks.proto │ │ │ │ ├── Transport │ │ │ │ ├── Grpc │ │ │ │ │ ├── ForwardingCall.php │ │ │ │ │ ├── ForwardingServerStreamingCall.php │ │ │ │ │ ├── ForwardingUnaryCall.php │ │ │ │ │ ├── ServerStreamingCallWrapper.php │ │ │ │ │ └── UnaryInterceptorInterface.php │ │ │ │ ├── GrpcFallbackTransport.php │ │ │ │ ├── GrpcTransport.php │ │ │ │ ├── HttpUnaryTransportTrait.php │ │ │ │ ├── Rest │ │ │ │ │ ├── JsonStreamDecoder.php │ │ │ │ │ └── RestServerStreamingCall.php │ │ │ │ ├── RestTransport.php │ │ │ │ └── TransportInterface.php │ │ │ │ ├── UriTrait.php │ │ │ │ ├── ValidationException.php │ │ │ │ ├── ValidationTrait.php │ │ │ │ └── Version.php │ │ ├── grpc-gcp │ │ │ ├── .github │ │ │ │ ├── release-please.yml │ │ │ │ └── workflows │ │ │ │ │ └── tests.yml │ │ │ ├── .gitmodules │ │ │ ├── .php_cs.dist │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cloudprober │ │ │ │ ├── bins │ │ │ │ │ └── opt │ │ │ │ │ │ └── grpc_php_plugin │ │ │ │ ├── cloudprober.cfg │ │ │ │ ├── codegen.sh │ │ │ │ ├── composer.json │ │ │ │ └── grpc_gpc_prober │ │ │ │ │ ├── firestore_probes.php │ │ │ │ │ ├── prober.php │ │ │ │ │ ├── spanner_probes.php │ │ │ │ │ └── stackdriver_util.php │ │ │ ├── composer.json │ │ │ ├── doc │ │ │ │ └── gRPC-client-user-guide.md │ │ │ └── src │ │ │ │ ├── ChannelRef.php │ │ │ │ ├── Config.php │ │ │ │ ├── CreatedByDeserializeCheck.php │ │ │ │ ├── GCPBidiStreamingCall.php │ │ │ │ ├── GCPCallInvoker.php │ │ │ │ ├── GCPClientStreamCall.php │ │ │ │ ├── GCPServerStreamCall.php │ │ │ │ ├── GCPUnaryCall.php │ │ │ │ ├── GcpBaseCall.php │ │ │ │ ├── GcpExtensionChannel.php │ │ │ │ ├── generated │ │ │ │ ├── GPBMetadata │ │ │ │ │ └── GrpcGcp.php │ │ │ │ └── Grpc │ │ │ │ │ └── Gcp │ │ │ │ │ ├── AffinityConfig.php │ │ │ │ │ ├── AffinityConfig_Command.php │ │ │ │ │ ├── ApiConfig.php │ │ │ │ │ ├── ChannelPoolConfig.php │ │ │ │ │ └── MethodConfig.php │ │ │ │ └── grpc_gcp.proto │ │ ├── longrunning │ │ │ ├── .gitattributes │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── VERSION │ │ │ ├── composer.json │ │ │ ├── metadata │ │ │ │ ├── Longrunning │ │ │ │ │ └── Operations.php │ │ │ │ └── README.md │ │ │ └── src │ │ │ │ ├── ApiCore │ │ │ │ └── LongRunning │ │ │ │ │ ├── Gapic │ │ │ │ │ └── OperationsGapicClient.php │ │ │ │ │ └── OperationsClient.php │ │ │ │ └── LongRunning │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ ├── Client │ │ │ │ └── OperationsClient.php │ │ │ │ ├── DeleteOperationRequest.php │ │ │ │ ├── Gapic │ │ │ │ └── OperationsGapicClient.php │ │ │ │ ├── GetOperationRequest.php │ │ │ │ ├── ListOperationsRequest.php │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ ├── Operation.php │ │ │ │ ├── OperationInfo.php │ │ │ │ ├── OperationsClient.php │ │ │ │ ├── OperationsGrpcClient.php │ │ │ │ ├── WaitOperationRequest.php │ │ │ │ └── resources │ │ │ │ ├── operations_client_config.json │ │ │ │ ├── operations_descriptor_config.php │ │ │ │ └── operations_rest_client_config.php │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── GPBMetadata │ │ │ └── Google │ │ │ │ └── Protobuf │ │ │ │ ├── Any.php │ │ │ │ ├── Api.php │ │ │ │ ├── Duration.php │ │ │ │ ├── FieldMask.php │ │ │ │ ├── GPBEmpty.php │ │ │ │ ├── Internal │ │ │ │ └── Descriptor.php │ │ │ │ ├── SourceContext.php │ │ │ │ ├── Struct.php │ │ │ │ ├── Timestamp.php │ │ │ │ ├── Type.php │ │ │ │ └── Wrappers.php │ │ │ ├── Google │ │ │ └── Protobuf │ │ │ │ ├── Any.php │ │ │ │ ├── Api.php │ │ │ │ ├── BoolValue.php │ │ │ │ ├── BytesValue.php │ │ │ │ ├── Descriptor.php │ │ │ │ ├── DescriptorPool.php │ │ │ │ ├── DoubleValue.php │ │ │ │ ├── Duration.php │ │ │ │ ├── Enum.php │ │ │ │ ├── EnumDescriptor.php │ │ │ │ ├── EnumValue.php │ │ │ │ ├── EnumValueDescriptor.php │ │ │ │ ├── Field.php │ │ │ │ ├── Field │ │ │ │ ├── Cardinality.php │ │ │ │ └── Kind.php │ │ │ │ ├── FieldDescriptor.php │ │ │ │ ├── FieldMask.php │ │ │ │ ├── Field_Cardinality.php │ │ │ │ ├── Field_Kind.php │ │ │ │ ├── FloatValue.php │ │ │ │ ├── GPBEmpty.php │ │ │ │ ├── Int32Value.php │ │ │ │ ├── Int64Value.php │ │ │ │ ├── Internal │ │ │ │ ├── AnyBase.php │ │ │ │ ├── CodedInputStream.php │ │ │ │ ├── CodedOutputStream.php │ │ │ │ ├── Descriptor.php │ │ │ │ ├── DescriptorPool.php │ │ │ │ ├── DescriptorProto.php │ │ │ │ ├── DescriptorProto │ │ │ │ │ ├── ExtensionRange.php │ │ │ │ │ └── ReservedRange.php │ │ │ │ ├── DescriptorProto_ExtensionRange.php │ │ │ │ ├── DescriptorProto_ReservedRange.php │ │ │ │ ├── EnumBuilderContext.php │ │ │ │ ├── EnumDescriptor.php │ │ │ │ ├── EnumDescriptorProto.php │ │ │ │ ├── EnumDescriptorProto │ │ │ │ │ └── EnumReservedRange.php │ │ │ │ ├── EnumDescriptorProto_EnumReservedRange.php │ │ │ │ ├── EnumOptions.php │ │ │ │ ├── EnumValueDescriptorProto.php │ │ │ │ ├── EnumValueOptions.php │ │ │ │ ├── ExtensionRangeOptions.php │ │ │ │ ├── FieldDescriptor.php │ │ │ │ ├── FieldDescriptorProto.php │ │ │ │ ├── FieldDescriptorProto │ │ │ │ │ ├── Label.php │ │ │ │ │ └── Type.php │ │ │ │ ├── FieldDescriptorProto_Label.php │ │ │ │ ├── FieldDescriptorProto_Type.php │ │ │ │ ├── FieldOptions.php │ │ │ │ ├── FieldOptions │ │ │ │ │ ├── CType.php │ │ │ │ │ └── JSType.php │ │ │ │ ├── FieldOptions_CType.php │ │ │ │ ├── FieldOptions_JSType.php │ │ │ │ ├── FileDescriptor.php │ │ │ │ ├── FileDescriptorProto.php │ │ │ │ ├── FileDescriptorSet.php │ │ │ │ ├── FileOptions.php │ │ │ │ ├── FileOptions │ │ │ │ │ └── OptimizeMode.php │ │ │ │ ├── FileOptions_OptimizeMode.php │ │ │ │ ├── GPBDecodeException.php │ │ │ │ ├── GPBJsonWire.php │ │ │ │ ├── GPBLabel.php │ │ │ │ ├── GPBType.php │ │ │ │ ├── GPBUtil.php │ │ │ │ ├── GPBWire.php │ │ │ │ ├── GPBWireType.php │ │ │ │ ├── GeneratedCodeInfo.php │ │ │ │ ├── GeneratedCodeInfo │ │ │ │ │ └── Annotation.php │ │ │ │ ├── GeneratedCodeInfo_Annotation.php │ │ │ │ ├── GetPublicDescriptorTrait.php │ │ │ │ ├── HasPublicDescriptorTrait.php │ │ │ │ ├── MapEntry.php │ │ │ │ ├── MapField.php │ │ │ │ ├── MapFieldIter.php │ │ │ │ ├── Message.php │ │ │ │ ├── MessageBuilderContext.php │ │ │ │ ├── MessageOptions.php │ │ │ │ ├── MethodDescriptorProto.php │ │ │ │ ├── MethodOptions.php │ │ │ │ ├── MethodOptions │ │ │ │ │ └── IdempotencyLevel.php │ │ │ │ ├── MethodOptions_IdempotencyLevel.php │ │ │ │ ├── OneofDescriptor.php │ │ │ │ ├── OneofDescriptorProto.php │ │ │ │ ├── OneofField.php │ │ │ │ ├── OneofOptions.php │ │ │ │ ├── RawInputStream.php │ │ │ │ ├── RepeatedField.php │ │ │ │ ├── RepeatedFieldIter.php │ │ │ │ ├── ServiceDescriptorProto.php │ │ │ │ ├── ServiceOptions.php │ │ │ │ ├── SourceCodeInfo.php │ │ │ │ ├── SourceCodeInfo │ │ │ │ │ └── Location.php │ │ │ │ ├── SourceCodeInfo_Location.php │ │ │ │ ├── TimestampBase.php │ │ │ │ ├── UninterpretedOption.php │ │ │ │ ├── UninterpretedOption │ │ │ │ │ └── NamePart.php │ │ │ │ └── UninterpretedOption_NamePart.php │ │ │ │ ├── ListValue.php │ │ │ │ ├── Method.php │ │ │ │ ├── Mixin.php │ │ │ │ ├── NullValue.php │ │ │ │ ├── OneofDescriptor.php │ │ │ │ ├── Option.php │ │ │ │ ├── SourceContext.php │ │ │ │ ├── StringValue.php │ │ │ │ ├── Struct.php │ │ │ │ ├── Syntax.php │ │ │ │ ├── Timestamp.php │ │ │ │ ├── Type.php │ │ │ │ ├── UInt32Value.php │ │ │ │ ├── UInt64Value.php │ │ │ │ └── Value.php │ │ │ └── phpdoc.dist.xml │ │ ├── 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 │ │ │ ├── MethodDescriptor.php │ │ │ ├── RpcServer.php │ │ │ ├── ServerCallReader.php │ │ │ ├── ServerCallWriter.php │ │ │ ├── ServerContext.php │ │ │ ├── ServerStreamingCall.php │ │ │ ├── Status.php │ │ │ └── UnaryCall.php │ │ ├── guzzlehttp │ │ ├── guzzle │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADING.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── BodySummarizer.php │ │ │ │ ├── BodySummarizerInterface.php │ │ │ │ ├── Client.php │ │ │ │ ├── ClientInterface.php │ │ │ │ ├── ClientTrait.php │ │ │ │ ├── Cookie │ │ │ │ ├── CookieJar.php │ │ │ │ ├── CookieJarInterface.php │ │ │ │ ├── FileCookieJar.php │ │ │ │ ├── SessionCookieJar.php │ │ │ │ └── SetCookie.php │ │ │ │ ├── Exception │ │ │ │ ├── BadResponseException.php │ │ │ │ ├── ClientException.php │ │ │ │ ├── ConnectException.php │ │ │ │ ├── GuzzleException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── RequestException.php │ │ │ │ ├── ServerException.php │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ └── TransferException.php │ │ │ │ ├── Handler │ │ │ │ ├── CurlFactory.php │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ ├── CurlHandler.php │ │ │ │ ├── CurlMultiHandler.php │ │ │ │ ├── EasyHandle.php │ │ │ │ ├── HeaderProcessor.php │ │ │ │ ├── MockHandler.php │ │ │ │ ├── Proxy.php │ │ │ │ └── StreamHandler.php │ │ │ │ ├── HandlerStack.php │ │ │ │ ├── MessageFormatter.php │ │ │ │ ├── MessageFormatterInterface.php │ │ │ │ ├── Middleware.php │ │ │ │ ├── Pool.php │ │ │ │ ├── PrepareBodyMiddleware.php │ │ │ │ ├── RedirectMiddleware.php │ │ │ │ ├── RequestOptions.php │ │ │ │ ├── RetryMiddleware.php │ │ │ │ ├── TransferStats.php │ │ │ │ ├── Utils.php │ │ │ │ ├── functions.php │ │ │ │ └── functions_include.php │ │ ├── promises │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── AggregateException.php │ │ │ │ ├── CancellationException.php │ │ │ │ ├── Coroutine.php │ │ │ │ ├── Create.php │ │ │ │ ├── Each.php │ │ │ │ ├── EachPromise.php │ │ │ │ ├── FulfilledPromise.php │ │ │ │ ├── Is.php │ │ │ │ ├── Promise.php │ │ │ │ ├── PromiseInterface.php │ │ │ │ ├── PromisorInterface.php │ │ │ │ ├── RejectedPromise.php │ │ │ │ ├── RejectionException.php │ │ │ │ ├── TaskQueue.php │ │ │ │ ├── TaskQueueInterface.php │ │ │ │ └── Utils.php │ │ └── psr7 │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── AppendStream.php │ │ │ ├── BufferStream.php │ │ │ ├── CachingStream.php │ │ │ ├── DroppingStream.php │ │ │ ├── Exception │ │ │ └── MalformedUriException.php │ │ │ ├── FnStream.php │ │ │ ├── Header.php │ │ │ ├── HttpFactory.php │ │ │ ├── InflateStream.php │ │ │ ├── LazyOpenStream.php │ │ │ ├── LimitStream.php │ │ │ ├── Message.php │ │ │ ├── MessageTrait.php │ │ │ ├── MimeType.php │ │ │ ├── MultipartStream.php │ │ │ ├── NoSeekStream.php │ │ │ ├── PumpStream.php │ │ │ ├── Query.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Rfc7230.php │ │ │ ├── ServerRequest.php │ │ │ ├── Stream.php │ │ │ ├── StreamDecoratorTrait.php │ │ │ ├── StreamWrapper.php │ │ │ ├── UploadedFile.php │ │ │ ├── Uri.php │ │ │ ├── UriComparator.php │ │ │ ├── UriNormalizer.php │ │ │ ├── UriResolver.php │ │ │ └── Utils.php │ │ ├── monolog │ │ └── monolog │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADE.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Monolog │ │ │ ├── Attribute │ │ │ └── AsMonologProcessor.php │ │ │ ├── DateTimeImmutable.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Formatter │ │ │ ├── ChromePHPFormatter.php │ │ │ ├── ElasticaFormatter.php │ │ │ ├── ElasticsearchFormatter.php │ │ │ ├── FlowdockFormatter.php │ │ │ ├── FluentdFormatter.php │ │ │ ├── FormatterInterface.php │ │ │ ├── GelfMessageFormatter.php │ │ │ ├── GoogleCloudLoggingFormatter.php │ │ │ ├── HtmlFormatter.php │ │ │ ├── JsonFormatter.php │ │ │ ├── LineFormatter.php │ │ │ ├── LogglyFormatter.php │ │ │ ├── LogmaticFormatter.php │ │ │ ├── LogstashFormatter.php │ │ │ ├── MongoDBFormatter.php │ │ │ ├── NormalizerFormatter.php │ │ │ ├── ScalarFormatter.php │ │ │ └── WildfireFormatter.php │ │ │ ├── Handler │ │ │ ├── AbstractHandler.php │ │ │ ├── AbstractProcessingHandler.php │ │ │ ├── AbstractSyslogHandler.php │ │ │ ├── AmqpHandler.php │ │ │ ├── BrowserConsoleHandler.php │ │ │ ├── BufferHandler.php │ │ │ ├── ChromePHPHandler.php │ │ │ ├── CouchDBHandler.php │ │ │ ├── CubeHandler.php │ │ │ ├── Curl │ │ │ │ └── Util.php │ │ │ ├── DeduplicationHandler.php │ │ │ ├── DoctrineCouchDBHandler.php │ │ │ ├── DynamoDbHandler.php │ │ │ ├── ElasticaHandler.php │ │ │ ├── ElasticsearchHandler.php │ │ │ ├── ErrorLogHandler.php │ │ │ ├── FallbackGroupHandler.php │ │ │ ├── FilterHandler.php │ │ │ ├── FingersCrossed │ │ │ │ ├── ActivationStrategyInterface.php │ │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ │ └── ErrorLevelActivationStrategy.php │ │ │ ├── FingersCrossedHandler.php │ │ │ ├── FirePHPHandler.php │ │ │ ├── FleepHookHandler.php │ │ │ ├── FlowdockHandler.php │ │ │ ├── FormattableHandlerInterface.php │ │ │ ├── FormattableHandlerTrait.php │ │ │ ├── GelfHandler.php │ │ │ ├── GroupHandler.php │ │ │ ├── Handler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── HandlerWrapper.php │ │ │ ├── IFTTTHandler.php │ │ │ ├── InsightOpsHandler.php │ │ │ ├── LogEntriesHandler.php │ │ │ ├── LogglyHandler.php │ │ │ ├── LogmaticHandler.php │ │ │ ├── MailHandler.php │ │ │ ├── MandrillHandler.php │ │ │ ├── MissingExtensionException.php │ │ │ ├── MongoDBHandler.php │ │ │ ├── NativeMailerHandler.php │ │ │ ├── NewRelicHandler.php │ │ │ ├── NoopHandler.php │ │ │ ├── NullHandler.php │ │ │ ├── OverflowHandler.php │ │ │ ├── PHPConsoleHandler.php │ │ │ ├── ProcessHandler.php │ │ │ ├── ProcessableHandlerInterface.php │ │ │ ├── ProcessableHandlerTrait.php │ │ │ ├── PsrHandler.php │ │ │ ├── PushoverHandler.php │ │ │ ├── RedisHandler.php │ │ │ ├── RedisPubSubHandler.php │ │ │ ├── RollbarHandler.php │ │ │ ├── RotatingFileHandler.php │ │ │ ├── SamplingHandler.php │ │ │ ├── SendGridHandler.php │ │ │ ├── Slack │ │ │ │ └── SlackRecord.php │ │ │ ├── SlackHandler.php │ │ │ ├── SlackWebhookHandler.php │ │ │ ├── SocketHandler.php │ │ │ ├── SqsHandler.php │ │ │ ├── StreamHandler.php │ │ │ ├── SwiftMailerHandler.php │ │ │ ├── SymfonyMailerHandler.php │ │ │ ├── SyslogHandler.php │ │ │ ├── SyslogUdp │ │ │ │ └── UdpSocket.php │ │ │ ├── SyslogUdpHandler.php │ │ │ ├── TelegramBotHandler.php │ │ │ ├── TestHandler.php │ │ │ ├── WebRequestRecognizerTrait.php │ │ │ ├── WhatFailureGroupHandler.php │ │ │ └── ZendMonitorHandler.php │ │ │ ├── LogRecord.php │ │ │ ├── Logger.php │ │ │ ├── Processor │ │ │ ├── GitProcessor.php │ │ │ ├── HostnameProcessor.php │ │ │ ├── IntrospectionProcessor.php │ │ │ ├── MemoryPeakUsageProcessor.php │ │ │ ├── MemoryProcessor.php │ │ │ ├── MemoryUsageProcessor.php │ │ │ ├── MercurialProcessor.php │ │ │ ├── ProcessIdProcessor.php │ │ │ ├── ProcessorInterface.php │ │ │ ├── PsrLogMessageProcessor.php │ │ │ ├── TagProcessor.php │ │ │ ├── UidProcessor.php │ │ │ └── WebProcessor.php │ │ │ ├── Registry.php │ │ │ ├── ResettableInterface.php │ │ │ ├── SignalHandler.php │ │ │ ├── Test │ │ │ └── TestCase.php │ │ │ └── Utils.php │ │ ├── paragonie │ │ ├── constant_time_encoding │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Base32.php │ │ │ │ ├── Base32Hex.php │ │ │ │ ├── Base64.php │ │ │ │ ├── Base64DotSlash.php │ │ │ │ ├── Base64DotSlashOrdered.php │ │ │ │ ├── Base64UrlSafe.php │ │ │ │ ├── Binary.php │ │ │ │ ├── EncoderInterface.php │ │ │ │ ├── Encoding.php │ │ │ │ ├── Hex.php │ │ │ │ └── RFC4648.php │ │ └── random_compat │ │ │ ├── LICENSE │ │ │ ├── build-phar.sh │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ ├── random_compat.phar.pubkey │ │ │ └── random_compat.phar.pubkey.asc │ │ │ ├── lib │ │ │ └── random.php │ │ │ ├── other │ │ │ └── build_phar.php │ │ │ ├── psalm-autoload.php │ │ │ └── psalm.xml │ │ ├── phpseclib │ │ └── phpseclib │ │ │ ├── AUTHORS │ │ │ ├── BACKERS.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── phpseclib │ │ │ ├── Common │ │ │ └── Functions │ │ │ │ └── Strings.php │ │ │ ├── Crypt │ │ │ ├── AES.php │ │ │ ├── Blowfish.php │ │ │ ├── ChaCha20.php │ │ │ ├── Common │ │ │ │ ├── AsymmetricKey.php │ │ │ │ ├── BlockCipher.php │ │ │ │ ├── Formats │ │ │ │ │ ├── Keys │ │ │ │ │ │ ├── JWK.php │ │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ │ ├── PKCS.php │ │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ │ └── PuTTY.php │ │ │ │ │ └── Signature │ │ │ │ │ │ └── Raw.php │ │ │ │ ├── PrivateKey.php │ │ │ │ ├── PublicKey.php │ │ │ │ ├── StreamCipher.php │ │ │ │ ├── SymmetricKey.php │ │ │ │ └── Traits │ │ │ │ │ ├── Fingerprint.php │ │ │ │ │ └── PasswordProtected.php │ │ │ ├── DES.php │ │ │ ├── DH.php │ │ │ ├── DH │ │ │ │ ├── Formats │ │ │ │ │ └── Keys │ │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ │ └── PKCS8.php │ │ │ │ ├── Parameters.php │ │ │ │ ├── PrivateKey.php │ │ │ │ └── PublicKey.php │ │ │ ├── DSA.php │ │ │ ├── DSA │ │ │ │ ├── Formats │ │ │ │ │ ├── Keys │ │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ │ ├── PuTTY.php │ │ │ │ │ │ ├── Raw.php │ │ │ │ │ │ └── XML.php │ │ │ │ │ └── Signature │ │ │ │ │ │ ├── ASN1.php │ │ │ │ │ │ ├── Raw.php │ │ │ │ │ │ └── SSH2.php │ │ │ │ ├── Parameters.php │ │ │ │ ├── PrivateKey.php │ │ │ │ └── PublicKey.php │ │ │ ├── EC.php │ │ │ ├── EC │ │ │ │ ├── BaseCurves │ │ │ │ │ ├── Base.php │ │ │ │ │ ├── Binary.php │ │ │ │ │ ├── KoblitzPrime.php │ │ │ │ │ ├── Montgomery.php │ │ │ │ │ ├── Prime.php │ │ │ │ │ └── TwistedEdwards.php │ │ │ │ ├── Curves │ │ │ │ │ ├── Curve25519.php │ │ │ │ │ ├── Curve448.php │ │ │ │ │ ├── Ed25519.php │ │ │ │ │ ├── Ed448.php │ │ │ │ │ ├── brainpoolP160r1.php │ │ │ │ │ ├── brainpoolP160t1.php │ │ │ │ │ ├── brainpoolP192r1.php │ │ │ │ │ ├── brainpoolP192t1.php │ │ │ │ │ ├── brainpoolP224r1.php │ │ │ │ │ ├── brainpoolP224t1.php │ │ │ │ │ ├── brainpoolP256r1.php │ │ │ │ │ ├── brainpoolP256t1.php │ │ │ │ │ ├── brainpoolP320r1.php │ │ │ │ │ ├── brainpoolP320t1.php │ │ │ │ │ ├── brainpoolP384r1.php │ │ │ │ │ ├── brainpoolP384t1.php │ │ │ │ │ ├── brainpoolP512r1.php │ │ │ │ │ ├── brainpoolP512t1.php │ │ │ │ │ ├── nistb233.php │ │ │ │ │ ├── nistb409.php │ │ │ │ │ ├── nistk163.php │ │ │ │ │ ├── nistk233.php │ │ │ │ │ ├── nistk283.php │ │ │ │ │ ├── nistk409.php │ │ │ │ │ ├── nistp192.php │ │ │ │ │ ├── nistp224.php │ │ │ │ │ ├── nistp256.php │ │ │ │ │ ├── nistp384.php │ │ │ │ │ ├── nistp521.php │ │ │ │ │ ├── nistt571.php │ │ │ │ │ ├── prime192v1.php │ │ │ │ │ ├── prime192v2.php │ │ │ │ │ ├── prime192v3.php │ │ │ │ │ ├── prime239v1.php │ │ │ │ │ ├── prime239v2.php │ │ │ │ │ ├── prime239v3.php │ │ │ │ │ ├── prime256v1.php │ │ │ │ │ ├── secp112r1.php │ │ │ │ │ ├── secp112r2.php │ │ │ │ │ ├── secp128r1.php │ │ │ │ │ ├── secp128r2.php │ │ │ │ │ ├── secp160k1.php │ │ │ │ │ ├── secp160r1.php │ │ │ │ │ ├── secp160r2.php │ │ │ │ │ ├── secp192k1.php │ │ │ │ │ ├── secp192r1.php │ │ │ │ │ ├── secp224k1.php │ │ │ │ │ ├── secp224r1.php │ │ │ │ │ ├── secp256k1.php │ │ │ │ │ ├── secp256r1.php │ │ │ │ │ ├── secp384r1.php │ │ │ │ │ ├── secp521r1.php │ │ │ │ │ ├── sect113r1.php │ │ │ │ │ ├── sect113r2.php │ │ │ │ │ ├── sect131r1.php │ │ │ │ │ ├── sect131r2.php │ │ │ │ │ ├── sect163k1.php │ │ │ │ │ ├── sect163r1.php │ │ │ │ │ ├── sect163r2.php │ │ │ │ │ ├── sect193r1.php │ │ │ │ │ ├── sect193r2.php │ │ │ │ │ ├── sect233k1.php │ │ │ │ │ ├── sect233r1.php │ │ │ │ │ ├── sect239k1.php │ │ │ │ │ ├── sect283k1.php │ │ │ │ │ ├── sect283r1.php │ │ │ │ │ ├── sect409k1.php │ │ │ │ │ ├── sect409r1.php │ │ │ │ │ ├── sect571k1.php │ │ │ │ │ └── sect571r1.php │ │ │ │ ├── Formats │ │ │ │ │ ├── Keys │ │ │ │ │ │ ├── Common.php │ │ │ │ │ │ ├── JWK.php │ │ │ │ │ │ ├── MontgomeryPrivate.php │ │ │ │ │ │ ├── MontgomeryPublic.php │ │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ │ ├── PuTTY.php │ │ │ │ │ │ ├── XML.php │ │ │ │ │ │ └── libsodium.php │ │ │ │ │ └── Signature │ │ │ │ │ │ ├── ASN1.php │ │ │ │ │ │ ├── IEEE.php │ │ │ │ │ │ ├── Raw.php │ │ │ │ │ │ └── SSH2.php │ │ │ │ ├── Parameters.php │ │ │ │ ├── PrivateKey.php │ │ │ │ └── PublicKey.php │ │ │ ├── Hash.php │ │ │ ├── PublicKeyLoader.php │ │ │ ├── RC2.php │ │ │ ├── RC4.php │ │ │ ├── RSA.php │ │ │ ├── RSA │ │ │ │ ├── Formats │ │ │ │ │ └── Keys │ │ │ │ │ │ ├── JWK.php │ │ │ │ │ │ ├── MSBLOB.php │ │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ │ ├── PSS.php │ │ │ │ │ │ ├── PuTTY.php │ │ │ │ │ │ ├── Raw.php │ │ │ │ │ │ └── XML.php │ │ │ │ ├── PrivateKey.php │ │ │ │ └── PublicKey.php │ │ │ ├── Random.php │ │ │ ├── Rijndael.php │ │ │ ├── Salsa20.php │ │ │ ├── TripleDES.php │ │ │ └── Twofish.php │ │ │ ├── Exception │ │ │ ├── BadConfigurationException.php │ │ │ ├── BadDecryptionException.php │ │ │ ├── BadModeException.php │ │ │ ├── ConnectionClosedException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── InconsistentSetupException.php │ │ │ ├── InsufficientSetupException.php │ │ │ ├── InvalidPacketLengthException.php │ │ │ ├── NoKeyLoadedException.php │ │ │ ├── NoSupportedAlgorithmsException.php │ │ │ ├── TimeoutException.php │ │ │ ├── UnableToConnectException.php │ │ │ ├── UnsupportedAlgorithmException.php │ │ │ ├── UnsupportedCurveException.php │ │ │ ├── UnsupportedFormatException.php │ │ │ └── UnsupportedOperationException.php │ │ │ ├── File │ │ │ ├── ANSI.php │ │ │ ├── ASN1.php │ │ │ ├── ASN1 │ │ │ │ ├── Element.php │ │ │ │ └── Maps │ │ │ │ │ ├── AccessDescription.php │ │ │ │ │ ├── AdministrationDomainName.php │ │ │ │ │ ├── AlgorithmIdentifier.php │ │ │ │ │ ├── AnotherName.php │ │ │ │ │ ├── Attribute.php │ │ │ │ │ ├── AttributeType.php │ │ │ │ │ ├── AttributeTypeAndValue.php │ │ │ │ │ ├── AttributeValue.php │ │ │ │ │ ├── Attributes.php │ │ │ │ │ ├── AuthorityInfoAccessSyntax.php │ │ │ │ │ ├── AuthorityKeyIdentifier.php │ │ │ │ │ ├── BaseDistance.php │ │ │ │ │ ├── BasicConstraints.php │ │ │ │ │ ├── BuiltInDomainDefinedAttribute.php │ │ │ │ │ ├── BuiltInDomainDefinedAttributes.php │ │ │ │ │ ├── BuiltInStandardAttributes.php │ │ │ │ │ ├── CPSuri.php │ │ │ │ │ ├── CRLDistributionPoints.php │ │ │ │ │ ├── CRLNumber.php │ │ │ │ │ ├── CRLReason.php │ │ │ │ │ ├── CertPolicyId.php │ │ │ │ │ ├── Certificate.php │ │ │ │ │ ├── CertificateIssuer.php │ │ │ │ │ ├── CertificateList.php │ │ │ │ │ ├── CertificatePolicies.php │ │ │ │ │ ├── CertificateSerialNumber.php │ │ │ │ │ ├── CertificationRequest.php │ │ │ │ │ ├── CertificationRequestInfo.php │ │ │ │ │ ├── Characteristic_two.php │ │ │ │ │ ├── CountryName.php │ │ │ │ │ ├── Curve.php │ │ │ │ │ ├── DHParameter.php │ │ │ │ │ ├── DSAParams.php │ │ │ │ │ ├── DSAPrivateKey.php │ │ │ │ │ ├── DSAPublicKey.php │ │ │ │ │ ├── DigestInfo.php │ │ │ │ │ ├── DirectoryString.php │ │ │ │ │ ├── DisplayText.php │ │ │ │ │ ├── DistributionPoint.php │ │ │ │ │ ├── DistributionPointName.php │ │ │ │ │ ├── DssSigValue.php │ │ │ │ │ ├── ECParameters.php │ │ │ │ │ ├── ECPoint.php │ │ │ │ │ ├── ECPrivateKey.php │ │ │ │ │ ├── EDIPartyName.php │ │ │ │ │ ├── EcdsaSigValue.php │ │ │ │ │ ├── EncryptedData.php │ │ │ │ │ ├── EncryptedPrivateKeyInfo.php │ │ │ │ │ ├── ExtKeyUsageSyntax.php │ │ │ │ │ ├── Extension.php │ │ │ │ │ ├── ExtensionAttribute.php │ │ │ │ │ ├── ExtensionAttributes.php │ │ │ │ │ ├── Extensions.php │ │ │ │ │ ├── FieldElement.php │ │ │ │ │ ├── FieldID.php │ │ │ │ │ ├── GeneralName.php │ │ │ │ │ ├── GeneralNames.php │ │ │ │ │ ├── GeneralSubtree.php │ │ │ │ │ ├── GeneralSubtrees.php │ │ │ │ │ ├── HashAlgorithm.php │ │ │ │ │ ├── HoldInstructionCode.php │ │ │ │ │ ├── InvalidityDate.php │ │ │ │ │ ├── IssuerAltName.php │ │ │ │ │ ├── IssuingDistributionPoint.php │ │ │ │ │ ├── KeyIdentifier.php │ │ │ │ │ ├── KeyPurposeId.php │ │ │ │ │ ├── KeyUsage.php │ │ │ │ │ ├── MaskGenAlgorithm.php │ │ │ │ │ ├── Name.php │ │ │ │ │ ├── NameConstraints.php │ │ │ │ │ ├── NetworkAddress.php │ │ │ │ │ ├── NoticeReference.php │ │ │ │ │ ├── NumericUserIdentifier.php │ │ │ │ │ ├── ORAddress.php │ │ │ │ │ ├── OneAsymmetricKey.php │ │ │ │ │ ├── OrganizationName.php │ │ │ │ │ ├── OrganizationalUnitNames.php │ │ │ │ │ ├── OtherPrimeInfo.php │ │ │ │ │ ├── OtherPrimeInfos.php │ │ │ │ │ ├── PBEParameter.php │ │ │ │ │ ├── PBES2params.php │ │ │ │ │ ├── PBKDF2params.php │ │ │ │ │ ├── PBMAC1params.php │ │ │ │ │ ├── PKCS9String.php │ │ │ │ │ ├── Pentanomial.php │ │ │ │ │ ├── PersonalName.php │ │ │ │ │ ├── PolicyInformation.php │ │ │ │ │ ├── PolicyMappings.php │ │ │ │ │ ├── PolicyQualifierId.php │ │ │ │ │ ├── PolicyQualifierInfo.php │ │ │ │ │ ├── PostalAddress.php │ │ │ │ │ ├── Prime_p.php │ │ │ │ │ ├── PrivateDomainName.php │ │ │ │ │ ├── PrivateKey.php │ │ │ │ │ ├── PrivateKeyInfo.php │ │ │ │ │ ├── PrivateKeyUsagePeriod.php │ │ │ │ │ ├── PublicKey.php │ │ │ │ │ ├── PublicKeyAndChallenge.php │ │ │ │ │ ├── PublicKeyInfo.php │ │ │ │ │ ├── RC2CBCParameter.php │ │ │ │ │ ├── RDNSequence.php │ │ │ │ │ ├── RSAPrivateKey.php │ │ │ │ │ ├── RSAPublicKey.php │ │ │ │ │ ├── RSASSA_PSS_params.php │ │ │ │ │ ├── ReasonFlags.php │ │ │ │ │ ├── RelativeDistinguishedName.php │ │ │ │ │ ├── RevokedCertificate.php │ │ │ │ │ ├── SignedPublicKeyAndChallenge.php │ │ │ │ │ ├── SpecifiedECDomain.php │ │ │ │ │ ├── SubjectAltName.php │ │ │ │ │ ├── SubjectDirectoryAttributes.php │ │ │ │ │ ├── SubjectInfoAccessSyntax.php │ │ │ │ │ ├── SubjectPublicKeyInfo.php │ │ │ │ │ ├── TBSCertList.php │ │ │ │ │ ├── TBSCertificate.php │ │ │ │ │ ├── TerminalIdentifier.php │ │ │ │ │ ├── Time.php │ │ │ │ │ ├── Trinomial.php │ │ │ │ │ ├── UniqueIdentifier.php │ │ │ │ │ ├── UserNotice.php │ │ │ │ │ ├── Validity.php │ │ │ │ │ ├── netscape_ca_policy_url.php │ │ │ │ │ ├── netscape_cert_type.php │ │ │ │ │ └── netscape_comment.php │ │ │ └── X509.php │ │ │ ├── Math │ │ │ ├── BigInteger.php │ │ │ ├── BigInteger │ │ │ │ └── Engines │ │ │ │ │ ├── BCMath.php │ │ │ │ │ ├── BCMath │ │ │ │ │ ├── Base.php │ │ │ │ │ ├── BuiltIn.php │ │ │ │ │ ├── DefaultEngine.php │ │ │ │ │ ├── OpenSSL.php │ │ │ │ │ └── Reductions │ │ │ │ │ │ ├── Barrett.php │ │ │ │ │ │ └── EvalBarrett.php │ │ │ │ │ ├── Engine.php │ │ │ │ │ ├── GMP.php │ │ │ │ │ ├── GMP │ │ │ │ │ └── DefaultEngine.php │ │ │ │ │ ├── OpenSSL.php │ │ │ │ │ ├── PHP.php │ │ │ │ │ ├── PHP │ │ │ │ │ ├── Base.php │ │ │ │ │ ├── DefaultEngine.php │ │ │ │ │ ├── Montgomery.php │ │ │ │ │ ├── OpenSSL.php │ │ │ │ │ └── Reductions │ │ │ │ │ │ ├── Barrett.php │ │ │ │ │ │ ├── Classic.php │ │ │ │ │ │ ├── EvalBarrett.php │ │ │ │ │ │ ├── Montgomery.php │ │ │ │ │ │ ├── MontgomeryMult.php │ │ │ │ │ │ └── PowerOfTwo.php │ │ │ │ │ ├── PHP32.php │ │ │ │ │ └── PHP64.php │ │ │ ├── BinaryField.php │ │ │ ├── BinaryField │ │ │ │ └── Integer.php │ │ │ ├── Common │ │ │ │ ├── FiniteField.php │ │ │ │ └── FiniteField │ │ │ │ │ └── Integer.php │ │ │ ├── PrimeField.php │ │ │ └── PrimeField │ │ │ │ └── Integer.php │ │ │ ├── Net │ │ │ ├── SFTP.php │ │ │ ├── SFTP │ │ │ │ └── Stream.php │ │ │ └── SSH2.php │ │ │ ├── System │ │ │ └── SSH │ │ │ │ ├── Agent.php │ │ │ │ ├── Agent │ │ │ │ └── Identity.php │ │ │ │ └── Common │ │ │ │ └── Traits │ │ │ │ └── ReadBytes.php │ │ │ ├── bootstrap.php │ │ │ └── openssl.cnf │ │ ├── psr │ │ ├── cache │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── CacheException.php │ │ │ │ ├── CacheItemInterface.php │ │ │ │ ├── CacheItemPoolInterface.php │ │ │ │ └── InvalidArgumentException.php │ │ ├── http-client │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── ClientExceptionInterface.php │ │ │ │ ├── ClientInterface.php │ │ │ │ ├── NetworkExceptionInterface.php │ │ │ │ └── RequestExceptionInterface.php │ │ ├── http-factory │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── RequestFactoryInterface.php │ │ │ │ ├── ResponseFactoryInterface.php │ │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ │ ├── StreamFactoryInterface.php │ │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ │ └── UriFactoryInterface.php │ │ ├── http-message │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ │ ├── PSR7-Interfaces.md │ │ │ │ └── PSR7-Usage.md │ │ │ └── src │ │ │ │ ├── MessageInterface.php │ │ │ │ ├── RequestInterface.php │ │ │ │ ├── ResponseInterface.php │ │ │ │ ├── ServerRequestInterface.php │ │ │ │ ├── StreamInterface.php │ │ │ │ ├── UploadedFileInterface.php │ │ │ │ └── UriInterface.php │ │ └── log │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ └── NullLogger.php │ │ ├── ralouphie │ │ └── getallheaders │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── getallheaders.php │ │ ├── ramsey │ │ ├── collection │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ ├── conventional-commits.json │ │ │ └── src │ │ │ │ ├── AbstractArray.php │ │ │ │ ├── AbstractCollection.php │ │ │ │ ├── AbstractSet.php │ │ │ │ ├── ArrayInterface.php │ │ │ │ ├── Collection.php │ │ │ │ ├── CollectionInterface.php │ │ │ │ ├── DoubleEndedQueue.php │ │ │ │ ├── DoubleEndedQueueInterface.php │ │ │ │ ├── Exception │ │ │ │ ├── CollectionMismatchException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidSortOrderException.php │ │ │ │ ├── NoSuchElementException.php │ │ │ │ ├── OutOfBoundsException.php │ │ │ │ ├── UnsupportedOperationException.php │ │ │ │ └── ValueExtractionException.php │ │ │ │ ├── GenericArray.php │ │ │ │ ├── Map │ │ │ │ ├── AbstractMap.php │ │ │ │ ├── AbstractTypedMap.php │ │ │ │ ├── AssociativeArrayMap.php │ │ │ │ ├── MapInterface.php │ │ │ │ ├── NamedParameterMap.php │ │ │ │ ├── TypedMap.php │ │ │ │ └── TypedMapInterface.php │ │ │ │ ├── Queue.php │ │ │ │ ├── QueueInterface.php │ │ │ │ ├── Set.php │ │ │ │ └── Tool │ │ │ │ ├── TypeTrait.php │ │ │ │ ├── ValueExtractorTrait.php │ │ │ │ └── ValueToStringTrait.php │ │ └── uuid │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── BinaryUtils.php │ │ │ ├── Builder │ │ │ ├── BuilderCollection.php │ │ │ ├── DefaultUuidBuilder.php │ │ │ ├── DegradedUuidBuilder.php │ │ │ ├── FallbackBuilder.php │ │ │ └── UuidBuilderInterface.php │ │ │ ├── Codec │ │ │ ├── CodecInterface.php │ │ │ ├── GuidStringCodec.php │ │ │ ├── OrderedTimeCodec.php │ │ │ ├── StringCodec.php │ │ │ ├── TimestampFirstCombCodec.php │ │ │ └── TimestampLastCombCodec.php │ │ │ ├── Converter │ │ │ ├── Number │ │ │ │ ├── BigNumberConverter.php │ │ │ │ ├── DegradedNumberConverter.php │ │ │ │ └── GenericNumberConverter.php │ │ │ ├── NumberConverterInterface.php │ │ │ ├── Time │ │ │ │ ├── BigNumberTimeConverter.php │ │ │ │ ├── DegradedTimeConverter.php │ │ │ │ ├── GenericTimeConverter.php │ │ │ │ ├── PhpTimeConverter.php │ │ │ │ └── UnixTimeConverter.php │ │ │ └── TimeConverterInterface.php │ │ │ ├── DegradedUuid.php │ │ │ ├── DeprecatedUuidInterface.php │ │ │ ├── DeprecatedUuidMethodsTrait.php │ │ │ ├── Exception │ │ │ ├── BuilderNotFoundException.php │ │ │ ├── DateTimeException.php │ │ │ ├── DceSecurityException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidBytesException.php │ │ │ ├── InvalidUuidStringException.php │ │ │ ├── NameException.php │ │ │ ├── NodeException.php │ │ │ ├── RandomSourceException.php │ │ │ ├── TimeSourceException.php │ │ │ ├── UnableToBuildUuidException.php │ │ │ ├── UnsupportedOperationException.php │ │ │ └── UuidExceptionInterface.php │ │ │ ├── FeatureSet.php │ │ │ ├── Fields │ │ │ ├── FieldsInterface.php │ │ │ └── SerializableFieldsTrait.php │ │ │ ├── Generator │ │ │ ├── CombGenerator.php │ │ │ ├── DceSecurityGenerator.php │ │ │ ├── DceSecurityGeneratorInterface.php │ │ │ ├── DefaultNameGenerator.php │ │ │ ├── DefaultTimeGenerator.php │ │ │ ├── NameGeneratorFactory.php │ │ │ ├── NameGeneratorInterface.php │ │ │ ├── PeclUuidNameGenerator.php │ │ │ ├── PeclUuidRandomGenerator.php │ │ │ ├── PeclUuidTimeGenerator.php │ │ │ ├── RandomBytesGenerator.php │ │ │ ├── RandomGeneratorFactory.php │ │ │ ├── RandomGeneratorInterface.php │ │ │ ├── RandomLibAdapter.php │ │ │ ├── TimeGeneratorFactory.php │ │ │ ├── TimeGeneratorInterface.php │ │ │ └── UnixTimeGenerator.php │ │ │ ├── Guid │ │ │ ├── Fields.php │ │ │ ├── Guid.php │ │ │ └── GuidBuilder.php │ │ │ ├── Lazy │ │ │ └── LazyUuidFromString.php │ │ │ ├── Math │ │ │ ├── BrickMathCalculator.php │ │ │ ├── CalculatorInterface.php │ │ │ └── RoundingMode.php │ │ │ ├── Nonstandard │ │ │ ├── Fields.php │ │ │ ├── Uuid.php │ │ │ ├── UuidBuilder.php │ │ │ └── UuidV6.php │ │ │ ├── Provider │ │ │ ├── Dce │ │ │ │ └── SystemDceSecurityProvider.php │ │ │ ├── DceSecurityProviderInterface.php │ │ │ ├── Node │ │ │ │ ├── FallbackNodeProvider.php │ │ │ │ ├── NodeProviderCollection.php │ │ │ │ ├── RandomNodeProvider.php │ │ │ │ ├── StaticNodeProvider.php │ │ │ │ └── SystemNodeProvider.php │ │ │ ├── NodeProviderInterface.php │ │ │ ├── Time │ │ │ │ ├── FixedTimeProvider.php │ │ │ │ └── SystemTimeProvider.php │ │ │ └── TimeProviderInterface.php │ │ │ ├── Rfc4122 │ │ │ ├── Fields.php │ │ │ ├── FieldsInterface.php │ │ │ ├── MaxTrait.php │ │ │ ├── MaxUuid.php │ │ │ ├── NilTrait.php │ │ │ ├── NilUuid.php │ │ │ ├── TimeTrait.php │ │ │ ├── UuidBuilder.php │ │ │ ├── UuidInterface.php │ │ │ ├── UuidV1.php │ │ │ ├── UuidV2.php │ │ │ ├── UuidV3.php │ │ │ ├── UuidV4.php │ │ │ ├── UuidV5.php │ │ │ ├── UuidV6.php │ │ │ ├── UuidV7.php │ │ │ ├── UuidV8.php │ │ │ ├── Validator.php │ │ │ ├── VariantTrait.php │ │ │ └── VersionTrait.php │ │ │ ├── Type │ │ │ ├── Decimal.php │ │ │ ├── Hexadecimal.php │ │ │ ├── Integer.php │ │ │ ├── NumberInterface.php │ │ │ ├── Time.php │ │ │ └── TypeInterface.php │ │ │ ├── Uuid.php │ │ │ ├── UuidFactory.php │ │ │ ├── UuidFactoryInterface.php │ │ │ ├── UuidInterface.php │ │ │ ├── Validator │ │ │ ├── GenericValidator.php │ │ │ └── ValidatorInterface.php │ │ │ └── functions.php │ │ ├── rize │ │ └── uri-template │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Rize │ │ │ ├── UriTemplate.php │ │ │ └── UriTemplate │ │ │ ├── Node │ │ │ ├── Abstraction.php │ │ │ ├── Expression.php │ │ │ ├── Literal.php │ │ │ └── Variable.php │ │ │ ├── Operator │ │ │ ├── Abstraction.php │ │ │ ├── Named.php │ │ │ └── UnNamed.php │ │ │ ├── Parser.php │ │ │ └── UriTemplate.php │ │ └── symfony │ │ ├── deprecation-contracts │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── function.php │ │ └── polyfill-php81 │ │ ├── LICENSE │ │ ├── Php81.php │ │ ├── README.md │ │ ├── Resources │ │ └── stubs │ │ │ ├── CURLStringFile.php │ │ │ └── ReturnTypeWillChange.php │ │ ├── bootstrap.php │ │ └── composer.json ├── classes │ ├── batch │ │ ├── class-batch-task-manager.php │ │ ├── class-batch-task.php │ │ ├── class-migration.php │ │ └── interface-batch.php │ ├── class-addons.php │ ├── class-ajax.php │ ├── class-api.php │ ├── class-bootstrap.php │ ├── class-compatibility.php │ ├── class-db.php │ ├── class-dynamic-image-support.php │ ├── class-errors.php │ ├── class-google-app-engine.php │ ├── class-gs-client.php │ ├── class-gs-stream-wrapper.php │ ├── class-helper.php │ ├── class-logger.php │ ├── class-migrator.php │ ├── class-module.php │ ├── class-settings.php │ ├── class-status.php │ ├── class-sync-non-media.php │ ├── class-upgrader.php │ ├── class-utility.php │ ├── compatibility │ │ ├── ewww.php │ │ ├── imagify.php │ │ ├── js │ │ │ └── shortpixel.js │ │ ├── learn-dash.php │ │ ├── shortpixel.php │ │ ├── simple-local-avatars.php │ │ ├── the-events-calendar.php │ │ ├── woo-extra-product-options.php │ │ ├── wp-smush.php │ │ └── wpbakery-page-builder.php │ ├── exception-fatal.php │ ├── exception-unprocessable.php │ ├── status │ │ ├── class-info-google_cloud.php │ │ ├── class-info-stateless.php │ │ ├── class-info.php │ │ └── class-migrations.php │ ├── sync │ │ ├── class-background-sync.php │ │ ├── class-file-sync.php │ │ ├── class-helper-window.php │ │ ├── class-image-sync.php │ │ ├── class-library-sync.php │ │ ├── class-non-library-sync.php │ │ └── interface-sync.php │ └── trait-singleton.php ├── cli │ ├── class-sm-cli-command.php │ ├── class-sm-cli-process.php │ ├── class-sm-cli-scaffold.php │ ├── class-sm-cli-sync.php │ ├── class-sm-cli-upgrade.php │ └── class-sm-cli.php ├── includes │ ├── class-settings.php │ └── class-utility.php ├── meta-box-tabs │ ├── meta-box-tabs.php │ ├── tabs.css │ └── tabs.js └── ns-vendor │ └── classes │ ├── .gitkeep │ └── deliciousbrains │ └── wp-background-processing │ └── classes │ ├── wp-async-request.php │ └── wp-background-process.php ├── readme.md ├── readme.txt ├── static ├── data │ └── addons.php ├── images │ ├── authenticate-login.png │ ├── author-image.png │ ├── author-image@2x.png │ ├── ficon1.png │ ├── ficon2.png │ ├── ficon3.png │ ├── setup-complete.png │ ├── shape.png │ ├── stateless.svg │ ├── tick.png │ └── wp-stateless-dashboard-header-bg.png ├── migrations │ ├── 20240219175240.php │ └── 20240423174109.php ├── scripts │ ├── error-notice.js │ ├── i18n │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── dsb.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hsb.js │ │ ├── hu.js │ │ ├── hy.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── ne.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── ps.js │ │ ├── pt-BR.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-Cyrl.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tk.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-CN.js │ │ └── zh-TW.js │ ├── jquery-ui │ │ ├── jquery.ui.progressbar.min.1.7.2.js │ │ ├── jquery.ui.progressbar.min.js │ │ └── redmond │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ └── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ └── jquery-ui-1.7.2.custom.css │ ├── select2.full.min.js │ ├── select2.min.js │ ├── wp-stateless-batch.js │ ├── wp-stateless-settings.js │ ├── wp-stateless-uploads.js │ └── wp-stateless.js ├── styles │ ├── error-notice.css │ ├── select2.min.css │ ├── wp-stateless-addons.css │ ├── wp-stateless-settings.css │ ├── wp-stateless-setup-wizard.css │ ├── wp-stateless-status.css │ └── wp-stateless.css ├── views │ ├── .gitkeep │ ├── addons-tab.php │ ├── compatibility-tab.php │ ├── error-notice.php │ ├── processing_interface.php │ ├── settings-sections │ │ ├── file-url.php │ │ ├── general.php │ │ ├── google-cloud-storage.php │ │ └── network.php │ ├── settings-tab.php │ ├── settings_interface.php │ ├── setup_wizard_interface.php │ └── status-sections │ │ ├── info.php │ │ └── migrations.php └── wiki │ └── Media-Object.md ├── vendor ├── autoload.php ├── ccampbell │ └── chromephp │ │ ├── ChromePhp.php │ │ ├── README.md │ │ └── composer.json ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ ├── installers │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── continuous-integration.yml │ │ │ │ ├── lint.yml │ │ │ │ └── phpstan.yml │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ │ ├── Composer │ │ │ └── Installers │ │ │ │ ├── AglInstaller.php │ │ │ │ ├── AkauntingInstaller.php │ │ │ │ ├── AnnotateCmsInstaller.php │ │ │ │ ├── AsgardInstaller.php │ │ │ │ ├── AttogramInstaller.php │ │ │ │ ├── BaseInstaller.php │ │ │ │ ├── BitrixInstaller.php │ │ │ │ ├── BonefishInstaller.php │ │ │ │ ├── BotbleInstaller.php │ │ │ │ ├── CakePHPInstaller.php │ │ │ │ ├── ChefInstaller.php │ │ │ │ ├── CiviCrmInstaller.php │ │ │ │ ├── ClanCatsFrameworkInstaller.php │ │ │ │ ├── CockpitInstaller.php │ │ │ │ ├── CodeIgniterInstaller.php │ │ │ │ ├── Concrete5Installer.php │ │ │ │ ├── ConcreteCMSInstaller.php │ │ │ │ ├── CroogoInstaller.php │ │ │ │ ├── DecibelInstaller.php │ │ │ │ ├── DframeInstaller.php │ │ │ │ ├── DokuWikiInstaller.php │ │ │ │ ├── DolibarrInstaller.php │ │ │ │ ├── DrupalInstaller.php │ │ │ │ ├── ElggInstaller.php │ │ │ │ ├── EliasisInstaller.php │ │ │ │ ├── ExpressionEngineInstaller.php │ │ │ │ ├── EzPlatformInstaller.php │ │ │ │ ├── ForkCMSInstaller.php │ │ │ │ ├── FuelInstaller.php │ │ │ │ ├── FuelphpInstaller.php │ │ │ │ ├── GravInstaller.php │ │ │ │ ├── HuradInstaller.php │ │ │ │ ├── ImageCMSInstaller.php │ │ │ │ ├── Installer.php │ │ │ │ ├── ItopInstaller.php │ │ │ │ ├── KanboardInstaller.php │ │ │ │ ├── KnownInstaller.php │ │ │ │ ├── KodiCMSInstaller.php │ │ │ │ ├── KohanaInstaller.php │ │ │ │ ├── LanManagementSystemInstaller.php │ │ │ │ ├── LaravelInstaller.php │ │ │ │ ├── LavaLiteInstaller.php │ │ │ │ ├── LithiumInstaller.php │ │ │ │ ├── MODULEWorkInstaller.php │ │ │ │ ├── MODXEvoInstaller.php │ │ │ │ ├── MagentoInstaller.php │ │ │ │ ├── MajimaInstaller.php │ │ │ │ ├── MakoInstaller.php │ │ │ │ ├── MantisBTInstaller.php │ │ │ │ ├── MatomoInstaller.php │ │ │ │ ├── MauticInstaller.php │ │ │ │ ├── MayaInstaller.php │ │ │ │ ├── MediaWikiInstaller.php │ │ │ │ ├── MiaoxingInstaller.php │ │ │ │ ├── MicroweberInstaller.php │ │ │ │ ├── ModxInstaller.php │ │ │ │ ├── MoodleInstaller.php │ │ │ │ ├── OctoberInstaller.php │ │ │ │ ├── OntoWikiInstaller.php │ │ │ │ ├── OsclassInstaller.php │ │ │ │ ├── OxidInstaller.php │ │ │ │ ├── PPIInstaller.php │ │ │ │ ├── PantheonInstaller.php │ │ │ │ ├── PhiftyInstaller.php │ │ │ │ ├── PhpBBInstaller.php │ │ │ │ ├── PiwikInstaller.php │ │ │ │ ├── PlentymarketsInstaller.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── PortoInstaller.php │ │ │ │ ├── PrestashopInstaller.php │ │ │ │ ├── ProcessWireInstaller.php │ │ │ │ ├── PuppetInstaller.php │ │ │ │ ├── PxcmsInstaller.php │ │ │ │ ├── RadPHPInstaller.php │ │ │ │ ├── ReIndexInstaller.php │ │ │ │ ├── Redaxo5Installer.php │ │ │ │ ├── RedaxoInstaller.php │ │ │ │ ├── RoundcubeInstaller.php │ │ │ │ ├── SMFInstaller.php │ │ │ │ ├── ShopwareInstaller.php │ │ │ │ ├── SilverStripeInstaller.php │ │ │ │ ├── SiteDirectInstaller.php │ │ │ │ ├── StarbugInstaller.php │ │ │ │ ├── SyDESInstaller.php │ │ │ │ ├── SyliusInstaller.php │ │ │ │ ├── TaoInstaller.php │ │ │ │ ├── TastyIgniterInstaller.php │ │ │ │ ├── TheliaInstaller.php │ │ │ │ ├── TuskInstaller.php │ │ │ │ ├── UserFrostingInstaller.php │ │ │ │ ├── VanillaInstaller.php │ │ │ │ ├── VgmcpInstaller.php │ │ │ │ ├── WHMCSInstaller.php │ │ │ │ ├── WinterInstaller.php │ │ │ │ ├── WolfCMSInstaller.php │ │ │ │ ├── WordPressInstaller.php │ │ │ │ ├── YawikInstaller.php │ │ │ │ ├── ZendInstaller.php │ │ │ │ └── ZikulaInstaller.php │ │ │ └── bootstrap.php │ └── platform_check.php ├── firebase │ └── php-jwt │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BeforeValidException.php │ │ ├── CachedKeySet.php │ │ ├── ExpiredException.php │ │ ├── JWK.php │ │ ├── JWT.php │ │ ├── JWTExceptionWithPayloadInterface.php │ │ ├── Key.php │ │ └── SignatureInvalidException.php ├── udx │ ├── lib-ud-api-client │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── changes.md │ │ ├── composer.json │ │ ├── gruntfile.js │ │ ├── lib │ │ │ └── classes │ │ │ │ ├── class-admin.php │ │ │ │ ├── class-api.php │ │ │ │ ├── class-bootstrap.php │ │ │ │ ├── class-licenses-table.php │ │ │ │ ├── class-manager.php │ │ │ │ ├── class-more-products-table.php │ │ │ │ ├── class-scaffold.php │ │ │ │ ├── class-ui.php │ │ │ │ ├── class-update-checker.php │ │ │ │ └── class-utility.php │ │ ├── package.json │ │ ├── readme.md │ │ └── static │ │ │ ├── css │ │ │ ├── admin.css │ │ │ └── src │ │ │ │ └── admin.less │ │ │ ├── images │ │ │ └── ud.png │ │ │ └── templates │ │ │ ├── admin-notice.php │ │ │ ├── screen-manage-plugin.php │ │ │ ├── screen-manage-theme.php │ │ │ └── screen-more.php │ └── lib-wp-bootstrap │ │ ├── .gitignore │ │ ├── changes.md │ │ ├── composer.json │ │ ├── lib │ │ └── classes │ │ │ ├── class-bootstrap-plugin.php │ │ │ ├── class-bootstrap-theme.php │ │ │ ├── class-bootstrap.php │ │ │ ├── class-dashboard.php │ │ │ ├── class-errors.php │ │ │ ├── class-scaffold.php │ │ │ ├── class-tgm-bulk-installer.php │ │ │ ├── class-tgm-list-table.php │ │ │ ├── class-tgm-plugin-activation.php │ │ │ └── class-utility.php │ │ ├── readme.md │ │ └── static │ │ └── scripts │ │ └── ud-dismiss.js └── wpmetabox │ └── meta-box │ ├── css │ ├── autocomplete.css │ ├── background.css │ ├── button-group.css │ ├── color.css │ ├── date.css │ ├── divider.css │ ├── fieldset-text.css │ ├── file-input.css │ ├── file.css │ ├── fontawesome │ │ └── icons.json │ ├── heading.css │ ├── icon.css │ ├── image-select.css │ ├── image.css │ ├── input-list.css │ ├── input.css │ ├── jqueryui │ │ ├── core.css │ │ ├── datepicker.css │ │ ├── jquery-ui-timepicker-addon.min.css │ │ ├── slider.css │ │ └── theme.css │ ├── key-value.css │ ├── map.css │ ├── media.css │ ├── modal.css │ ├── oembed.css │ ├── osm-frontend.css │ ├── osm.css │ ├── range.css │ ├── select-advanced.css │ ├── select-tree.css │ ├── select.css │ ├── select2 │ │ └── select2.css │ ├── slider.css │ ├── style-rtl.css │ ├── style.css │ ├── switch.css │ ├── text-list.css │ ├── upload.css │ ├── video.css │ └── wysiwyg.css │ ├── img │ ├── drag_icon.gif │ └── jqueryui │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ ├── inc │ ├── about │ │ ├── about.php │ │ ├── css │ │ │ └── about.css │ │ ├── images │ │ │ ├── meta-box.svg │ │ │ └── online-generator.png │ │ ├── js │ │ │ └── about.js │ │ └── sections │ │ │ ├── extensions.php │ │ │ ├── getting-started-pro.php │ │ │ ├── getting-started.php │ │ │ ├── products.php │ │ │ ├── review.php │ │ │ ├── support.php │ │ │ ├── tabs.php │ │ │ ├── upgrade.php │ │ │ └── welcome.php │ ├── autoloader.php │ ├── clone.php │ ├── core.php │ ├── field-registry.php │ ├── field.php │ ├── fields │ │ ├── autocomplete.php │ │ ├── background.php │ │ ├── button-group.php │ │ ├── button.php │ │ ├── checkbox-list.php │ │ ├── checkbox.php │ │ ├── choice.php │ │ ├── color.php │ │ ├── custom-html.php │ │ ├── date.php │ │ ├── datetime.php │ │ ├── divider.php │ │ ├── fieldset-text.php │ │ ├── file-input.php │ │ ├── file-upload.php │ │ ├── file.php │ │ ├── heading.php │ │ ├── icon.php │ │ ├── image-advanced.php │ │ ├── image-select.php │ │ ├── image-upload.php │ │ ├── image.php │ │ ├── input-list.php │ │ ├── input.php │ │ ├── key-value.php │ │ ├── map.php │ │ ├── media.php │ │ ├── multiple-values.php │ │ ├── number.php │ │ ├── object-choice.php │ │ ├── oembed.php │ │ ├── osm.php │ │ ├── password.php │ │ ├── post.php │ │ ├── radio.php │ │ ├── range.php │ │ ├── select-advanced.php │ │ ├── select-tree.php │ │ ├── select.php │ │ ├── sidebar.php │ │ ├── single-image.php │ │ ├── slider.php │ │ ├── switch.php │ │ ├── taxonomy-advanced.php │ │ ├── taxonomy.php │ │ ├── text-list.php │ │ ├── textarea.php │ │ ├── time.php │ │ ├── user.php │ │ ├── video.php │ │ └── wysiwyg.php │ ├── functions.php │ ├── helpers │ │ ├── array.php │ │ ├── field.php │ │ ├── string.php │ │ └── value.php │ ├── interfaces │ │ └── storage.php │ ├── loader.php │ ├── media-modal.php │ ├── meta-box-registry.php │ ├── meta-box.php │ ├── request.php │ ├── sanitizer.php │ ├── shortcode.php │ ├── storage-registry.php │ ├── storages │ │ ├── base.php │ │ └── post.php │ ├── templates │ │ ├── audio.php │ │ ├── image-advanced.php │ │ ├── media.php │ │ ├── upload.php │ │ └── video.php │ ├── validation.php │ ├── walkers │ │ ├── base.php │ │ ├── input-list.php │ │ ├── select-tree.php │ │ └── select.php │ └── wpml.php │ ├── js │ ├── autocomplete.js │ ├── autosave.js │ ├── button-group.js │ ├── clone.js │ ├── color.js │ ├── date.js │ ├── datetime.js │ ├── file-input.js │ ├── file-upload.js │ ├── file.js │ ├── icon.js │ ├── image-advanced.js │ ├── image-upload.js │ ├── input-list.js │ ├── jqueryui │ │ ├── jquery-ui-sliderAccess.js │ │ ├── jquery-ui-timepicker-addon-i18n.min.js │ │ └── jquery-ui-timepicker-addon.min.js │ ├── leaflet │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet.css │ │ └── leaflet.js │ ├── map-frontend.js │ ├── map.js │ ├── media.js │ ├── modal.js │ ├── oembed.js │ ├── osm-frontend.js │ ├── osm.js │ ├── post.js │ ├── range.js │ ├── script.js │ ├── select-advanced.js │ ├── select-tree.js │ ├── select.js │ ├── select2 │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ └── select2.min.js │ ├── slider.js │ ├── taxonomy.js │ ├── time.js │ ├── user.js │ ├── validation │ │ ├── additional-methods.js │ │ ├── i18n │ │ │ ├── messages_ar.js │ │ │ ├── messages_az.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hi.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_id.js │ │ │ ├── messages_is.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_mk.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_sd.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_ur.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ └── messages_zh_TW.js │ │ ├── jquery.validate.js │ │ └── validation.js │ ├── video.js │ ├── wp-color-picker-alpha │ │ └── wp-color-picker-alpha.min.js │ └── wysiwyg.js │ ├── meta-box.php │ ├── readme.txt │ ├── src │ ├── Integrations │ │ ├── Block.php │ │ ├── Bricks.php │ │ ├── Elementor.php │ │ └── Oxygen.php │ └── Updater │ │ ├── Checker.php │ │ ├── Notification.php │ │ ├── Option.php │ │ └── Settings.php │ └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ └── installed.php │ └── meta-box │ └── support │ ├── Arr.php │ └── Data.php └── wp-stateless-media.php /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | # Enable checks for the default vendor folder 4 | - package-ecosystem: "composer" 5 | directory: "/" 6 | schedule: 7 | interval: "weekly" 8 | 9 | # Enable checks for Google API Client package 10 | - package-ecosystem: "composer" 11 | directory: "/lib/Google" 12 | schedule: 13 | interval: "weekly" 14 | 15 | # Enable checks for GitHub Actions 16 | - package-ecosystem: "github-actions" 17 | directory: "/" 18 | schedule: 19 | interval: "weekly" 20 | -------------------------------------------------------------------------------- /.github/workflows/security-scan.yml: -------------------------------------------------------------------------------- 1 | name: Security Scan 2 | run-name: Security Scan 3 | 4 | on: 5 | push: 6 | pull_request: 7 | workflow_dispatch: 8 | 9 | jobs: 10 | code-scanning: 11 | name: Code Scanning (grype) 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - name: Checkout repository 16 | uses: actions/checkout@v4 17 | 18 | - name: Run Security Check 19 | id: test 20 | uses: anchore/scan-action@v4 21 | with: 22 | path: . 23 | output-format: table 24 | 25 | 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | temp 2 | .vscode** 3 | node_modules 4 | static/cache 5 | static/codex 6 | npm-debug.log 7 | wp-test-config.php 8 | /test 9 | package-lock.json 10 | 11 | .git 12 | .svn 13 | .idea 14 | .idea/workspace.xml 15 | .DS_Store 16 | .dynamic 17 | .Trashes 18 | *.sublime-project 19 | *.sublime-workspace 20 | 21 | *.seed 22 | *.log 23 | *.csv 24 | *.dat 25 | *.out 26 | *.pid 27 | *.gz 28 | wp-stateless.wiki 29 | -------------------------------------------------------------------------------- /lib/Google/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | To report a security issue, please use [g.co/vulnz](https://g.co/vulnz). 4 | 5 | The Google Security Team will respond within 5 working days of your report on g.co/vulnz. 6 | 7 | We use g.co/vulnz for our intake, and do coordination and disclosure here using GitHub Security Advisory to privately discuss and fix the issue. 8 | -------------------------------------------------------------------------------- /lib/Google/phpstan.neon.dist: -------------------------------------------------------------------------------- 1 | parameters: 2 | treatPhpDocTypesAsCertain: false 3 | level: 5 4 | paths: 5 | - src 6 | -------------------------------------------------------------------------------- /lib/Google/src/Service/README.md: -------------------------------------------------------------------------------- 1 | # Google API Client Services 2 | 3 | Google API Client Service classes have been moved to the 4 | [google-api-php-client-services](https://github.com/google/google-api-php-client-services) 5 | repository. 6 | -------------------------------------------------------------------------------- /lib/Google/vendor/brick/math/src/Exception/IntegerOverflowException.php: -------------------------------------------------------------------------------- 1 | payload = $payload; 12 | } 13 | 14 | public function getPayload(): object 15 | { 16 | return $this->payload; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/firebase/php-jwt/src/ExpiredException.php: -------------------------------------------------------------------------------- 1 | payload = $payload; 12 | } 13 | 14 | public function getPayload(): object 15 | { 16 | return $this->payload; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | src/ApiCore 9 | 10 | 11 | 12 | 13 | tests/Unit 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/gax/renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "config:base", 4 | ":preserveSemverRanges", 5 | ":disableDependencyDashboard" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/grpc-gcp/.github/release-please.yml: -------------------------------------------------------------------------------- 1 | releaseType: simple 2 | handleGHRelease: true 3 | primaryBranch: main 4 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/grpc-gcp/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "third_party/googleapis"] 2 | path = third_party/googleapis 3 | url = https://github.com/googleapis/googleapis.git 4 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/grpc-gcp/.php_cs.dist: -------------------------------------------------------------------------------- 1 | setRules([ 4 | '@PSR2' => true, 5 | 'concat_space' => ['spacing' => 'one'], 6 | 'no_unused_imports' => true, 7 | 'method_argument_space' => false, 8 | ]) 9 | ->setFinder( 10 | PhpCsFixer\Finder::create() 11 | ->notPath('firestore') 12 | ->in(__DIR__) 13 | ) 14 | ; 15 | 16 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/grpc-gcp/README.md: -------------------------------------------------------------------------------- 1 | # gRPC for GCP extensions 2 | 3 | Copyright 2018 4 | [The gRPC Authors](https://github.com/grpc/grpc/blob/master/AUTHORS) 5 | 6 | ## About This Repository 7 | 8 | This repo is created to support GCP specific extensions for gRPC. To use the extension features, please refer to [src](src). 9 | 10 | This repo also contains supporting infrastructures such as end2end tests and benchmarks for accessing cloud APIs with gRPC client libraries. 11 | 12 | ## License 13 | 14 | Apache 2.0 - See [LICENSE](LICENSE) for more information. 15 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/grpc-gcp/cloudprober/bins/opt/grpc_php_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/lib/Google/vendor/google/grpc-gcp/cloudprober/bins/opt/grpc_php_plugin -------------------------------------------------------------------------------- /lib/Google/vendor/google/grpc-gcp/cloudprober/codegen.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | cd "$(dirname "$0")" 3 | 4 | rm -rf google 5 | 6 | for p in $(find ../third_party/googleapis/google -type f -name *.proto); do 7 | protoc \ 8 | --proto_path=../third_party/googleapis \ 9 | --php_out=./ \ 10 | --grpc_out=./ \ 11 | --plugin=protoc-gen-grpc="$(which grpc_php_plugin)" \ 12 | "$p" 13 | done 14 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/grpc-gcp/cloudprober/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "grpc_gcp_prober", 3 | "description": "grpc cloudprober for PHP", 4 | "require": { 5 | "grpc/grpc": "^v1.15.0", 6 | "google/auth": "^v1.4.0", 7 | "google/cloud": "^v0.86.0" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/longrunning/.gitattributes: -------------------------------------------------------------------------------- 1 | /*.xml.dist export-ignore 2 | /tests export-ignore 3 | /.github export-ignore 4 | /.OwlBot.yaml export-ignore 5 | /owlbot.py export-ignore 6 | /src/**/gapic_metadata.json export-ignore 7 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/longrunning/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to Contribute 2 | 3 | We'd love to accept your patches and contributions to this project. We accept 4 | and review pull requests against the main 5 | [Google Cloud PHP](https://github.com/googleapis/google-cloud-php) 6 | repository, which contains all of our client libraries. You will also need to 7 | sign a Contributor License Agreement. For more details about how to contribute, 8 | see the 9 | [CONTRIBUTING.md](https://github.com/googleapis/google-cloud-php/blob/main/CONTRIBUTING.md) 10 | file in the main Google Cloud PHP repository. 11 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/longrunning/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | To report a security issue, please use [g.co/vulnz](https://g.co/vulnz). 4 | 5 | The Google Security Team will respond within 5 working days of your report on g.co/vulnz. 6 | 7 | We use g.co/vulnz for our intake, and do coordination and disclosure here using GitHub Security Advisory to privately discuss and fix the issue. 8 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/longrunning/VERSION: -------------------------------------------------------------------------------- 1 | 0.4.6 2 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/longrunning/metadata/Longrunning/Operations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/lib/Google/vendor/google/longrunning/metadata/Longrunning/Operations.php -------------------------------------------------------------------------------- /lib/Google/vendor/google/longrunning/metadata/README.md: -------------------------------------------------------------------------------- 1 | # Google Protobuf Metadata Classes 2 | 3 | ## WARNING! 4 | 5 | These classes are not intended for direct use - they exist only to support 6 | the generated protobuf classes in src/ 7 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/longrunning/src/ApiCore/LongRunning/Gapic/OperationsGapicClient.php: -------------------------------------------------------------------------------- 1 | =7.0.0" 10 | }, 11 | "require-dev": { 12 | "phpunit/phpunit": ">=5.0.0" 13 | }, 14 | "suggest": { 15 | "ext-bcmath": "Need to support JSON deserialization" 16 | }, 17 | "autoload": { 18 | "psr-4": { 19 | "Google\\Protobuf\\": "src/Google/Protobuf", 20 | "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Any.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Any.php -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Api.php -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Duration.php -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/FieldMask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/FieldMask.php -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/GPBEmpty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/GPBEmpty.php -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/SourceContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/SourceContext.php -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Struct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Struct.php -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Timestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Timestamp.php -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Type.php -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Wrappers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/lib/Google/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Wrappers.php -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/Google/Protobuf/Field_Cardinality.php: -------------------------------------------------------------------------------- 1 | getPublicDescriptor(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php: -------------------------------------------------------------------------------- 1 | public_desc; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /lib/Google/vendor/google/protobuf/src/phpdoc.dist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | doc 6 | 7 | 8 | doc 9 | 10 | 11 | Google/Protobuf/Internal/MapField.php 12 | Google/Protobuf/Internal/Message.php 13 | Google/Protobuf/Internal/RepeatedField.php 14 | 15 | 16 | -------------------------------------------------------------------------------- /lib/Google/vendor/grpc/grpc/README.md: -------------------------------------------------------------------------------- 1 | # gRPC PHP Client Library 2 | 3 | This repository contains only PHP files to support Composer installation. 4 | 5 | This repository is a mirror of [gRPC](https://github.com/grpc/grpc). Any support 6 | requests, bug reports, or development contributions should be directed to 7 | that project. 8 | 9 | To install gRPC for PHP, please see https://github.com/grpc/grpc/tree/master/src/php 10 | -------------------------------------------------------------------------------- /lib/Google/vendor/grpc/grpc/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "grpc/grpc", 3 | "type": "library", 4 | "description": "gRPC library for PHP", 5 | "keywords": ["rpc"], 6 | "homepage": "https://grpc.io", 7 | "license": "Apache-2.0", 8 | "version": "1.57.0", 9 | "require": { 10 | "php": ">=7.0.0" 11 | }, 12 | "require-dev": { 13 | "google/auth": "^v1.3.0" 14 | }, 15 | "suggest": { 16 | "ext-protobuf": "For better performance, install the protobuf C extension.", 17 | "google/protobuf": "To get started using grpc quickly, install the native protobuf library." 18 | }, 19 | "autoload": { 20 | "psr-4": { 21 | "Grpc\\": "src/lib/" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /lib/Google/vendor/guzzlehttp/guzzle/src/BodySummarizerInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Handler; 13 | 14 | /** 15 | * Exception can be thrown if an extension for a handler is missing 16 | * 17 | * @author Christian Bergau 18 | */ 19 | class MissingExtensionException extends \Exception 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /lib/Google/vendor/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Handler; 13 | 14 | trait WebRequestRecognizerTrait 15 | { 16 | /** 17 | * Checks if PHP's serving a web request 18 | * @return bool 19 | */ 20 | protected function isWebRequest(): bool 21 | { 22 | return 'cli' !== \PHP_SAPI && 'phpdbg' !== \PHP_SAPI; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /lib/Google/vendor/paragonie/random_compat/build-phar.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | basedir=$( dirname $( readlink -f ${BASH_SOURCE[0]} ) ) 4 | 5 | php -dphar.readonly=0 "$basedir/other/build_phar.php" $* -------------------------------------------------------------------------------- /lib/Google/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEEd+wCqJDrx5B4OldM0dQE0ZMX+lx1ZWm 3 | pui0SUqD4G29L3NGsz9UhJ/0HjBdbnkhIK5xviT0X5vtjacF6ajgcCArbTB+ds+p 4 | +h7Q084NuSuIpNb6YPfoUFgC/CL9kAoc 5 | -----END PUBLIC KEY----- 6 | -------------------------------------------------------------------------------- /lib/Google/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | Version: GnuPG v2.0.22 (MingW32) 3 | 4 | iQEcBAABAgAGBQJWtW1hAAoJEGuXocKCZATaJf0H+wbZGgskK1dcRTsuVJl9IWip 5 | QwGw/qIKI280SD6/ckoUMxKDCJiFuPR14zmqnS36k7N5UNPnpdTJTS8T11jttSpg 6 | 1LCmgpbEIpgaTah+cELDqFCav99fS+bEiAL5lWDAHBTE/XPjGVCqeehyPYref4IW 7 | NDBIEsvnHPHPLsn6X5jq4+Yj5oUixgxaMPiR+bcO4Sh+RzOVB6i2D0upWfRXBFXA 8 | NNnsg9/zjvoC7ZW73y9uSH+dPJTt/Vgfeiv52/v41XliyzbUyLalf02GNPY+9goV 9 | JHG1ulEEBJOCiUD9cE1PUIJwHA/HqyhHIvV350YoEFiHl8iSwm7SiZu5kPjaq74= 10 | =B6+8 11 | -----END PGP SIGNATURE----- 12 | -------------------------------------------------------------------------------- /lib/Google/vendor/paragonie/random_compat/psalm-autoload.php: -------------------------------------------------------------------------------- 1 | 9 | * @author Hans-Juergen Petrich 10 | * @copyright 2007 Jim Wigginton 11 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 12 | * @link http://phpseclib.sourceforge.net 13 | */ 14 | 15 | namespace phpseclib3\Crypt\Common; 16 | 17 | /** 18 | * Base Class for all block cipher classes 19 | * 20 | * @author Jim Wigginton 21 | */ 22 | abstract class BlockCipher extends SymmetricKey 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/Raw.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Crypt\DSA\Formats\Signature; 15 | 16 | use phpseclib3\Crypt\Common\Formats\Signature\Raw as Progenitor; 17 | 18 | /** 19 | * Raw DSA Signature Handler 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class Raw extends Progenitor 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistb233.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class nistb233 extends sect233r1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistb409.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class nistb409 extends sect409r1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk163.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class nistk163 extends sect163k1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk233.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class nistk233 extends sect233k1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk283.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class nistk283 extends sect283k1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk409.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class nistk409 extends sect409k1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp192.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class nistp192 extends secp192r1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp224.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class nistp224 extends secp224r1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp256.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class nistp256 extends secp256r1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp384.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class nistp384 extends secp384r1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp521.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class nistp521 extends secp521r1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistt571.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class nistt571 extends sect571k1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime192v1.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class prime192v1 extends secp192r1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime256v1.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://pear.php.net/package/Math_BigInteger 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Curves; 15 | 16 | final class prime256v1 extends secp256r1 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/Raw.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Crypt\EC\Formats\Signature; 15 | 16 | use phpseclib3\Crypt\Common\Formats\Signature\Raw as Progenitor; 17 | 18 | /** 19 | * Raw DSA Signature Handler 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class Raw extends Progenitor 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/BadConfigurationException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * BadConfigurationException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class BadConfigurationException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/BadDecryptionException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * BadDecryptionException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class BadDecryptionException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/BadModeException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * BadModeException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class BadModeException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/ConnectionClosedException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * ConnectionClosedException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class ConnectionClosedException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/FileNotFoundException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * FileNotFoundException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class FileNotFoundException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/InconsistentSetupException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * InconsistentSetupException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class InconsistentSetupException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/InsufficientSetupException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * InsufficientSetupException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class InsufficientSetupException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/InvalidPacketLengthException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * NoKeyLoadedException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class NoKeyLoadedException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/NoSupportedAlgorithmsException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * NoSupportedAlgorithmsException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class NoSupportedAlgorithmsException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/TimeoutException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * UnableToConnectException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class UnableToConnectException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/UnsupportedAlgorithmException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * UnsupportedAlgorithmException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class UnsupportedAlgorithmException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/UnsupportedCurveException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * UnsupportedCurveException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class UnsupportedCurveException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/UnsupportedFormatException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * UnsupportedFormatException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class UnsupportedFormatException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Exception/UnsupportedOperationException.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2015 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\Exception; 15 | 16 | /** 17 | * UnsupportedOperationException 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | class UnsupportedOperationException extends \RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/AttributeType.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * AttributeType 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class AttributeType 24 | { 25 | const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/AttributeValue.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * AttributeValue 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class AttributeValue 24 | { 25 | const MAP = ['type' => ASN1::TYPE_ANY]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/BaseDistance.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * BaseDistance 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class BaseDistance 24 | { 25 | const MAP = ['type' => ASN1::TYPE_INTEGER]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CPSuri.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * CPSuri 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class CPSuri 24 | { 25 | const MAP = ['type' => ASN1::TYPE_IA5_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CRLNumber.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * CRLNumber 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class CRLNumber 24 | { 25 | const MAP = ['type' => ASN1::TYPE_INTEGER]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CertPolicyId.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * CertPolicyId 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class CertPolicyId 24 | { 25 | const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CertificateIssuer.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | /** 17 | * CertificateIssuer 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | abstract class CertificateIssuer 22 | { 23 | const MAP = GeneralNames::MAP; 24 | } 25 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CertificateSerialNumber.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * CertificateSerialNumber 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class CertificateSerialNumber 24 | { 25 | const MAP = ['type' => ASN1::TYPE_INTEGER]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/DSAPublicKey.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * DSAPublicKey 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class DSAPublicKey 24 | { 25 | const MAP = ['type' => ASN1::TYPE_INTEGER]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ECPoint.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * ECPoint 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class ECPoint 24 | { 25 | const MAP = ['type' => ASN1::TYPE_OCTET_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/EncryptedData.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * EncryptedData 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class EncryptedData 24 | { 25 | const MAP = ['type' => ASN1::TYPE_OCTET_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/FieldElement.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * FieldElement 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class FieldElement 24 | { 25 | const MAP = ['type' => ASN1::TYPE_OCTET_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/HashAlgorithm.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | /** 17 | * HashAglorithm 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | abstract class HashAlgorithm 22 | { 23 | const MAP = AlgorithmIdentifier::MAP; 24 | } 25 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/HoldInstructionCode.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * HoldInstructionCode 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class HoldInstructionCode 24 | { 25 | const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/InvalidityDate.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * InvalidityDate 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class InvalidityDate 24 | { 25 | const MAP = ['type' => ASN1::TYPE_GENERALIZED_TIME]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/IssuerAltName.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | /** 17 | * IssuerAltName 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | abstract class IssuerAltName 22 | { 23 | const MAP = GeneralNames::MAP; 24 | } 25 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/KeyIdentifier.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * KeyIdentifier 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class KeyIdentifier 24 | { 25 | const MAP = ['type' => ASN1::TYPE_OCTET_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/KeyPurposeId.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * KeyPurposeId 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class KeyPurposeId 24 | { 25 | const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/MaskGenAlgorithm.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | /** 17 | * MaskGenAglorithm 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | abstract class MaskGenAlgorithm 22 | { 23 | const MAP = AlgorithmIdentifier::MAP; 24 | } 25 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/NetworkAddress.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * NetworkAddress 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class NetworkAddress 24 | { 25 | const MAP = ['type' => ASN1::TYPE_NUMERIC_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/NumericUserIdentifier.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * NumericUserIdentifier 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class NumericUserIdentifier 24 | { 25 | const MAP = ['type' => ASN1::TYPE_NUMERIC_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/OrganizationName.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * OrganizationName 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class OrganizationName 24 | { 25 | const MAP = ['type' => ASN1::TYPE_PRINTABLE_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PolicyQualifierId.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * PolicyQualifierId 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class PolicyQualifierId 24 | { 25 | const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Prime_p.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * Prime_p 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class Prime_p 24 | { 25 | const MAP = ['type' => ASN1::TYPE_INTEGER]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PrivateKey.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * PrivateKey 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class PrivateKey 24 | { 25 | const MAP = ['type' => ASN1::TYPE_OCTET_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PublicKey.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * PublicKey 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class PublicKey 24 | { 25 | const MAP = ['type' => ASN1::TYPE_BIT_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/SubjectAltName.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | /** 17 | * SubjectAltName 18 | * 19 | * @author Jim Wigginton 20 | */ 21 | abstract class SubjectAltName 22 | { 23 | const MAP = GeneralNames::MAP; 24 | } 25 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/TerminalIdentifier.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * TerminalIdentifier 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class TerminalIdentifier 24 | { 25 | const MAP = ['type' => ASN1::TYPE_PRINTABLE_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Trinomial.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * Trinomial 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class Trinomial 24 | { 25 | const MAP = ['type' => ASN1::TYPE_INTEGER]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/UniqueIdentifier.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * UniqueIdentifier 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class UniqueIdentifier 24 | { 25 | const MAP = ['type' => ASN1::TYPE_BIT_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/netscape_ca_policy_url.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * netscape_ca_policy_url 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class netscape_ca_policy_url 24 | { 25 | const MAP = ['type' => ASN1::TYPE_IA5_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/netscape_comment.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2016 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | * @link http://phpseclib.sourceforge.net 12 | */ 13 | 14 | namespace phpseclib3\File\ASN1\Maps; 15 | 16 | use phpseclib3\File\ASN1; 17 | 18 | /** 19 | * netscape_comment 20 | * 21 | * @author Jim Wigginton 22 | */ 23 | abstract class netscape_comment 24 | { 25 | const MAP = ['type' => ASN1::TYPE_IA5_STRING]; 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/Math/Common/FiniteField.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2017 Jim Wigginton 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 11 | */ 12 | 13 | namespace phpseclib3\Math\Common; 14 | 15 | /** 16 | * Finite Fields 17 | * 18 | * @author Jim Wigginton 19 | */ 20 | abstract class FiniteField 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /lib/Google/vendor/phpseclib/phpseclib/phpseclib/openssl.cnf: -------------------------------------------------------------------------------- 1 | # minimalist openssl.cnf file for use with phpseclib 2 | 3 | HOME = . 4 | RANDFILE = $ENV::HOME/.rnd 5 | 6 | [ v3_ca ] 7 | -------------------------------------------------------------------------------- /lib/Google/vendor/psr/cache/README.md: -------------------------------------------------------------------------------- 1 | Caching Interface 2 | ============== 3 | 4 | This repository holds all interfaces related to [PSR-6 (Caching Interface)][psr-url]. 5 | 6 | Note that this is not a Caching implementation of its own. It is merely interfaces that describe the components of a Caching mechanism. 7 | 8 | The installable [package][package-url] and [implementations][implementation-url] are listed on Packagist. 9 | 10 | [psr-url]: https://www.php-fig.org/psr/psr-6/ 11 | [package-url]: https://packagist.org/packages/psr/cache 12 | [implementation-url]: https://packagist.org/providers/psr/cache-implementation 13 | -------------------------------------------------------------------------------- /lib/Google/vendor/psr/cache/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "psr/cache", 3 | "description": "Common interface for caching libraries", 4 | "keywords": ["psr", "psr-6", "cache"], 5 | "license": "MIT", 6 | "authors": [ 7 | { 8 | "name": "PHP-FIG", 9 | "homepage": "https://www.php-fig.org/" 10 | } 11 | ], 12 | "require": { 13 | "php": ">=8.0.0" 14 | }, 15 | "autoload": { 16 | "psr-4": { 17 | "Psr\\Cache\\": "src/" 18 | } 19 | }, 20 | "extra": { 21 | "branch-alias": { 22 | "dev-master": "1.0.x-dev" 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lib/Google/vendor/psr/cache/src/CacheException.php: -------------------------------------------------------------------------------- 1 | =8.0.0" 15 | }, 16 | "autoload": { 17 | "psr-4": { 18 | "Psr\\Log\\": "src" 19 | } 20 | }, 21 | "extra": { 22 | "branch-alias": { 23 | "dev-master": "3.x-dev" 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/psr/log/src/AbstractLogger.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /lib/Google/vendor/ralouphie/getallheaders/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ralouphie/getallheaders", 3 | "description": "A polyfill for getallheaders.", 4 | "license": "MIT", 5 | "authors": [ 6 | { 7 | "name": "Ralph Khattar", 8 | "email": "ralph.khattar@gmail.com" 9 | } 10 | ], 11 | "require": { 12 | "php": ">=5.6" 13 | }, 14 | "require-dev": { 15 | "phpunit/phpunit": "^5 || ^6.5", 16 | "php-coveralls/php-coveralls": "^2.1" 17 | }, 18 | "autoload": { 19 | "files": ["src/getallheaders.php"] 20 | }, 21 | "autoload-dev": { 22 | "psr-4": { 23 | "getallheaders\\Tests\\": "tests/" 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /lib/Google/vendor/ramsey/collection/conventional-commits.json: -------------------------------------------------------------------------------- 1 | { 2 | "typeCase": "kebab", 3 | "types": [ 4 | "chore", 5 | "ci", 6 | "docs", 7 | "feat", 8 | "fix", 9 | "refactor", 10 | "security", 11 | "style", 12 | "test" 13 | ], 14 | "scopeCase": "kebab", 15 | "scopeRequired": false, 16 | "scopes": [], 17 | "descriptionCase": null, 18 | "descriptionEndMark": "", 19 | "bodyRequired": false, 20 | "bodyWrapWidth": 72, 21 | "requiredFooters": [] 22 | } 23 | -------------------------------------------------------------------------------- /lib/Google/vendor/ramsey/collection/src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 10 | * @license http://opensource.org/licenses/MIT MIT 11 | */ 12 | 13 | declare(strict_types=1); 14 | 15 | namespace Ramsey\Collection\Exception; 16 | 17 | /** 18 | * Thrown to indicate an argument is not of the expected type. 19 | */ 20 | class InvalidArgumentException extends \InvalidArgumentException 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /lib/Google/vendor/ramsey/collection/src/Exception/NoSuchElementException.php: -------------------------------------------------------------------------------- 1 | 10 | * @license http://opensource.org/licenses/MIT MIT 11 | */ 12 | 13 | declare(strict_types=1); 14 | 15 | namespace Ramsey\Collection\Exception; 16 | 17 | use RuntimeException; 18 | 19 | /** 20 | * Thrown when attempting to access an element that does not exist. 21 | */ 22 | class NoSuchElementException extends RuntimeException 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /lib/Google/vendor/ramsey/collection/src/Exception/OutOfBoundsException.php: -------------------------------------------------------------------------------- 1 | 10 | * @license http://opensource.org/licenses/MIT MIT 11 | */ 12 | 13 | declare(strict_types=1); 14 | 15 | namespace Ramsey\Collection\Exception; 16 | 17 | /** 18 | * Thrown when attempting to access an element out of the range of the collection. 19 | */ 20 | class OutOfBoundsException extends \OutOfBoundsException 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /lib/Google/vendor/ramsey/collection/src/GenericArray.php: -------------------------------------------------------------------------------- 1 | 10 | * @license http://opensource.org/licenses/MIT MIT 11 | */ 12 | 13 | declare(strict_types=1); 14 | 15 | namespace Ramsey\Collection; 16 | 17 | /** 18 | * `GenericArray` represents a standard array object. 19 | * 20 | * @extends AbstractArray 21 | */ 22 | class GenericArray extends AbstractArray 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /lib/Google/vendor/ramsey/uuid/src/Exception/UuidExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 10 | * @license http://opensource.org/licenses/MIT MIT 11 | */ 12 | 13 | declare(strict_types=1); 14 | 15 | namespace Ramsey\Uuid\Exception; 16 | 17 | use Throwable; 18 | 19 | interface UuidExceptionInterface extends Throwable 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /lib/Google/vendor/rize/uri-template/src/Rize/UriTemplate/Node/Literal.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | if (\PHP_VERSION_ID < 80100) { 13 | #[Attribute(Attribute::TARGET_METHOD)] 14 | final class ReturnTypeWillChange 15 | { 16 | public function __construct() 17 | { 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /lib/classes/class-status.php: -------------------------------------------------------------------------------- 1 | title = $title; 25 | $this->content = $content; 26 | } 27 | 28 | /** 29 | * To JSON 30 | */ 31 | #[\ReturnTypeWillChange] 32 | public function jsonSerialize() { 33 | return get_object_vars($this); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /lib/classes/trait-singleton.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/ccampbell/chromephp'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/firebase/php-jwt/src'), 10 | 'Composer\\Installers\\' => array($vendorDir . '/composer/installers/src/Composer/Installers'), 11 | ); 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'module' => 'addons/modules/{$name}/', 10 | 'component' => 'addons/components/{$name}/', 11 | 'service' => 'addons/services/{$name}/', 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'module' => 'modules/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'package' => 'Packages/{$vendor}/{$name}/' 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/BotbleInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'plugin' => 'platform/plugins/{$name}/', 10 | 'theme' => 'platform/themes/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ChefInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'cookbook' => 'Chef/{$vendor}/{$name}/', 10 | 'role' => 'Chef/roles/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'ext' => 'ext/{$name}/' 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'ship' => 'CCF/orbit/{$name}/', 10 | 'theme' => 'CCF/app/themes/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'library' => 'application/libraries/{$name}/', 10 | 'third-party' => 'application/third_party/{$name}/', 11 | 'module' => 'application/modules/{$name}/', 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'core' => 'concrete/', 10 | 'block' => 'application/blocks/{$name}/', 11 | 'package' => 'packages/{$name}/', 12 | 'theme' => 'application/themes/{$name}/', 13 | 'update' => 'updates/{$name}/', 14 | ); 15 | } 16 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ConcreteCMSInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'core' => 'concrete/', 10 | 'block' => 'application/blocks/{$name}/', 11 | 'package' => 'packages/{$name}/', 12 | 'theme' => 'application/themes/{$name}/', 13 | 'update' => 'updates/{$name}/', 14 | ); 15 | } 16 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php: -------------------------------------------------------------------------------- 1 | */ 9 | protected $locations = array( 10 | 'app' => 'app/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/DframeInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'module' => 'modules/{$vendor}/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php: -------------------------------------------------------------------------------- 1 | 10 | */ 11 | class DolibarrInstaller extends BaseInstaller 12 | { 13 | //TODO: Add support for scripts and themes 14 | /** @var array */ 15 | protected $locations = array( 16 | 'module' => 'htdocs/custom/{$name}/', 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ElggInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'plugin' => 'mod/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'component' => 'components/{$name}/', 10 | 'module' => 'modules/{$name}/', 11 | 'plugin' => 'plugins/{$name}/', 12 | 'template' => 'templates/{$name}/', 13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'meta-assets' => 'web/assets/ezplatform/', 10 | 'assets' => 'web/assets/ezplatform/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/FuelInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'module' => 'fuel/app/modules/{$name}/', 10 | 'package' => 'fuel/packages/{$name}/', 11 | 'theme' => 'fuel/app/themes/{$name}/', 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'component' => 'components/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'template' => 'templates/{$name}/', 10 | 'module' => 'application/modules/{$name}/', 11 | 'library' => 'application/libraries/{$name}/', 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ItopInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'extension' => 'extensions/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php: -------------------------------------------------------------------------------- 1 | */ 17 | protected $locations = array( 18 | 'plugin' => 'plugins/{$name}/', 19 | ); 20 | } 21 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KnownInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'plugin' => 'IdnoPlugins/{$name}/', 10 | 'theme' => 'Themes/{$name}/', 11 | 'console' => 'ConsolePlugins/{$name}/', 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'plugin' => 'cms/plugins/{$name}/', 10 | 'media' => 'cms/media/vendor/{$name}/' 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'module' => 'modules/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'library' => 'libraries/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'package' => 'packages/{$vendor}/{$name}/', 10 | 'theme' => 'public/themes/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'library' => 'libraries/{$name}/', 10 | 'source' => 'libraries/_source/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'module' => 'modules/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php: -------------------------------------------------------------------------------- 1 | */ 11 | protected $locations = array( 12 | 'snippet' => 'assets/snippets/{$name}/', 13 | 'plugin' => 'assets/plugins/{$name}/', 14 | 'module' => 'assets/modules/{$name}/', 15 | 'template' => 'assets/templates/{$name}/', 16 | 'lib' => 'assets/lib/{$name}/' 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'theme' => 'app/design/frontend/{$name}/', 10 | 'skin' => 'skin/frontend/default/{$name}/', 11 | 'library' => 'lib/{$name}/', 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MakoInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'package' => 'app/packages/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'plugin' => 'plugins/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ModxInstaller.php: -------------------------------------------------------------------------------- 1 | */ 11 | protected $locations = array( 12 | 'extra' => 'core/packages/{$name}/' 13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php: -------------------------------------------------------------------------------- 1 | */ 9 | protected $locations = array( 10 | 'plugin' => 'oc-content/plugins/{$name}/', 11 | 'theme' => 'oc-content/themes/{$name}/', 12 | 'language' => 'oc-content/languages/{$name}/', 13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PPIInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'module' => 'modules/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'script' => 'web/private/scripts/quicksilver/{$name}', 10 | 'module' => 'web/private/scripts/quicksilver/{$name}', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'bundle' => 'bundles/{$name}/', 10 | 'library' => 'libraries/{$name}/', 11 | 'framework' => 'frameworks/{$name}/', 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'extension' => 'ext/{$vendor}/{$name}/', 10 | 'language' => 'language/{$name}/', 11 | 'style' => 'styles/{$name}/', 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PortoInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'container' => 'app/Containers/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'module' => 'modules/{$name}/', 10 | 'theme' => 'themes/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php: -------------------------------------------------------------------------------- 1 | */ 9 | protected $locations = array( 10 | 'module' => 'modules/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'theme' => 'themes/{$name}/', 10 | 'plugin' => 'plugins/{$name}/' 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'addon' => 'redaxo/src/addons/{$name}/', 10 | 'bestyle-plugin' => 'redaxo/src/addons/be_style/plugins/{$name}/' 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'addon' => 'redaxo/include/addons/{$name}/', 10 | 'bestyle-plugin' => 'redaxo/include/addons/be_style/plugins/{$name}/' 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'plugin' => 'plugins/{$name}/', 10 | ); 11 | 12 | /** 13 | * Lowercase name and changes the name to a underscores 14 | */ 15 | public function inflectPackageVars(array $vars): array 16 | { 17 | $vars['name'] = strtolower(str_replace('-', '_', $vars['name'])); 18 | 19 | return $vars; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/SMFInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'module' => 'Sources/{$name}/', 10 | 'theme' => 'Themes/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'module' => 'modules/{$name}/', 10 | 'theme' => 'themes/{$name}/', 11 | 'custom-module' => 'app/modules/{$name}/', 12 | 'custom-theme' => 'app/themes/{$name}/' 13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'theme' => 'themes/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'module' => 'local/modules/{$name}/', 10 | 'frontoffice-template' => 'templates/frontOffice/{$name}/', 11 | 'backoffice-template' => 'templates/backOffice/{$name}/', 12 | 'email-template' => 'templates/email/{$name}/', 13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/TuskInstaller.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | class TuskInstaller extends BaseInstaller 10 | { 11 | /** @var array */ 12 | protected $locations = array( 13 | 'task' => '.tusk/tasks/{$name}/', 14 | 'command' => '.tusk/commands/{$name}/', 15 | 'asset' => 'assets/tusk/{$name}/', 16 | ); 17 | } 18 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'sprinkle' => 'app/sprinkles/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'plugin' => 'plugins/{$name}/', 10 | 'theme' => 'themes/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'plugin' => 'wolf/plugins/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'plugin' => 'wp-content/plugins/{$name}/', 10 | 'theme' => 'wp-content/themes/{$name}/', 11 | 'muplugin' => 'wp-content/mu-plugins/{$name}/', 12 | 'dropin' => 'wp-content/{$name}/', 13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ZendInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'library' => 'library/{$name}/', 10 | 'extra' => 'extras/library/{$name}/', 11 | 'module' => 'module/{$name}/', 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'module' => 'modules/{$vendor}-{$name}/', 10 | 'theme' => 'themes/{$vendor}-{$name}/' 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/bootstrap.php: -------------------------------------------------------------------------------- 1 | payload = $payload; 12 | } 13 | 14 | public function getPayload(): object 15 | { 16 | return $this->payload; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/ExpiredException.php: -------------------------------------------------------------------------------- 1 | payload = $payload; 12 | } 13 | 14 | public function getPayload(): object 15 | { 16 | return $this->payload; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php: -------------------------------------------------------------------------------- 1 | =5.3" 12 | }, 13 | "autoload": { 14 | "classmap": [ "lib/classes" ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/autocomplete.css: -------------------------------------------------------------------------------- 1 | .rwmb-autocomplete-result { 2 | border-bottom: 1px solid #ccc; 3 | padding: 1em 0; 4 | overflow: hidden; 5 | } 6 | .rwmb-autocomplete-result .label { 7 | float: left; 8 | width: 90%; 9 | } 10 | .rwmb-autocomplete-result .actions { 11 | width: 10%; 12 | float: right; 13 | cursor: pointer; 14 | } 15 | .ui-autocomplete { 16 | z-index: 999999; 17 | } -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/background.css: -------------------------------------------------------------------------------- 1 | .rwmb-background-row { 2 | margin-bottom: 5px; 3 | display: flex; 4 | gap: 5px; 5 | flex-wrap: wrap; 6 | align-items: flex-start; 7 | } 8 | 9 | .rwmb-background-wrapper .wp-picker-container { 10 | position: relative; 11 | display: inline-block; 12 | vertical-align: top; 13 | } 14 | .rwmb-background-wrapper .wp-picker-holder { 15 | position: absolute; 16 | z-index: 9; 17 | min-width: 255px; 18 | } 19 | .rwmb-background-wrapper .rwmb-select { 20 | flex: 1; 21 | margin-bottom: 5px; 22 | max-width: 100%; 23 | } 24 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/color.css: -------------------------------------------------------------------------------- 1 | .rwmb-color-wrapper .wp-picker-container { 2 | position: relative; 3 | } 4 | .rwmb-color-wrapper .wp-picker-holder { 5 | position: absolute; 6 | z-index: 99; 7 | min-width: 255px; 8 | } 9 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/divider.css: -------------------------------------------------------------------------------- 1 | .rwmb-divider-wrapper hr { 2 | flex: 1; 3 | border: none; 4 | border-top: 1px solid #e6e6e6; 5 | } 6 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/fieldset-text.css: -------------------------------------------------------------------------------- 1 | .rwmb-fieldset_text-wrapper fieldset label { 2 | width: 20%; 3 | display: inline-block; 4 | } 5 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/file-input.css: -------------------------------------------------------------------------------- 1 | .rwmb-file-input-inner { 2 | width: 100%; 3 | display: flex; 4 | align-items: center; 5 | gap: 5px; 6 | } 7 | .rwmb-file_input { 8 | margin: 0 4px 0 0; 9 | } 10 | .rwmb-file-input-inner .button { 11 | margin: 0; 12 | } 13 | .rwmb-file-input-image { 14 | width: 150px; 15 | height: auto; 16 | margin-bottom: 4px; 17 | } 18 | .rwmb-file-input-image img{ 19 | max-width: 100%; 20 | height: auto; 21 | } 22 | .rwmb-file-input-hidden{ 23 | display: none; 24 | } 25 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/heading.css: -------------------------------------------------------------------------------- 1 | .rwmb-heading-wrapper { 2 | display: block; 3 | } 4 | .rwmb-heading-wrapper h4 { 5 | display: block; 6 | font-size: .75rem; 7 | line-height: 1.4; 8 | border-bottom: 1px solid rgb(230, 230, 230); 9 | text-transform: uppercase; 10 | padding: .75rem 0 .375rem; 11 | margin: 0 0 6px; 12 | } 13 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/icon.css: -------------------------------------------------------------------------------- 1 | .rwmb-icon-select { 2 | display: flex; 3 | align-items: center; 4 | gap: 8px; 5 | } 6 | 7 | .rwmb-icon-select i { 8 | width: 16px; 9 | } 10 | 11 | .rwmb-icon-select svg { 12 | width: 16px; 13 | height: 16px; 14 | } -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/image-select.css: -------------------------------------------------------------------------------- 1 | .rwmb-image-select { 2 | width: 80px; 3 | height: 80px; 4 | float: left; 5 | margin: 0 8px 8px 0; 6 | border: 3px solid #d8d8d8; 7 | border-radius: 4px; 8 | padding: 1px; 9 | cursor: pointer; 10 | 11 | --color: #2271b1; 12 | } 13 | 14 | .block-editor-page .rwmb-image-select { 15 | --color: var(--wp-admin-theme-color, #2271b1); 16 | } 17 | 18 | .rwmb-image-select img { 19 | width: 100%; 20 | height: 100%; 21 | object-fit: cover; 22 | } 23 | 24 | .rwmb-image-select:hover, 25 | .rwmb-image-select:has(:checked) { 26 | border-color: var(--color); 27 | } 28 | 29 | .rwmb-image_select.rwmb-image_select { 30 | display: none; 31 | } 32 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/input-list.css: -------------------------------------------------------------------------------- 1 | .rwmb-toggle-all-wrapper { 2 | margin-top: 0; 3 | } 4 | .rwmb-input-list { 5 | line-height: 1.8; 6 | } 7 | .rwmb-input-list.hidden { 8 | display: none; 9 | } 10 | .rwmb-input-list .rwmb-input-list { 11 | margin-left: 20px; 12 | } 13 | .rwmb-input-list > label { 14 | display: block; 15 | } 16 | .rwmb-input-list.rwmb-inline { 17 | line-height: inherit; 18 | display: flex; 19 | flex-wrap: wrap; 20 | gap: 6px 12px; 21 | } 22 | 23 | /* Media modal */ 24 | .attachment-details .compat-attachment-fields .rwmb-input-list > label > input { 25 | margin: 0 0.25rem 0 0; 26 | } 27 | .compat-attachment-fields .rwmb-input-list.rwmb-inline { 28 | gap: 10px; 29 | } 30 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/key-value.css: -------------------------------------------------------------------------------- 1 | .rwmb-key_value-clone { 2 | display: flex; 3 | align-items: center; 4 | gap: 8px; 5 | } 6 | .rwmb-key_value-clone input { 7 | flex: 1; 8 | } 9 | .rwmb-key_value-clone .remove-clone { 10 | position: static; 11 | } -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/media.css: -------------------------------------------------------------------------------- 1 | .rwmb-media-list { 2 | margin: 0; 3 | padding: 0; 4 | overflow: hidden; 5 | } 6 | .rwmb-edit-media, 7 | .rwmb-remove-media { 8 | color: inherit; 9 | text-decoration: none; 10 | } 11 | .rwmb-edit-media:after { 12 | content: "|"; 13 | color: #dcdcde; 14 | margin: 0 6px; 15 | } 16 | .rwmb-remove-media { 17 | color: #b32d2e; 18 | } -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/oembed.css: -------------------------------------------------------------------------------- 1 | .rwmb-oembed-wrapper .spinner { 2 | float: none; 3 | vertical-align: top; 4 | display: inline-block; 5 | } 6 | .rwmb-embed-media { 7 | margin-top: 1em; 8 | } 9 | .rwmb-embed-media iframe { 10 | max-width: 100%; 11 | } 12 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/osm-frontend.css: -------------------------------------------------------------------------------- 1 | img.leaflet-marker-icon { 2 | margin-left: -12px; 3 | margin-top: -41px; 4 | } -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/range.css: -------------------------------------------------------------------------------- 1 | .rwmb-range-inner { 2 | display: flex; 3 | align-items: center; 4 | justify-content: space-between; 5 | } 6 | .rwmb-range { 7 | flex: 1; 8 | } 9 | .rwmb-range.rwmb-range, 10 | .rwmb-range.rwmb-range:hover { 11 | vertical-align: middle; 12 | padding: 0; 13 | border: none; 14 | } 15 | .rwmb-range-output { 16 | margin-left: 8px; 17 | } 18 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/select-tree.css: -------------------------------------------------------------------------------- 1 | .rwmb-select-tree .rwmb-select-tree { 2 | margin-top: 6px; 3 | } 4 | 5 | .rwmb-select-tree.hidden { 6 | display: none; 7 | } 8 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/select.css: -------------------------------------------------------------------------------- 1 | .rwmb-select { 2 | min-width: 160px; 3 | } 4 | .rwmb-select.rwmb-select[multiple] { 5 | padding: 0; 6 | } 7 | .rwmb-select option { 8 | padding: 4px 8px; 9 | } 10 | .rwmb-select-all-none { 11 | display: block; 12 | margin-top: 5px; 13 | } 14 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/slider.css: -------------------------------------------------------------------------------- 1 | .rwmb-slider-inner { 2 | display: flex; 3 | align-items: center; 4 | justify-content: space-between; 5 | } 6 | .rwmb-slider-ui { 7 | flex: 1; 8 | } 9 | .rwmb-slider-label { 10 | margin-left: 8px; 11 | } 12 | 13 | /* Fix slider handle being visible through jQuery panel */ 14 | .ui-slider .ui-slider-handle { 15 | z-index: 1; 16 | } 17 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/style-rtl.css: -------------------------------------------------------------------------------- 1 | .rwmb-label, .rwmb-input{ 2 | float: right; 3 | } 4 | label.error{ 5 | padding-left: auto; 6 | padding-right: 3px; 7 | } 8 | .rwmb-button.remove-clone { 9 | right: auto; 10 | left: 0; 11 | } 12 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/text-list.css: -------------------------------------------------------------------------------- 1 | .rwmb-text_list-non-cloneable > .rwmb-input, 2 | .rwmb-text_list-clone { 3 | display: flex; 4 | flex-wrap: wrap; 5 | } 6 | .rwmb-text_list-non-cloneable > .rwmb-input > label, 7 | .rwmb-text_list-clone > label { 8 | margin: 0 10px 10px 0; 9 | flex: 1; 10 | } 11 | .rwmb-text_list-non-cloneable > .rwmb-input > label:last-child, 12 | .rwmb-text_list-clone > label:last-child { 13 | margin-right: 0; 14 | } 15 | 16 | .rwmb-text-list-label { 17 | font-weight: 600; 18 | display: block; 19 | margin-bottom: 3px; 20 | } 21 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/video.css: -------------------------------------------------------------------------------- 1 | .rwmb-video-item { 2 | position: relative; 3 | float: left; 4 | margin: 0 12px 12px 0; 5 | list-style: none; 6 | width: 300px; 7 | box-sizing: border-box; 8 | } 9 | 10 | .rwmb-video-item video { 11 | width: auto; 12 | height: 100%; 13 | } 14 | 15 | .rwmb-video-item .rwmb-media-info { 16 | margin-top: 12px; 17 | } 18 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/css/wysiwyg.css: -------------------------------------------------------------------------------- 1 | .rwmb-field .mceIframeContainer { 2 | background: #fff; 3 | } 4 | .rwmb-wysiwyg-clone { 5 | padding-top: 20px; 6 | } 7 | 8 | /* Fix style for Gutenberg */ 9 | .block-editor .wp-editor-wrap { 10 | box-sizing: content-box; 11 | } 12 | 13 | /* Fix fullscreen mode still shows admin menu */ 14 | div.mce-fullscreen { 15 | z-index: 999999; 16 | } -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/drag_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/drag_icon.gif -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/img/jqueryui/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/img/jqueryui/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/inc/about/images/online-generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/inc/about/images/online-generator.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/inc/about/js/about.js: -------------------------------------------------------------------------------- 1 | ( function ( $ ) { 2 | 'use strict'; 3 | 4 | function tabs() { 5 | var $container = $( '.nav-tab-wrapper' ), 6 | $tabs = $container.find( '.nav-tab' ), 7 | $panes = $( '.gt-tab-pane' ); 8 | 9 | $container.on( 10 | 'click', 11 | '.nav-tab', 12 | function ( e ) { 13 | e.preventDefault(); 14 | 15 | $tabs.removeClass( 'nav-tab-active' ); 16 | $( this ).addClass( 'nav-tab-active' ); 17 | 18 | $panes.removeClass( 'gt-is-active' ); 19 | $panes.filter( $( this ).attr( 'href' ) ).addClass( 'gt-is-active' ); 20 | } 21 | ); 22 | } 23 | 24 | // Auto activate tabs when DOM ready. 25 | $( tabs ); 26 | } ( jQuery ) ); 27 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/inc/about/sections/review.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |

5 | 6 |

7 |
8 |

9 |

10 |
11 |
12 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/inc/about/sections/tabs.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/inc/fields/checkbox-list.php: -------------------------------------------------------------------------------- 1 | storages[ $class_name ] ) ) { 16 | $this->storages[ $class_name ] = new $class_name(); 17 | } 18 | 19 | return $this->storages[ $class_name ]; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/inc/storages/post.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/js/autosave.js: -------------------------------------------------------------------------------- 1 | ( function ( $, document ) { 2 | 'use strict'; 3 | 4 | $( document ).ajaxSend( function ( event, xhr, settings ) { 5 | if ( ! Array.isArray( settings.data ) || -1 === settings.data.indexOf( 'wp_autosave' ) ) { 6 | return; 7 | } 8 | var inputSelectors = 'input[class*="rwmb"], textarea[class*="rwmb"], select[class*="rwmb"], button[class*="rwmb"], input[name^="nonce_"]'; 9 | $( '.rwmb-meta-box' ).each( function () { 10 | var $meta_box = $( this ); 11 | if ( true === $meta_box.data( 'autosave' ) ) { 12 | settings.data += '&' + $meta_box.find( inputSelectors ).serialize(); 13 | } 14 | } ); 15 | } ); 16 | } )( jQuery, document ); 17 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/js/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/js/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/js/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/js/leaflet/images/layers.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/js/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/js/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/js/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/js/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/js/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udx/wp-stateless/fc096fb8dc6d8764c9b48ee48d74f21ac58411a9/vendor/wpmetabox/meta-box/js/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/js/range.js: -------------------------------------------------------------------------------- 1 | ( function ( $, rwmb ) { 2 | 'use strict'; 3 | 4 | /** 5 | * Update text value. 6 | */ 7 | function update() { 8 | const $this = $( this ), 9 | $output = $this.siblings( '.rwmb-range-output' ); 10 | 11 | $output.html( $this.val() ); 12 | $this.on( 'input propertychange change', () => $output.html( $this.val() ) ); 13 | } 14 | 15 | function init( e ) { 16 | $( e.target ).find( '.rwmb-range' ).each( update ); 17 | } 18 | 19 | rwmb.$document 20 | .on( 'mb_ready', init ) 21 | .on( 'clone', '.rwmb-range', update ); 22 | } )( jQuery, rwmb ); 23 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/js/select.js: -------------------------------------------------------------------------------- 1 | ( function ( $, rwmb ) { 2 | 'use strict'; 3 | 4 | function toggleAll( e ) { 5 | e.preventDefault(); 6 | 7 | var $this = $( this ), 8 | $select = $this.parent().siblings( 'select' ); 9 | 10 | if ( 'none' === $this.data( 'type' ) ) { 11 | $select.val( [] ).trigger( 'change' ); 12 | return; 13 | } 14 | var selected = []; 15 | $select.find( 'option' ).each( function ( index, option ) { 16 | selected.push( option.value ); 17 | } ); 18 | $select.val( selected ).trigger( 'change' ); 19 | }; 20 | 21 | rwmb.$document 22 | .on( 'click', '.rwmb-select-all-none a', toggleAll ); 23 | } )( jQuery, rwmb ); 24 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/js/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.10 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(n){return"请删除"+(n.input.length-n.maximum)+"个字符"},inputTooShort:function(n){return"请再输入至少"+(n.minimum-n.input.length)+"个字符"},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(n){return"最多只能选择"+n.maximum+"个项目"},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"},removeAllItems:function(){return"删除所有项目"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/js/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.10 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(n){return"請刪掉"+(n.input.length-n.maximum)+"個字元"},inputTooShort:function(n){return"請再輸入"+(n.minimum-n.input.length)+"個字元"},loadingMore:function(){return"載入中…"},maximumSelected:function(n){return"你只能選擇最多"+n.maximum+"項"},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"},removeAllItems:function(){return"刪除所有項目"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/src/Integrations/Block.php: -------------------------------------------------------------------------------- 1 | 'meta-box', 12 | 'title' => esc_html__( 'Meta Box', 'meta-box' ), 13 | ]; 14 | 15 | return $categories; 16 | } 17 | } -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/src/Integrations/Bricks.php: -------------------------------------------------------------------------------- 1 | elements_manager->add_category( 11 | 'metabox', 12 | [ 13 | 'title' => esc_html__( 'Meta Box', 'meta-box' ), 14 | 'icon' => 'fa fa-m', 15 | ] 16 | ); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/src/Integrations/Oxygen.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/composer/InstalledVersions.php', 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/wpmetabox/meta-box/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/meta-box/support'), 10 | 'MetaBox\\' => array($baseDir . '/src'), 11 | ); 12 | --------------------------------------------------------------------------------