├── .deepsource.toml ├── .editorconfig ├── .gitignore ├── .htaccess ├── .npmrc ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── bootstrap.php ├── composer.json ├── cron.php ├── favicon.png ├── index.php ├── install └── index.php ├── lib ├── CLI.php ├── DeepArrayIterator.php ├── DotEnv.php ├── ESQL │ ├── Client.php │ └── README.md ├── FileStorage.php ├── IndexHybrid │ ├── Manager.php │ ├── Meilisearch │ │ ├── Index.php │ │ └── Manager.php │ └── README.md ├── IndexLite │ ├── Autocomplete.php │ ├── FuzzyEnhancer.php │ ├── Index.php │ ├── Manager.php │ ├── README.md │ └── Utils.php ├── JSONStream │ ├── CollectionReader.php │ └── CollectionWriter.php ├── Lime │ ├── App.php │ ├── Helper │ │ ├── Cache.php │ │ ├── Filesystem.php │ │ ├── Session.php │ │ └── Utils.php │ ├── Request.php │ └── Response.php ├── Mailer.php ├── MemoryStorage │ └── Client.php ├── MongoHybrid │ ├── Client.php │ ├── Mongo.php │ ├── MongoLite.php │ ├── ResultSet.php │ └── SQLToMongoQuery.php ├── MongoLite │ ├── Aggregation │ │ ├── Cursor.php │ │ └── ValueAccessor.php │ ├── Client.php │ ├── Collection.php │ ├── Cursor.php │ ├── Database.php │ ├── Projection.php │ ├── QueryOptimizer.php │ ├── README.md │ └── UtilArrayQuery.php ├── QueueLite │ ├── Queue.php │ └── Worker.php ├── RedisLite.php ├── SVGSanitizer.php ├── SimpleImageLib.php ├── SwaggerPhp │ ├── AlternativeDocBlockParser.php │ ├── AlternativeTokenAnalyser.php │ └── README.md ├── Thumbhash.php ├── _autoload.php └── vendor │ ├── autoload.php │ ├── aws │ ├── aws-crt-php │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── composer.json │ │ ├── format-check.py │ │ └── src │ │ │ └── AWS │ │ │ └── CRT │ │ │ ├── Auth │ │ │ ├── AwsCredentials.php │ │ │ ├── CredentialsProvider.php │ │ │ ├── Signable.php │ │ │ ├── SignatureType.php │ │ │ ├── SignedBodyHeaderType.php │ │ │ ├── Signing.php │ │ │ ├── SigningAlgorithm.php │ │ │ ├── SigningConfigAWS.php │ │ │ ├── SigningResult.php │ │ │ └── StaticCredentialsProvider.php │ │ │ ├── CRT.php │ │ │ ├── HTTP │ │ │ ├── Headers.php │ │ │ ├── Message.php │ │ │ ├── Request.php │ │ │ └── Response.php │ │ │ ├── IO │ │ │ ├── EventLoopGroup.php │ │ │ └── InputStream.php │ │ │ ├── Internal │ │ │ ├── Encoding.php │ │ │ └── Extension.php │ │ │ ├── Log.php │ │ │ ├── NativeResource.php │ │ │ └── Options.php │ └── aws-sdk-php │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CRT_INSTRUCTIONS.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── THIRD-PARTY-LICENSES │ │ ├── composer.json │ │ └── src │ │ ├── AbstractConfigurationProvider.php │ │ ├── Api │ │ ├── AbstractModel.php │ │ ├── ApiProvider.php │ │ ├── DateTimeResult.php │ │ ├── DocModel.php │ │ ├── ErrorParser │ │ │ ├── AbstractErrorParser.php │ │ │ ├── JsonParserTrait.php │ │ │ ├── JsonRpcErrorParser.php │ │ │ ├── RestJsonErrorParser.php │ │ │ └── XmlErrorParser.php │ │ ├── ListShape.php │ │ ├── MapShape.php │ │ ├── Operation.php │ │ ├── Parser │ │ │ ├── AbstractParser.php │ │ │ ├── AbstractRestParser.php │ │ │ ├── Crc32ValidatingParser.php │ │ │ ├── DecodingEventStreamIterator.php │ │ │ ├── EventParsingIterator.php │ │ │ ├── Exception │ │ │ │ └── ParserException.php │ │ │ ├── JsonParser.php │ │ │ ├── JsonRpcParser.php │ │ │ ├── MetadataParserTrait.php │ │ │ ├── NonSeekableStreamDecodingEventStreamIterator.php │ │ │ ├── PayloadParserTrait.php │ │ │ ├── QueryParser.php │ │ │ ├── RestJsonParser.php │ │ │ ├── RestXmlParser.php │ │ │ └── XmlParser.php │ │ ├── Serializer │ │ │ ├── Ec2ParamBuilder.php │ │ │ ├── JsonBody.php │ │ │ ├── JsonRpcSerializer.php │ │ │ ├── QueryParamBuilder.php │ │ │ ├── QuerySerializer.php │ │ │ ├── RestJsonSerializer.php │ │ │ ├── RestSerializer.php │ │ │ ├── RestXmlSerializer.php │ │ │ └── XmlBody.php │ │ ├── Service.php │ │ ├── Shape.php │ │ ├── ShapeMap.php │ │ ├── StructureShape.php │ │ ├── SupportedProtocols.php │ │ ├── TimestampShape.php │ │ └── Validator.php │ │ ├── Arn │ │ ├── AccessPointArn.php │ │ ├── AccessPointArnInterface.php │ │ ├── Arn.php │ │ ├── ArnInterface.php │ │ ├── ArnParser.php │ │ ├── Exception │ │ │ └── InvalidArnException.php │ │ ├── ObjectLambdaAccessPointArn.php │ │ ├── ResourceTypeAndIdTrait.php │ │ └── S3 │ │ │ ├── AccessPointArn.php │ │ │ ├── BucketArnInterface.php │ │ │ ├── MultiRegionAccessPointArn.php │ │ │ ├── OutpostsAccessPointArn.php │ │ │ ├── OutpostsArnInterface.php │ │ │ └── OutpostsBucketArn.php │ │ ├── Auth │ │ ├── AuthSchemeResolver.php │ │ ├── AuthSchemeResolverInterface.php │ │ ├── AuthSelectionMiddleware.php │ │ └── Exception │ │ │ └── UnresolvedAuthSchemeException.php │ │ ├── AwsClient.php │ │ ├── AwsClientInterface.php │ │ ├── AwsClientTrait.php │ │ ├── CacheInterface.php │ │ ├── ClientResolver.php │ │ ├── ClientSideMonitoring │ │ ├── AbstractMonitoringMiddleware.php │ │ ├── ApiCallAttemptMonitoringMiddleware.php │ │ ├── ApiCallMonitoringMiddleware.php │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ ├── Exception │ │ │ └── ConfigurationException.php │ │ └── MonitoringMiddlewareInterface.php │ │ ├── Command.php │ │ ├── CommandInterface.php │ │ ├── CommandPool.php │ │ ├── Configuration │ │ └── ConfigurationResolver.php │ │ ├── ConfigurationProviderInterface.php │ │ ├── Credentials │ │ ├── AssumeRoleCredentialProvider.php │ │ ├── AssumeRoleWithWebIdentityCredentialProvider.php │ │ ├── CredentialProvider.php │ │ ├── CredentialSources.php │ │ ├── Credentials.php │ │ ├── CredentialsInterface.php │ │ ├── CredentialsUtils.php │ │ ├── EcsCredentialProvider.php │ │ ├── InstanceProfileProvider.php │ │ └── LoginCredentialProvider.php │ │ ├── Crypto │ │ ├── AbstractCryptoClient.php │ │ ├── AbstractCryptoClientV2.php │ │ ├── AesDecryptingStream.php │ │ ├── AesEncryptingStream.php │ │ ├── AesGcmDecryptingStream.php │ │ ├── AesGcmEncryptingStream.php │ │ ├── AesStreamInterface.php │ │ ├── AesStreamInterfaceV2.php │ │ ├── Cipher │ │ │ ├── Cbc.php │ │ │ ├── CipherBuilderTrait.php │ │ │ └── CipherMethod.php │ │ ├── DecryptionTrait.php │ │ ├── DecryptionTraitV2.php │ │ ├── EncryptionTrait.php │ │ ├── EncryptionTraitV2.php │ │ ├── KmsMaterialsProvider.php │ │ ├── KmsMaterialsProviderV2.php │ │ ├── MaterialsProvider.php │ │ ├── MaterialsProviderInterface.php │ │ ├── MaterialsProviderInterfaceV2.php │ │ ├── MaterialsProviderV2.php │ │ ├── MetadataEnvelope.php │ │ └── MetadataStrategyInterface.php │ │ ├── DefaultsMode │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ └── Exception │ │ │ └── ConfigurationException.php │ │ ├── DoctrineCacheAdapter.php │ │ ├── Endpoint │ │ ├── EndpointProvider.php │ │ ├── Partition.php │ │ ├── PartitionEndpointProvider.php │ │ ├── PartitionInterface.php │ │ ├── PatternEndpointProvider.php │ │ ├── UseDualstackEndpoint │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ └── Exception │ │ │ │ └── ConfigurationException.php │ │ └── UseFipsEndpoint │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ └── Exception │ │ │ └── ConfigurationException.php │ │ ├── EndpointDiscovery │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ ├── EndpointDiscoveryMiddleware.php │ │ ├── EndpointList.php │ │ └── Exception │ │ │ └── ConfigurationException.php │ │ ├── EndpointParameterMiddleware.php │ │ ├── EndpointV2 │ │ ├── EndpointDefinitionProvider.php │ │ ├── EndpointProviderV2.php │ │ ├── EndpointV2Middleware.php │ │ ├── EndpointV2SerializerTrait.php │ │ ├── Rule │ │ │ ├── AbstractRule.php │ │ │ ├── EndpointRule.php │ │ │ ├── ErrorRule.php │ │ │ ├── RuleCreator.php │ │ │ └── TreeRule.php │ │ └── Ruleset │ │ │ ├── Ruleset.php │ │ │ ├── RulesetEndpoint.php │ │ │ ├── RulesetParameter.php │ │ │ └── RulesetStandardLibrary.php │ │ ├── Exception │ │ ├── AwsException.php │ │ ├── CommonRuntimeException.php │ │ ├── CouldNotCreateChecksumException.php │ │ ├── CredentialsException.php │ │ ├── CryptoException.php │ │ ├── CryptoPolyfillException.php │ │ ├── EventStreamDataException.php │ │ ├── IncalculablePayloadException.php │ │ ├── InvalidJsonException.php │ │ ├── InvalidRegionException.php │ │ ├── MultipartUploadException.php │ │ ├── TokenException.php │ │ ├── UnresolvedApiException.php │ │ ├── UnresolvedEndpointException.php │ │ └── UnresolvedSignatureException.php │ │ ├── Handler │ │ ├── Guzzle │ │ │ └── GuzzleHandler.php │ │ └── GuzzleV6 │ │ │ └── GuzzleHandler.php │ │ ├── HandlerList.php │ │ ├── HasDataTrait.php │ │ ├── HasMonitoringEventsTrait.php │ │ ├── HashInterface.php │ │ ├── HashingStream.php │ │ ├── History.php │ │ ├── IdempotencyTokenMiddleware.php │ │ ├── Identity │ │ ├── AwsCredentialIdentity.php │ │ ├── BearerTokenIdentity.php │ │ ├── IdentityInterface.php │ │ └── S3 │ │ │ ├── S3ExpressIdentity.php │ │ │ └── S3ExpressIdentityProvider.php │ │ ├── InputValidationMiddleware.php │ │ ├── JsonCompiler.php │ │ ├── Kms │ │ ├── Exception │ │ │ └── KmsException.php │ │ └── KmsClient.php │ │ ├── LruArrayCache.php │ │ ├── MetricsBuilder.php │ │ ├── Middleware.php │ │ ├── MockHandler.php │ │ ├── MonitoringEventsInterface.php │ │ ├── MultiRegionClient.php │ │ ├── Multipart │ │ ├── AbstractUploadManager.php │ │ ├── AbstractUploader.php │ │ └── UploadState.php │ │ ├── PhpHash.php │ │ ├── PresignUrlMiddleware.php │ │ ├── Psr16CacheAdapter.php │ │ ├── PsrCacheAdapter.php │ │ ├── QueryCompatibleInputMiddleware.php │ │ ├── RequestCompressionMiddleware.php │ │ ├── ResponseContainerInterface.php │ │ ├── Result.php │ │ ├── ResultInterface.php │ │ ├── ResultPaginator.php │ │ ├── Retry │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ ├── Exception │ │ │ └── ConfigurationException.php │ │ ├── QuotaManager.php │ │ ├── RateLimiter.php │ │ └── RetryHelperTrait.php │ │ ├── RetryMiddleware.php │ │ ├── RetryMiddlewareV2.php │ │ ├── S3 │ │ ├── AmbiguousSuccessParser.php │ │ ├── ApplyChecksumMiddleware.php │ │ ├── BatchDelete.php │ │ ├── BucketEndpointArnMiddleware.php │ │ ├── BucketEndpointMiddleware.php │ │ ├── CalculatesChecksumTrait.php │ │ ├── Crypto │ │ │ ├── CryptoParamsTrait.php │ │ │ ├── CryptoParamsTraitV2.php │ │ │ ├── HeadersMetadataStrategy.php │ │ │ ├── InstructionFileMetadataStrategy.php │ │ │ ├── S3EncryptionClient.php │ │ │ ├── S3EncryptionClientV2.php │ │ │ ├── S3EncryptionMultipartUploader.php │ │ │ ├── S3EncryptionMultipartUploaderV2.php │ │ │ └── UserAgentTrait.php │ │ ├── EndpointRegionHelperTrait.php │ │ ├── Exception │ │ │ ├── DeleteMultipleObjectsException.php │ │ │ ├── PermanentRedirectException.php │ │ │ ├── S3Exception.php │ │ │ └── S3MultipartUploadException.php │ │ ├── ExpiresParsingMiddleware.php │ │ ├── GetBucketLocationParser.php │ │ ├── MultipartCopy.php │ │ ├── MultipartUploader.php │ │ ├── MultipartUploadingTrait.php │ │ ├── ObjectCopier.php │ │ ├── ObjectUploader.php │ │ ├── Parser │ │ │ ├── GetBucketLocationResultMutator.php │ │ │ ├── S3Parser.php │ │ │ ├── S3ResultMutator.php │ │ │ └── ValidateResponseChecksumResultMutator.php │ │ ├── PermanentRedirectMiddleware.php │ │ ├── PostObject.php │ │ ├── PostObjectV4.php │ │ ├── PutObjectUrlMiddleware.php │ │ ├── RegionalEndpoint │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ └── Exception │ │ │ │ └── ConfigurationException.php │ │ ├── RetryableMalformedResponseParser.php │ │ ├── S3Client.php │ │ ├── S3ClientInterface.php │ │ ├── S3ClientTrait.php │ │ ├── S3EndpointMiddleware.php │ │ ├── S3MultiRegionClient.php │ │ ├── S3UriParser.php │ │ ├── SSECMiddleware.php │ │ ├── StreamWrapper.php │ │ ├── Transfer.php │ │ ├── UseArnRegion │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ └── Exception │ │ │ │ └── ConfigurationException.php │ │ └── ValidateResponseChecksumParser.php │ │ ├── SSO │ │ ├── Exception │ │ │ └── SSOException.php │ │ └── SSOClient.php │ │ ├── SSOOIDC │ │ ├── Exception │ │ │ └── SSOOIDCException.php │ │ └── SSOOIDCClient.php │ │ ├── Script │ │ └── Composer │ │ │ └── Composer.php │ │ ├── Sdk.php │ │ ├── Signature │ │ ├── AnonymousSignature.php │ │ ├── DpopSignature.php │ │ ├── S3ExpressSignature.php │ │ ├── S3SignatureV4.php │ │ ├── SignatureInterface.php │ │ ├── SignatureProvider.php │ │ ├── SignatureTrait.php │ │ └── SignatureV4.php │ │ ├── Signin │ │ ├── Exception │ │ │ └── SigninException.php │ │ └── SigninClient.php │ │ ├── StreamRequestPayloadMiddleware.php │ │ ├── Sts │ │ ├── Exception │ │ │ └── StsException.php │ │ ├── RegionalEndpoints │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ └── Exception │ │ │ │ └── ConfigurationException.php │ │ └── StsClient.php │ │ ├── Token │ │ ├── BearerTokenAuthorization.php │ │ ├── BedrockTokenProvider.php │ │ ├── ParsesIniTrait.php │ │ ├── RefreshableTokenProviderInterface.php │ │ ├── SsoToken.php │ │ ├── SsoTokenProvider.php │ │ ├── Token.php │ │ ├── TokenAuthorization.php │ │ ├── TokenInterface.php │ │ ├── TokenProvider.php │ │ └── TokenSource.php │ │ ├── TraceMiddleware.php │ │ ├── UserAgentMiddleware.php │ │ ├── Waiter.php │ │ ├── WrappedHttpHandler.php │ │ ├── data │ │ ├── aliases.json.php │ │ ├── endpoints.json.php │ │ ├── endpoints_prefix_history.json.php │ │ ├── grandfathered-services.json.php │ │ ├── kms │ │ │ └── 2014-11-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── manifest.json.php │ │ ├── partitions.json.php │ │ ├── s3 │ │ │ └── 2006-03-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── sdk-default-configuration.json.php │ │ ├── signin │ │ │ └── 2023-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sso-oidc │ │ │ └── 2019-06-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sso │ │ │ └── 2019-06-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ └── sts │ │ │ └── 2011-06-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ │ └── functions.php │ ├── bacon │ └── bacon-qr-code │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Common │ │ ├── BitArray.php │ │ ├── BitMatrix.php │ │ ├── BitUtils.php │ │ ├── CharacterSetEci.php │ │ ├── EcBlock.php │ │ ├── EcBlocks.php │ │ ├── ErrorCorrectionLevel.php │ │ ├── FormatInformation.php │ │ ├── Mode.php │ │ ├── ReedSolomonCodec.php │ │ └── Version.php │ │ ├── Encoder │ │ ├── BlockPair.php │ │ ├── ByteMatrix.php │ │ ├── Encoder.php │ │ ├── MaskUtil.php │ │ ├── MatrixUtil.php │ │ └── QrCode.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── OutOfBoundsException.php │ │ ├── RuntimeException.php │ │ ├── UnexpectedValueException.php │ │ └── WriterException.php │ │ ├── Renderer │ │ ├── Color │ │ │ ├── Alpha.php │ │ │ ├── Cmyk.php │ │ │ ├── ColorInterface.php │ │ │ ├── Gray.php │ │ │ └── Rgb.php │ │ ├── Eye │ │ │ ├── CompositeEye.php │ │ │ ├── EyeInterface.php │ │ │ ├── ModuleEye.php │ │ │ ├── PointyEye.php │ │ │ ├── SimpleCircleEye.php │ │ │ └── SquareEye.php │ │ ├── GDLibRenderer.php │ │ ├── Image │ │ │ ├── EpsImageBackEnd.php │ │ │ ├── ImageBackEndInterface.php │ │ │ ├── ImagickImageBackEnd.php │ │ │ ├── SvgImageBackEnd.php │ │ │ └── TransformationMatrix.php │ │ ├── ImageRenderer.php │ │ ├── Module │ │ │ ├── DotsModule.php │ │ │ ├── EdgeIterator │ │ │ │ ├── Edge.php │ │ │ │ └── EdgeIterator.php │ │ │ ├── ModuleInterface.php │ │ │ ├── RoundnessModule.php │ │ │ └── SquareModule.php │ │ ├── Path │ │ │ ├── Close.php │ │ │ ├── Curve.php │ │ │ ├── EllipticArc.php │ │ │ ├── Line.php │ │ │ ├── Move.php │ │ │ ├── OperationInterface.php │ │ │ └── Path.php │ │ ├── PlainTextRenderer.php │ │ ├── RendererInterface.php │ │ └── RendererStyle │ │ │ ├── EyeFill.php │ │ │ ├── Fill.php │ │ │ ├── Gradient.php │ │ │ ├── GradientType.php │ │ │ └── RendererStyle.php │ │ └── Writer.php │ ├── claviska │ └── simpleimage │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── claviska │ │ └── SimpleImage.php │ ├── colinodell │ └── json5 │ │ ├── .phpstorm.meta.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpcs.xml.dist │ │ ├── phpstan.neon.dist │ │ └── src │ │ ├── Json5Decoder.php │ │ ├── SyntaxError.php │ │ └── global.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 │ ├── dasprid │ └── enum │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AbstractEnum.php │ │ ├── EnumMap.php │ │ ├── Exception │ │ ├── CloneNotSupportedException.php │ │ ├── ExceptionInterface.php │ │ ├── ExpectationException.php │ │ ├── IllegalArgumentException.php │ │ ├── MismatchException.php │ │ ├── SerializeNotSupportedException.php │ │ └── UnserializeNotSupportedException.php │ │ └── NullValue.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 │ ├── 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 │ ├── jumbojett │ └── openid-connect-php │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client_example.php │ │ ├── composer.json │ │ └── src │ │ └── OpenIDConnectClient.php │ ├── ksubileau │ └── color-thief-php │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ └── ColorThief │ │ ├── Color.php │ │ ├── ColorThief.php │ │ ├── Exception │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ ├── NotReadableException.php │ │ ├── NotSupportedException.php │ │ └── RuntimeException.php │ │ ├── Image │ │ ├── Adapter │ │ │ ├── AbstractAdapter.php │ │ │ ├── AdapterInterface.php │ │ │ ├── GdAdapter.php │ │ │ ├── GmagickAdapter.php │ │ │ └── ImagickAdapter.php │ │ └── ImageLoader.php │ │ ├── PQueue.php │ │ └── VBox.php │ ├── league │ ├── color-extractor │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Color.php │ │ │ ├── ColorExtractor.php │ │ │ └── Palette.php │ ├── flysystem-aws-s3-v3 │ │ ├── AwsS3V3Adapter.php │ │ ├── LICENSE │ │ ├── PortableVisibilityConverter.php │ │ ├── VisibilityConverter.php │ │ └── composer.json │ ├── flysystem-local │ │ ├── FallbackMimeTypeDetector.php │ │ ├── LICENSE │ │ ├── LocalFilesystemAdapter.php │ │ └── composer.json │ ├── flysystem │ │ ├── INFO.md │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── readme.md │ │ └── src │ │ │ ├── CalculateChecksumFromStream.php │ │ │ ├── ChecksumAlgoIsNotSupported.php │ │ │ ├── ChecksumProvider.php │ │ │ ├── Config.php │ │ │ ├── CorruptedPathDetected.php │ │ │ ├── DecoratedAdapter.php │ │ │ ├── DirectoryAttributes.php │ │ │ ├── DirectoryListing.php │ │ │ ├── FileAttributes.php │ │ │ ├── Filesystem.php │ │ │ ├── FilesystemAdapter.php │ │ │ ├── FilesystemException.php │ │ │ ├── FilesystemOperationFailed.php │ │ │ ├── FilesystemOperator.php │ │ │ ├── FilesystemReader.php │ │ │ ├── FilesystemWriter.php │ │ │ ├── InvalidStreamProvided.php │ │ │ ├── InvalidVisibilityProvided.php │ │ │ ├── MountManager.php │ │ │ ├── PathNormalizer.php │ │ │ ├── PathPrefixer.php │ │ │ ├── PathTraversalDetected.php │ │ │ ├── PortableVisibilityGuard.php │ │ │ ├── ProxyArrayAccessToProperties.php │ │ │ ├── ResolveIdenticalPathConflict.php │ │ │ ├── StorageAttributes.php │ │ │ ├── SymbolicLinkEncountered.php │ │ │ ├── UnableToCheckDirectoryExistence.php │ │ │ ├── UnableToCheckExistence.php │ │ │ ├── UnableToCheckFileExistence.php │ │ │ ├── UnableToCopyFile.php │ │ │ ├── UnableToCreateDirectory.php │ │ │ ├── UnableToDeleteDirectory.php │ │ │ ├── UnableToDeleteFile.php │ │ │ ├── UnableToGeneratePublicUrl.php │ │ │ ├── UnableToGenerateTemporaryUrl.php │ │ │ ├── UnableToListContents.php │ │ │ ├── UnableToMountFilesystem.php │ │ │ ├── UnableToMoveFile.php │ │ │ ├── UnableToProvideChecksum.php │ │ │ ├── UnableToReadFile.php │ │ │ ├── UnableToResolveFilesystemMount.php │ │ │ ├── UnableToRetrieveMetadata.php │ │ │ ├── UnableToSetVisibility.php │ │ │ ├── UnableToWriteFile.php │ │ │ ├── UnixVisibility │ │ │ ├── PortableVisibilityConverter.php │ │ │ └── VisibilityConverter.php │ │ │ ├── UnreadableFileEncountered.php │ │ │ ├── UrlGeneration │ │ │ ├── ChainedPublicUrlGenerator.php │ │ │ ├── PrefixPublicUrlGenerator.php │ │ │ ├── PublicUrlGenerator.php │ │ │ ├── ShardedPrefixPublicUrlGenerator.php │ │ │ └── TemporaryUrlGenerator.php │ │ │ ├── Visibility.php │ │ │ └── WhitespacePathNormalizer.php │ └── mime-type-detection │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── EmptyExtensionToMimeTypeMap.php │ │ ├── ExtensionLookup.php │ │ ├── ExtensionMimeTypeDetector.php │ │ ├── ExtensionToMimeTypeMap.php │ │ ├── FinfoMimeTypeDetector.php │ │ ├── GeneratedExtensionToMimeTypeMap.php │ │ ├── MimeTypeDetector.php │ │ └── OverridingExtensionToMimeTypeMap.php │ ├── maennchen │ └── zipstream-php │ │ ├── .editorconfig │ │ ├── .phive │ │ └── phars.xml │ │ ├── .php-cs-fixer.dist.php │ │ ├── .phpdoc │ │ └── template │ │ │ └── base.html.twig │ │ ├── .tool-versions │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── guides │ │ ├── ContentLength.rst │ │ ├── FlySystem.rst │ │ ├── Nginx.rst │ │ ├── Options.rst │ │ ├── PSR7Streams.rst │ │ ├── StreamOutput.rst │ │ ├── Symfony.rst │ │ ├── Varnish.rst │ │ └── index.rst │ │ ├── phpdoc.dist.xml │ │ ├── psalm.xml │ │ └── src │ │ ├── CentralDirectoryFileHeader.php │ │ ├── CompressionMethod.php │ │ ├── DataDescriptor.php │ │ ├── EndOfCentralDirectory.php │ │ ├── Exception.php │ │ ├── Exception │ │ ├── DosTimeOverflowException.php │ │ ├── FileNotFoundException.php │ │ ├── FileNotReadableException.php │ │ ├── FileSizeIncorrectException.php │ │ ├── OverflowException.php │ │ ├── ResourceActionException.php │ │ ├── SimulationFileUnknownException.php │ │ ├── StreamNotReadableException.php │ │ └── StreamNotSeekableException.php │ │ ├── File.php │ │ ├── GeneralPurposeBitFlag.php │ │ ├── LocalFileHeader.php │ │ ├── OperationMode.php │ │ ├── PackField.php │ │ ├── Stream │ │ └── CallbackStreamWrapper.php │ │ ├── Time.php │ │ ├── Version.php │ │ ├── Zip64 │ │ ├── DataDescriptor.php │ │ ├── EndOfCentralDirectory.php │ │ ├── EndOfCentralDirectoryLocator.php │ │ └── ExtendedInformationExtraField.php │ │ ├── ZipStream.php │ │ └── Zs │ │ └── ExtendedInformationExtraField.php │ ├── mongodb │ └── mongodb │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── sbom.json │ │ └── src │ │ ├── Builder │ │ ├── Accumulator.php │ │ ├── Accumulator │ │ │ ├── AccumulatorAccumulator.php │ │ │ ├── AddToSetAccumulator.php │ │ │ ├── AvgAccumulator.php │ │ │ ├── BottomAccumulator.php │ │ │ ├── BottomNAccumulator.php │ │ │ ├── CountAccumulator.php │ │ │ ├── CovariancePopAccumulator.php │ │ │ ├── CovarianceSampAccumulator.php │ │ │ ├── DenseRankAccumulator.php │ │ │ ├── DerivativeAccumulator.php │ │ │ ├── DocumentNumberAccumulator.php │ │ │ ├── ExpMovingAvgAccumulator.php │ │ │ ├── FactoryTrait.php │ │ │ ├── FirstAccumulator.php │ │ │ ├── FirstNAccumulator.php │ │ │ ├── IntegralAccumulator.php │ │ │ ├── LastAccumulator.php │ │ │ ├── LastNAccumulator.php │ │ │ ├── LinearFillAccumulator.php │ │ │ ├── LocfAccumulator.php │ │ │ ├── MaxAccumulator.php │ │ │ ├── MaxNAccumulator.php │ │ │ ├── MedianAccumulator.php │ │ │ ├── MergeObjectsAccumulator.php │ │ │ ├── MinAccumulator.php │ │ │ ├── MinNAccumulator.php │ │ │ ├── PercentileAccumulator.php │ │ │ ├── PushAccumulator.php │ │ │ ├── RankAccumulator.php │ │ │ ├── ShiftAccumulator.php │ │ │ ├── StdDevPopAccumulator.php │ │ │ ├── StdDevSampAccumulator.php │ │ │ ├── SumAccumulator.php │ │ │ ├── TopAccumulator.php │ │ │ └── TopNAccumulator.php │ │ ├── BuilderEncoder.php │ │ ├── Encoder │ │ │ ├── CombinedFieldQueryEncoder.php │ │ │ ├── DateTimeEncoder.php │ │ │ ├── DictionaryEncoder.php │ │ │ ├── FieldPathEncoder.php │ │ │ ├── OperatorEncoder.php │ │ │ ├── OutputWindowEncoder.php │ │ │ ├── PipelineEncoder.php │ │ │ ├── QueryEncoder.php │ │ │ ├── RecursiveEncode.php │ │ │ └── VariableEncoder.php │ │ ├── Expression.php │ │ ├── Expression │ │ │ ├── AbsOperator.php │ │ │ ├── AcosOperator.php │ │ │ ├── AcoshOperator.php │ │ │ ├── AddOperator.php │ │ │ ├── AllElementsTrueOperator.php │ │ │ ├── AndOperator.php │ │ │ ├── AnyElementTrueOperator.php │ │ │ ├── ArrayElemAtOperator.php │ │ │ ├── ArrayFieldPath.php │ │ │ ├── ArrayToObjectOperator.php │ │ │ ├── AsinOperator.php │ │ │ ├── AsinhOperator.php │ │ │ ├── Atan2Operator.php │ │ │ ├── AtanOperator.php │ │ │ ├── AtanhOperator.php │ │ │ ├── AvgOperator.php │ │ │ ├── BinDataFieldPath.php │ │ │ ├── BinarySizeOperator.php │ │ │ ├── BitAndOperator.php │ │ │ ├── BitNotOperator.php │ │ │ ├── BitOrOperator.php │ │ │ ├── BitXorOperator.php │ │ │ ├── BoolFieldPath.php │ │ │ ├── BsonSizeOperator.php │ │ │ ├── CaseOperator.php │ │ │ ├── CeilOperator.php │ │ │ ├── CmpOperator.php │ │ │ ├── ConcatArraysOperator.php │ │ │ ├── ConcatOperator.php │ │ │ ├── CondOperator.php │ │ │ ├── ConvertOperator.php │ │ │ ├── CosOperator.php │ │ │ ├── CoshOperator.php │ │ │ ├── DateAddOperator.php │ │ │ ├── DateDiffOperator.php │ │ │ ├── DateFieldPath.php │ │ │ ├── DateFromPartsOperator.php │ │ │ ├── DateFromStringOperator.php │ │ │ ├── DateSubtractOperator.php │ │ │ ├── DateToPartsOperator.php │ │ │ ├── DateToStringOperator.php │ │ │ ├── DateTruncOperator.php │ │ │ ├── DayOfMonthOperator.php │ │ │ ├── DayOfWeekOperator.php │ │ │ ├── DayOfYearOperator.php │ │ │ ├── DecimalFieldPath.php │ │ │ ├── DegreesToRadiansOperator.php │ │ │ ├── DivideOperator.php │ │ │ ├── DoubleFieldPath.php │ │ │ ├── EqOperator.php │ │ │ ├── ExpOperator.php │ │ │ ├── ExpressionFactoryTrait.php │ │ │ ├── FactoryTrait.php │ │ │ ├── FieldPath.php │ │ │ ├── FilterOperator.php │ │ │ ├── FirstNOperator.php │ │ │ ├── FirstOperator.php │ │ │ ├── FloorOperator.php │ │ │ ├── FunctionOperator.php │ │ │ ├── GetFieldOperator.php │ │ │ ├── GtOperator.php │ │ │ ├── GteOperator.php │ │ │ ├── HourOperator.php │ │ │ ├── IfNullOperator.php │ │ │ ├── InOperator.php │ │ │ ├── IndexOfArrayOperator.php │ │ │ ├── IndexOfBytesOperator.php │ │ │ ├── IndexOfCPOperator.php │ │ │ ├── IntFieldPath.php │ │ │ ├── IsArrayOperator.php │ │ │ ├── IsNumberOperator.php │ │ │ ├── IsoDayOfWeekOperator.php │ │ │ ├── IsoWeekOperator.php │ │ │ ├── IsoWeekYearOperator.php │ │ │ ├── JavascriptFieldPath.php │ │ │ ├── LastNOperator.php │ │ │ ├── LastOperator.php │ │ │ ├── LetOperator.php │ │ │ ├── LiteralOperator.php │ │ │ ├── LnOperator.php │ │ │ ├── Log10Operator.php │ │ │ ├── LogOperator.php │ │ │ ├── LongFieldPath.php │ │ │ ├── LtOperator.php │ │ │ ├── LteOperator.php │ │ │ ├── LtrimOperator.php │ │ │ ├── MapOperator.php │ │ │ ├── MaxNOperator.php │ │ │ ├── MaxOperator.php │ │ │ ├── MedianOperator.php │ │ │ ├── MergeObjectsOperator.php │ │ │ ├── MetaOperator.php │ │ │ ├── MillisecondOperator.php │ │ │ ├── MinNOperator.php │ │ │ ├── MinOperator.php │ │ │ ├── MinuteOperator.php │ │ │ ├── ModOperator.php │ │ │ ├── MonthOperator.php │ │ │ ├── MultiplyOperator.php │ │ │ ├── NeOperator.php │ │ │ ├── NotOperator.php │ │ │ ├── NullFieldPath.php │ │ │ ├── NumberFieldPath.php │ │ │ ├── ObjectFieldPath.php │ │ │ ├── ObjectIdFieldPath.php │ │ │ ├── ObjectToArrayOperator.php │ │ │ ├── OrOperator.php │ │ │ ├── PercentileOperator.php │ │ │ ├── PowOperator.php │ │ │ ├── RadiansToDegreesOperator.php │ │ │ ├── RandOperator.php │ │ │ ├── RangeOperator.php │ │ │ ├── ReduceOperator.php │ │ │ ├── RegexFieldPath.php │ │ │ ├── RegexFindAllOperator.php │ │ │ ├── RegexFindOperator.php │ │ │ ├── RegexMatchOperator.php │ │ │ ├── ReplaceAllOperator.php │ │ │ ├── ReplaceOneOperator.php │ │ │ ├── ResolvesToAny.php │ │ │ ├── ResolvesToArray.php │ │ │ ├── ResolvesToBinData.php │ │ │ ├── ResolvesToBool.php │ │ │ ├── ResolvesToDate.php │ │ │ ├── ResolvesToDecimal.php │ │ │ ├── ResolvesToDouble.php │ │ │ ├── ResolvesToInt.php │ │ │ ├── ResolvesToJavascript.php │ │ │ ├── ResolvesToLong.php │ │ │ ├── ResolvesToNull.php │ │ │ ├── ResolvesToNumber.php │ │ │ ├── ResolvesToObject.php │ │ │ ├── ResolvesToObjectId.php │ │ │ ├── ResolvesToRegex.php │ │ │ ├── ResolvesToString.php │ │ │ ├── ResolvesToTimestamp.php │ │ │ ├── ReverseArrayOperator.php │ │ │ ├── RoundOperator.php │ │ │ ├── RtrimOperator.php │ │ │ ├── SecondOperator.php │ │ │ ├── SetDifferenceOperator.php │ │ │ ├── SetEqualsOperator.php │ │ │ ├── SetFieldOperator.php │ │ │ ├── SetIntersectionOperator.php │ │ │ ├── SetIsSubsetOperator.php │ │ │ ├── SetUnionOperator.php │ │ │ ├── SinOperator.php │ │ │ ├── SinhOperator.php │ │ │ ├── SizeOperator.php │ │ │ ├── SliceOperator.php │ │ │ ├── SortArrayOperator.php │ │ │ ├── SplitOperator.php │ │ │ ├── SqrtOperator.php │ │ │ ├── StdDevPopOperator.php │ │ │ ├── StdDevSampOperator.php │ │ │ ├── StrLenBytesOperator.php │ │ │ ├── StrLenCPOperator.php │ │ │ ├── StrcasecmpOperator.php │ │ │ ├── StringFieldPath.php │ │ │ ├── SubstrBytesOperator.php │ │ │ ├── SubstrCPOperator.php │ │ │ ├── SubstrOperator.php │ │ │ ├── SubtractOperator.php │ │ │ ├── SumOperator.php │ │ │ ├── SwitchOperator.php │ │ │ ├── TanOperator.php │ │ │ ├── TanhOperator.php │ │ │ ├── TimestampFieldPath.php │ │ │ ├── ToBoolOperator.php │ │ │ ├── ToDateOperator.php │ │ │ ├── ToDecimalOperator.php │ │ │ ├── ToDoubleOperator.php │ │ │ ├── ToHashedIndexKeyOperator.php │ │ │ ├── ToIntOperator.php │ │ │ ├── ToLongOperator.php │ │ │ ├── ToLowerOperator.php │ │ │ ├── ToObjectIdOperator.php │ │ │ ├── ToStringOperator.php │ │ │ ├── ToUpperOperator.php │ │ │ ├── TrimOperator.php │ │ │ ├── TruncOperator.php │ │ │ ├── TsIncrementOperator.php │ │ │ ├── TsSecondOperator.php │ │ │ ├── TypeOperator.php │ │ │ ├── UnsetFieldOperator.php │ │ │ ├── Variable.php │ │ │ ├── WeekOperator.php │ │ │ ├── YearOperator.php │ │ │ └── ZipOperator.php │ │ ├── Pipeline.php │ │ ├── Query.php │ │ ├── Query │ │ │ ├── AllOperator.php │ │ │ ├── AndOperator.php │ │ │ ├── BitsAllClearOperator.php │ │ │ ├── BitsAllSetOperator.php │ │ │ ├── BitsAnyClearOperator.php │ │ │ ├── BitsAnySetOperator.php │ │ │ ├── BoxOperator.php │ │ │ ├── CenterOperator.php │ │ │ ├── CenterSphereOperator.php │ │ │ ├── CommentOperator.php │ │ │ ├── ElemMatchOperator.php │ │ │ ├── EqOperator.php │ │ │ ├── ExistsOperator.php │ │ │ ├── ExprOperator.php │ │ │ ├── FactoryTrait.php │ │ │ ├── GeoIntersectsOperator.php │ │ │ ├── GeoWithinOperator.php │ │ │ ├── GeometryOperator.php │ │ │ ├── GtOperator.php │ │ │ ├── GteOperator.php │ │ │ ├── InOperator.php │ │ │ ├── JsonSchemaOperator.php │ │ │ ├── LtOperator.php │ │ │ ├── LteOperator.php │ │ │ ├── MaxDistanceOperator.php │ │ │ ├── MinDistanceOperator.php │ │ │ ├── ModOperator.php │ │ │ ├── NeOperator.php │ │ │ ├── NearOperator.php │ │ │ ├── NearSphereOperator.php │ │ │ ├── NinOperator.php │ │ │ ├── NorOperator.php │ │ │ ├── NotOperator.php │ │ │ ├── OrOperator.php │ │ │ ├── PolygonOperator.php │ │ │ ├── RandOperator.php │ │ │ ├── RegexOperator.php │ │ │ ├── SampleRateOperator.php │ │ │ ├── SizeOperator.php │ │ │ ├── TextOperator.php │ │ │ ├── TypeOperator.php │ │ │ └── WhereOperator.php │ │ ├── Search.php │ │ ├── Search │ │ │ ├── AutocompleteOperator.php │ │ │ ├── CompoundOperator.php │ │ │ ├── EmbeddedDocumentOperator.php │ │ │ ├── EqualsOperator.php │ │ │ ├── ExistsOperator.php │ │ │ ├── FacetOperator.php │ │ │ ├── FactoryTrait.php │ │ │ ├── GeoShapeOperator.php │ │ │ ├── GeoWithinOperator.php │ │ │ ├── InOperator.php │ │ │ ├── MoreLikeThisOperator.php │ │ │ ├── NearOperator.php │ │ │ ├── PhraseOperator.php │ │ │ ├── QueryStringOperator.php │ │ │ ├── RangeOperator.php │ │ │ ├── RegexOperator.php │ │ │ ├── TextOperator.php │ │ │ └── WildcardOperator.php │ │ ├── Stage.php │ │ ├── Stage │ │ │ ├── AddFieldsStage.php │ │ │ ├── BucketAutoStage.php │ │ │ ├── BucketStage.php │ │ │ ├── ChangeStreamSplitLargeEventStage.php │ │ │ ├── ChangeStreamStage.php │ │ │ ├── CollStatsStage.php │ │ │ ├── CountStage.php │ │ │ ├── CurrentOpStage.php │ │ │ ├── DensifyStage.php │ │ │ ├── DocumentsStage.php │ │ │ ├── FacetStage.php │ │ │ ├── FactoryTrait.php │ │ │ ├── FillStage.php │ │ │ ├── FluentFactoryTrait.php │ │ │ ├── GeoNearStage.php │ │ │ ├── GraphLookupStage.php │ │ │ ├── GroupStage.php │ │ │ ├── IndexStatsStage.php │ │ │ ├── LimitStage.php │ │ │ ├── ListLocalSessionsStage.php │ │ │ ├── ListSampledQueriesStage.php │ │ │ ├── ListSearchIndexesStage.php │ │ │ ├── ListSessionsStage.php │ │ │ ├── LookupStage.php │ │ │ ├── MatchStage.php │ │ │ ├── MergeStage.php │ │ │ ├── OutStage.php │ │ │ ├── PlanCacheStatsStage.php │ │ │ ├── ProjectStage.php │ │ │ ├── RedactStage.php │ │ │ ├── ReplaceRootStage.php │ │ │ ├── ReplaceWithStage.php │ │ │ ├── SampleStage.php │ │ │ ├── SearchMetaStage.php │ │ │ ├── SearchStage.php │ │ │ ├── SetStage.php │ │ │ ├── SetWindowFieldsStage.php │ │ │ ├── ShardedDataDistributionStage.php │ │ │ ├── SkipStage.php │ │ │ ├── SortByCountStage.php │ │ │ ├── SortStage.php │ │ │ ├── UnionWithStage.php │ │ │ ├── UnsetStage.php │ │ │ ├── UnwindStage.php │ │ │ └── VectorSearchStage.php │ │ ├── Type │ │ │ ├── AccumulatorInterface.php │ │ │ ├── CombinedFieldQuery.php │ │ │ ├── DictionaryInterface.php │ │ │ ├── Encode.php │ │ │ ├── ExpressionInterface.php │ │ │ ├── FieldPathInterface.php │ │ │ ├── FieldQueryInterface.php │ │ │ ├── GeometryInterface.php │ │ │ ├── OperatorExpressionInterface.php │ │ │ ├── OperatorInterface.php │ │ │ ├── Optional.php │ │ │ ├── OutputWindow.php │ │ │ ├── QueryInterface.php │ │ │ ├── QueryObject.php │ │ │ ├── SearchOperatorInterface.php │ │ │ ├── Sort.php │ │ │ ├── StageInterface.php │ │ │ ├── SwitchBranchInterface.php │ │ │ ├── TimeUnit.php │ │ │ └── WindowInterface.php │ │ └── Variable.php │ │ ├── BulkWriteResult.php │ │ ├── ChangeStream.php │ │ ├── Client.php │ │ ├── ClientBulkWrite.php │ │ ├── Codec │ │ ├── Codec.php │ │ ├── DecodeIfSupported.php │ │ ├── Decoder.php │ │ ├── DocumentCodec.php │ │ ├── EncodeIfSupported.php │ │ └── Encoder.php │ │ ├── Collection.php │ │ ├── Command │ │ ├── ListCollections.php │ │ └── ListDatabases.php │ │ ├── Database.php │ │ ├── DeleteResult.php │ │ ├── Exception │ │ ├── BadMethodCallException.php │ │ ├── CreateEncryptedCollectionException.php │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ ├── ResumeTokenException.php │ │ ├── RuntimeException.php │ │ ├── UnexpectedValueException.php │ │ ├── UnsupportedException.php │ │ └── UnsupportedValueException.php │ │ ├── GridFS │ │ ├── Bucket.php │ │ ├── CollectionWrapper.php │ │ ├── Exception │ │ │ ├── CorruptFileException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── LogicException.php │ │ │ └── StreamException.php │ │ ├── ReadableStream.php │ │ ├── StreamWrapper.php │ │ └── WritableStream.php │ │ ├── InsertManyResult.php │ │ ├── InsertOneResult.php │ │ ├── Model │ │ ├── BSONArray.php │ │ ├── BSONDocument.php │ │ ├── BSONIterator.php │ │ ├── CachingIterator.php │ │ ├── CallbackIterator.php │ │ ├── ChangeStreamIterator.php │ │ ├── CodecCursor.php │ │ ├── CollectionInfo.php │ │ ├── DatabaseInfo.php │ │ ├── IndexInfo.php │ │ ├── IndexInput.php │ │ └── SearchIndexInput.php │ │ ├── Operation │ │ ├── Aggregate.php │ │ ├── BulkWrite.php │ │ ├── ClientBulkWriteCommand.php │ │ ├── Count.php │ │ ├── CountDocuments.php │ │ ├── CreateCollection.php │ │ ├── CreateEncryptedCollection.php │ │ ├── CreateIndexes.php │ │ ├── CreateSearchIndexes.php │ │ ├── DatabaseCommand.php │ │ ├── Delete.php │ │ ├── DeleteMany.php │ │ ├── DeleteOne.php │ │ ├── Distinct.php │ │ ├── DropCollection.php │ │ ├── DropDatabase.php │ │ ├── DropEncryptedCollection.php │ │ ├── DropIndexes.php │ │ ├── DropSearchIndex.php │ │ ├── EstimatedDocumentCount.php │ │ ├── Explain.php │ │ ├── Explainable.php │ │ ├── Find.php │ │ ├── FindAndModify.php │ │ ├── FindOne.php │ │ ├── FindOneAndDelete.php │ │ ├── FindOneAndReplace.php │ │ ├── FindOneAndUpdate.php │ │ ├── InsertMany.php │ │ ├── InsertOne.php │ │ ├── ListCollectionNames.php │ │ ├── ListCollections.php │ │ ├── ListDatabaseNames.php │ │ ├── ListDatabases.php │ │ ├── ListIndexes.php │ │ ├── ListSearchIndexes.php │ │ ├── ModifyCollection.php │ │ ├── RenameCollection.php │ │ ├── ReplaceOne.php │ │ ├── Update.php │ │ ├── UpdateMany.php │ │ ├── UpdateOne.php │ │ ├── UpdateSearchIndex.php │ │ ├── Watch.php │ │ └── WithTransaction.php │ │ ├── PsrLogAdapter.php │ │ ├── UpdateResult.php │ │ └── functions.php │ ├── mtdowling │ └── jmespath.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── composer.json │ │ └── src │ │ ├── AstRuntime.php │ │ ├── CompilerRuntime.php │ │ ├── DebugRuntime.php │ │ ├── Env.php │ │ ├── FnDispatcher.php │ │ ├── JmesPath.php │ │ ├── Lexer.php │ │ ├── Parser.php │ │ ├── SyntaxErrorException.php │ │ ├── TreeCompiler.php │ │ ├── TreeInterpreter.php │ │ └── Utils.php │ ├── nikic │ └── php-parser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ └── PhpParser │ │ ├── Builder.php │ │ ├── Builder │ │ ├── ClassConst.php │ │ ├── Class_.php │ │ ├── Declaration.php │ │ ├── EnumCase.php │ │ ├── Enum_.php │ │ ├── FunctionLike.php │ │ ├── Function_.php │ │ ├── Interface_.php │ │ ├── Method.php │ │ ├── Namespace_.php │ │ ├── Param.php │ │ ├── Property.php │ │ ├── TraitUse.php │ │ ├── TraitUseAdaptation.php │ │ ├── Trait_.php │ │ └── Use_.php │ │ ├── BuilderFactory.php │ │ ├── BuilderHelpers.php │ │ ├── Comment.php │ │ ├── Comment │ │ └── Doc.php │ │ ├── ConstExprEvaluationException.php │ │ ├── ConstExprEvaluator.php │ │ ├── Error.php │ │ ├── ErrorHandler.php │ │ ├── ErrorHandler │ │ ├── Collecting.php │ │ └── Throwing.php │ │ ├── Internal │ │ ├── DiffElem.php │ │ ├── Differ.php │ │ ├── PrintableNewAnonClassNode.php │ │ ├── TokenPolyfill.php │ │ └── TokenStream.php │ │ ├── JsonDecoder.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── Emulative.php │ │ └── TokenEmulator │ │ │ ├── AsymmetricVisibilityTokenEmulator.php │ │ │ ├── AttributeEmulator.php │ │ │ ├── EnumTokenEmulator.php │ │ │ ├── ExplicitOctalEmulator.php │ │ │ ├── KeywordEmulator.php │ │ │ ├── MatchTokenEmulator.php │ │ │ ├── NullsafeTokenEmulator.php │ │ │ ├── PipeOperatorEmulator.php │ │ │ ├── PropertyTokenEmulator.php │ │ │ ├── ReadonlyFunctionTokenEmulator.php │ │ │ ├── ReadonlyTokenEmulator.php │ │ │ ├── ReverseEmulator.php │ │ │ ├── TokenEmulator.php │ │ │ └── VoidCastEmulator.php │ │ ├── Modifiers.php │ │ ├── NameContext.php │ │ ├── Node.php │ │ ├── Node │ │ ├── Arg.php │ │ ├── ArrayItem.php │ │ ├── Attribute.php │ │ ├── AttributeGroup.php │ │ ├── ClosureUse.php │ │ ├── ComplexType.php │ │ ├── Const_.php │ │ ├── DeclareItem.php │ │ ├── Expr.php │ │ ├── Expr │ │ │ ├── ArrayDimFetch.php │ │ │ ├── ArrayItem.php │ │ │ ├── Array_.php │ │ │ ├── ArrowFunction.php │ │ │ ├── Assign.php │ │ │ ├── AssignOp.php │ │ │ ├── AssignOp │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Div.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Pow.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ └── ShiftRight.php │ │ │ ├── AssignRef.php │ │ │ ├── BinaryOp.php │ │ │ ├── BinaryOp │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── BooleanAnd.php │ │ │ │ ├── BooleanOr.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Div.php │ │ │ │ ├── Equal.php │ │ │ │ ├── Greater.php │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ ├── Identical.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── NotEqual.php │ │ │ │ ├── NotIdentical.php │ │ │ │ ├── Pipe.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Pow.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ ├── ShiftRight.php │ │ │ │ ├── Smaller.php │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ └── Spaceship.php │ │ │ ├── BitwiseNot.php │ │ │ ├── BooleanNot.php │ │ │ ├── CallLike.php │ │ │ ├── Cast.php │ │ │ ├── Cast │ │ │ │ ├── Array_.php │ │ │ │ ├── Bool_.php │ │ │ │ ├── Double.php │ │ │ │ ├── Int_.php │ │ │ │ ├── Object_.php │ │ │ │ ├── String_.php │ │ │ │ ├── Unset_.php │ │ │ │ └── Void_.php │ │ │ ├── ClassConstFetch.php │ │ │ ├── Clone_.php │ │ │ ├── Closure.php │ │ │ ├── ClosureUse.php │ │ │ ├── ConstFetch.php │ │ │ ├── Empty_.php │ │ │ ├── Error.php │ │ │ ├── ErrorSuppress.php │ │ │ ├── Eval_.php │ │ │ ├── Exit_.php │ │ │ ├── FuncCall.php │ │ │ ├── Include_.php │ │ │ ├── Instanceof_.php │ │ │ ├── Isset_.php │ │ │ ├── List_.php │ │ │ ├── Match_.php │ │ │ ├── MethodCall.php │ │ │ ├── New_.php │ │ │ ├── NullsafeMethodCall.php │ │ │ ├── NullsafePropertyFetch.php │ │ │ ├── PostDec.php │ │ │ ├── PostInc.php │ │ │ ├── PreDec.php │ │ │ ├── PreInc.php │ │ │ ├── Print_.php │ │ │ ├── PropertyFetch.php │ │ │ ├── ShellExec.php │ │ │ ├── StaticCall.php │ │ │ ├── StaticPropertyFetch.php │ │ │ ├── Ternary.php │ │ │ ├── Throw_.php │ │ │ ├── UnaryMinus.php │ │ │ ├── UnaryPlus.php │ │ │ ├── Variable.php │ │ │ ├── YieldFrom.php │ │ │ └── Yield_.php │ │ ├── FunctionLike.php │ │ ├── Identifier.php │ │ ├── InterpolatedStringPart.php │ │ ├── IntersectionType.php │ │ ├── MatchArm.php │ │ ├── Name.php │ │ ├── Name │ │ │ ├── FullyQualified.php │ │ │ └── Relative.php │ │ ├── NullableType.php │ │ ├── Param.php │ │ ├── PropertyHook.php │ │ ├── PropertyItem.php │ │ ├── Scalar.php │ │ ├── Scalar │ │ │ ├── DNumber.php │ │ │ ├── Encapsed.php │ │ │ ├── EncapsedStringPart.php │ │ │ ├── Float_.php │ │ │ ├── Int_.php │ │ │ ├── InterpolatedString.php │ │ │ ├── LNumber.php │ │ │ ├── MagicConst.php │ │ │ ├── MagicConst │ │ │ │ ├── Class_.php │ │ │ │ ├── Dir.php │ │ │ │ ├── File.php │ │ │ │ ├── Function_.php │ │ │ │ ├── Line.php │ │ │ │ ├── Method.php │ │ │ │ ├── Namespace_.php │ │ │ │ ├── Property.php │ │ │ │ └── Trait_.php │ │ │ └── String_.php │ │ ├── StaticVar.php │ │ ├── Stmt.php │ │ ├── Stmt │ │ │ ├── Block.php │ │ │ ├── Break_.php │ │ │ ├── Case_.php │ │ │ ├── Catch_.php │ │ │ ├── ClassConst.php │ │ │ ├── ClassLike.php │ │ │ ├── ClassMethod.php │ │ │ ├── Class_.php │ │ │ ├── Const_.php │ │ │ ├── Continue_.php │ │ │ ├── DeclareDeclare.php │ │ │ ├── Declare_.php │ │ │ ├── Do_.php │ │ │ ├── Echo_.php │ │ │ ├── ElseIf_.php │ │ │ ├── Else_.php │ │ │ ├── EnumCase.php │ │ │ ├── Enum_.php │ │ │ ├── Expression.php │ │ │ ├── Finally_.php │ │ │ ├── For_.php │ │ │ ├── Foreach_.php │ │ │ ├── Function_.php │ │ │ ├── Global_.php │ │ │ ├── Goto_.php │ │ │ ├── GroupUse.php │ │ │ ├── HaltCompiler.php │ │ │ ├── If_.php │ │ │ ├── InlineHTML.php │ │ │ ├── Interface_.php │ │ │ ├── Label.php │ │ │ ├── Namespace_.php │ │ │ ├── Nop.php │ │ │ ├── Property.php │ │ │ ├── PropertyProperty.php │ │ │ ├── Return_.php │ │ │ ├── StaticVar.php │ │ │ ├── Static_.php │ │ │ ├── Switch_.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── TraitUseAdaptation │ │ │ │ ├── Alias.php │ │ │ │ └── Precedence.php │ │ │ ├── Trait_.php │ │ │ ├── TryCatch.php │ │ │ ├── Unset_.php │ │ │ ├── UseUse.php │ │ │ ├── Use_.php │ │ │ └── While_.php │ │ ├── UnionType.php │ │ ├── UseItem.php │ │ ├── VarLikeIdentifier.php │ │ └── VariadicPlaceholder.php │ │ ├── NodeAbstract.php │ │ ├── NodeDumper.php │ │ ├── NodeFinder.php │ │ ├── NodeTraverser.php │ │ ├── NodeTraverserInterface.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ ├── CloningVisitor.php │ │ ├── CommentAnnotatingVisitor.php │ │ ├── FindingVisitor.php │ │ ├── FirstFindingVisitor.php │ │ ├── NameResolver.php │ │ ├── NodeConnectingVisitor.php │ │ └── ParentConnectingVisitor.php │ │ ├── NodeVisitorAbstract.php │ │ ├── Parser.php │ │ ├── Parser │ │ ├── Php7.php │ │ └── Php8.php │ │ ├── ParserAbstract.php │ │ ├── ParserFactory.php │ │ ├── PhpVersion.php │ │ ├── PrettyPrinter.php │ │ ├── PrettyPrinter │ │ └── Standard.php │ │ ├── PrettyPrinterAbstract.php │ │ ├── Token.php │ │ └── compatibility_tokens.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 │ ├── phpmailer │ └── phpmailer │ │ ├── COMMITMENT │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── SMTPUTF8.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── get_oauth_token.php │ │ ├── language │ │ ├── phpmailer.lang-af.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-as.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-bn.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-hy.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-ku.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-mn.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-si.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sr_latn.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-ur.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ │ └── src │ │ ├── DSNConfigurator.php │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── OAuthTokenProvider.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php │ ├── 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 │ ├── phpstan │ └── phpdoc-parser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ └── src │ │ ├── Ast │ │ ├── AbstractNodeVisitor.php │ │ ├── Attribute.php │ │ ├── Comment.php │ │ ├── ConstExpr │ │ │ ├── ConstExprArrayItemNode.php │ │ │ ├── ConstExprArrayNode.php │ │ │ ├── ConstExprFalseNode.php │ │ │ ├── ConstExprFloatNode.php │ │ │ ├── ConstExprIntegerNode.php │ │ │ ├── ConstExprNode.php │ │ │ ├── ConstExprNullNode.php │ │ │ ├── ConstExprStringNode.php │ │ │ ├── ConstExprTrueNode.php │ │ │ ├── ConstFetchNode.php │ │ │ └── DoctrineConstExprStringNode.php │ │ ├── Node.php │ │ ├── NodeAttributes.php │ │ ├── NodeTraverser.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ │ └── CloningVisitor.php │ │ ├── PhpDoc │ │ │ ├── AssertTagMethodValueNode.php │ │ │ ├── AssertTagPropertyValueNode.php │ │ │ ├── AssertTagValueNode.php │ │ │ ├── DeprecatedTagValueNode.php │ │ │ ├── Doctrine │ │ │ │ ├── DoctrineAnnotation.php │ │ │ │ ├── DoctrineArgument.php │ │ │ │ ├── DoctrineArray.php │ │ │ │ ├── DoctrineArrayItem.php │ │ │ │ └── DoctrineTagValueNode.php │ │ │ ├── ExtendsTagValueNode.php │ │ │ ├── GenericTagValueNode.php │ │ │ ├── ImplementsTagValueNode.php │ │ │ ├── InvalidTagValueNode.php │ │ │ ├── MethodTagValueNode.php │ │ │ ├── MethodTagValueParameterNode.php │ │ │ ├── MixinTagValueNode.php │ │ │ ├── ParamClosureThisTagValueNode.php │ │ │ ├── ParamImmediatelyInvokedCallableTagValueNode.php │ │ │ ├── ParamLaterInvokedCallableTagValueNode.php │ │ │ ├── ParamOutTagValueNode.php │ │ │ ├── ParamTagValueNode.php │ │ │ ├── PhpDocChildNode.php │ │ │ ├── PhpDocNode.php │ │ │ ├── PhpDocTagNode.php │ │ │ ├── PhpDocTagValueNode.php │ │ │ ├── PhpDocTextNode.php │ │ │ ├── PropertyTagValueNode.php │ │ │ ├── PureUnlessCallableIsImpureTagValueNode.php │ │ │ ├── RequireExtendsTagValueNode.php │ │ │ ├── RequireImplementsTagValueNode.php │ │ │ ├── ReturnTagValueNode.php │ │ │ ├── SealedTagValueNode.php │ │ │ ├── SelfOutTagValueNode.php │ │ │ ├── TemplateTagValueNode.php │ │ │ ├── ThrowsTagValueNode.php │ │ │ ├── TypeAliasImportTagValueNode.php │ │ │ ├── TypeAliasTagValueNode.php │ │ │ ├── TypelessParamTagValueNode.php │ │ │ ├── UsesTagValueNode.php │ │ │ └── VarTagValueNode.php │ │ └── Type │ │ │ ├── ArrayShapeItemNode.php │ │ │ ├── ArrayShapeNode.php │ │ │ ├── ArrayShapeUnsealedTypeNode.php │ │ │ ├── ArrayTypeNode.php │ │ │ ├── CallableTypeNode.php │ │ │ ├── CallableTypeParameterNode.php │ │ │ ├── ConditionalTypeForParameterNode.php │ │ │ ├── ConditionalTypeNode.php │ │ │ ├── ConstTypeNode.php │ │ │ ├── GenericTypeNode.php │ │ │ ├── IdentifierTypeNode.php │ │ │ ├── IntersectionTypeNode.php │ │ │ ├── InvalidTypeNode.php │ │ │ ├── NullableTypeNode.php │ │ │ ├── ObjectShapeItemNode.php │ │ │ ├── ObjectShapeNode.php │ │ │ ├── OffsetAccessTypeNode.php │ │ │ ├── ThisTypeNode.php │ │ │ ├── TypeNode.php │ │ │ └── UnionTypeNode.php │ │ ├── Lexer │ │ └── Lexer.php │ │ ├── Parser │ │ ├── ConstExprParser.php │ │ ├── ParserException.php │ │ ├── PhpDocParser.php │ │ ├── StringUnescaper.php │ │ ├── TokenIterator.php │ │ └── TypeParser.php │ │ ├── ParserConfig.php │ │ └── Printer │ │ ├── DiffElem.php │ │ ├── Differ.php │ │ └── Printer.php │ ├── psr │ ├── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.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 │ │ └── 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 │ ├── robthree │ └── twofactorauth │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ ├── Algorithm.php │ │ ├── Providers │ │ ├── Qr │ │ │ ├── BaconQrCodeProvider.php │ │ │ ├── BaseHTTPQRCodeProvider.php │ │ │ ├── EndroidQrCodeProvider.php │ │ │ ├── EndroidQrCodeWithLogoProvider.php │ │ │ ├── GoogleChartsQrCodeProvider.php │ │ │ ├── HandlesDataUri.php │ │ │ ├── IQRCodeProvider.php │ │ │ ├── ImageChartsQRCodeProvider.php │ │ │ ├── QRException.php │ │ │ ├── QRServerProvider.php │ │ │ └── QRicketProvider.php │ │ ├── Rng │ │ │ ├── CSRNGProvider.php │ │ │ ├── IRNGProvider.php │ │ │ └── RNGException.php │ │ └── Time │ │ │ ├── HttpTimeProvider.php │ │ │ ├── ITimeProvider.php │ │ │ ├── LocalMachineTimeProvider.php │ │ │ ├── NTPTimeProvider.php │ │ │ └── TimeException.php │ │ ├── TwoFactorAuth.php │ │ └── TwoFactorAuthException.php │ ├── symfony │ ├── console │ │ ├── Application.php │ │ ├── Attribute │ │ │ └── AsCommand.php │ │ ├── CHANGELOG.md │ │ ├── CI │ │ │ └── GithubActionReporter.php │ │ ├── Color.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── CompleteCommand.php │ │ │ ├── DumpCompletionCommand.php │ │ │ ├── HelpCommand.php │ │ │ ├── LazyCommand.php │ │ │ ├── ListCommand.php │ │ │ ├── LockableTrait.php │ │ │ └── SignalableCommandInterface.php │ │ ├── CommandLoader │ │ │ ├── CommandLoaderInterface.php │ │ │ ├── ContainerCommandLoader.php │ │ │ └── FactoryCommandLoader.php │ │ ├── Completion │ │ │ ├── CompletionInput.php │ │ │ ├── CompletionSuggestions.php │ │ │ ├── Output │ │ │ │ ├── BashCompletionOutput.php │ │ │ │ └── CompletionOutputInterface.php │ │ │ └── Suggestion.php │ │ ├── ConsoleEvents.php │ │ ├── Cursor.php │ │ ├── DependencyInjection │ │ │ └── AddConsoleCommandPass.php │ │ ├── Descriptor │ │ │ ├── ApplicationDescription.php │ │ │ ├── Descriptor.php │ │ │ ├── DescriptorInterface.php │ │ │ ├── JsonDescriptor.php │ │ │ ├── MarkdownDescriptor.php │ │ │ ├── TextDescriptor.php │ │ │ └── XmlDescriptor.php │ │ ├── Event │ │ │ ├── ConsoleCommandEvent.php │ │ │ ├── ConsoleErrorEvent.php │ │ │ ├── ConsoleEvent.php │ │ │ ├── ConsoleSignalEvent.php │ │ │ └── ConsoleTerminateEvent.php │ │ ├── EventListener │ │ │ └── ErrorListener.php │ │ ├── Exception │ │ │ ├── CommandNotFoundException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidOptionException.php │ │ │ ├── LogicException.php │ │ │ ├── MissingInputException.php │ │ │ ├── NamespaceNotFoundException.php │ │ │ └── RuntimeException.php │ │ ├── Formatter │ │ │ ├── NullOutputFormatter.php │ │ │ ├── NullOutputFormatterStyle.php │ │ │ ├── OutputFormatter.php │ │ │ ├── OutputFormatterInterface.php │ │ │ ├── OutputFormatterStyle.php │ │ │ ├── OutputFormatterStyleInterface.php │ │ │ ├── OutputFormatterStyleStack.php │ │ │ └── WrappableOutputFormatterInterface.php │ │ ├── Helper │ │ │ ├── DebugFormatterHelper.php │ │ │ ├── DescriptorHelper.php │ │ │ ├── Dumper.php │ │ │ ├── FormatterHelper.php │ │ │ ├── Helper.php │ │ │ ├── HelperInterface.php │ │ │ ├── HelperSet.php │ │ │ ├── InputAwareHelper.php │ │ │ ├── ProcessHelper.php │ │ │ ├── ProgressBar.php │ │ │ ├── ProgressIndicator.php │ │ │ ├── QuestionHelper.php │ │ │ ├── SymfonyQuestionHelper.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableCellStyle.php │ │ │ ├── TableRows.php │ │ │ ├── TableSeparator.php │ │ │ └── TableStyle.php │ │ ├── Input │ │ │ ├── ArgvInput.php │ │ │ ├── ArrayInput.php │ │ │ ├── Input.php │ │ │ ├── InputArgument.php │ │ │ ├── InputAwareInterface.php │ │ │ ├── InputDefinition.php │ │ │ ├── InputInterface.php │ │ │ ├── InputOption.php │ │ │ ├── StreamableInputInterface.php │ │ │ └── StringInput.php │ │ ├── LICENSE │ │ ├── Logger │ │ │ └── ConsoleLogger.php │ │ ├── Output │ │ │ ├── BufferedOutput.php │ │ │ ├── ConsoleOutput.php │ │ │ ├── ConsoleOutputInterface.php │ │ │ ├── ConsoleSectionOutput.php │ │ │ ├── NullOutput.php │ │ │ ├── Output.php │ │ │ ├── OutputInterface.php │ │ │ ├── StreamOutput.php │ │ │ └── TrimmedBufferOutput.php │ │ ├── Question │ │ │ ├── ChoiceQuestion.php │ │ │ ├── ConfirmationQuestion.php │ │ │ └── Question.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── completion.bash │ │ ├── SignalRegistry │ │ │ └── SignalRegistry.php │ │ ├── SingleCommandApplication.php │ │ ├── Style │ │ │ ├── OutputStyle.php │ │ │ ├── StyleInterface.php │ │ │ └── SymfonyStyle.php │ │ ├── Terminal.php │ │ ├── Tester │ │ │ ├── ApplicationTester.php │ │ │ ├── CommandCompletionTester.php │ │ │ ├── CommandTester.php │ │ │ ├── Constraint │ │ │ │ └── CommandIsSuccessful.php │ │ │ └── TesterTrait.php │ │ └── composer.json │ ├── deprecation-contracts │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── function.php │ ├── finder │ │ ├── CHANGELOG.md │ │ ├── Comparator │ │ │ ├── Comparator.php │ │ │ ├── DateComparator.php │ │ │ └── NumberComparator.php │ │ ├── Exception │ │ │ ├── AccessDeniedException.php │ │ │ └── DirectoryNotFoundException.php │ │ ├── Finder.php │ │ ├── Gitignore.php │ │ ├── Glob.php │ │ ├── Iterator │ │ │ ├── CustomFilterIterator.php │ │ │ ├── DateRangeFilterIterator.php │ │ │ ├── DepthRangeFilterIterator.php │ │ │ ├── ExcludeDirectoryFilterIterator.php │ │ │ ├── FileTypeFilterIterator.php │ │ │ ├── FilecontentFilterIterator.php │ │ │ ├── FilenameFilterIterator.php │ │ │ ├── LazyIterator.php │ │ │ ├── MultiplePcreFilterIterator.php │ │ │ ├── PathFilterIterator.php │ │ │ ├── RecursiveDirectoryIterator.php │ │ │ ├── SizeRangeFilterIterator.php │ │ │ ├── SortableIterator.php │ │ │ └── VcsIgnoredFilterIterator.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SplFileInfo.php │ │ └── composer.json │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-grapheme │ │ ├── Grapheme.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-normalizer │ │ ├── LICENSE │ │ ├── Normalizer.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── stubs │ │ │ │ └── Normalizer.php │ │ │ └── unidata │ │ │ │ ├── canonicalComposition.php │ │ │ │ ├── canonicalDecomposition.php │ │ │ │ ├── combiningClass.php │ │ │ │ └── compatibilityDecomposition.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── caseFolding.php │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-php73 │ │ ├── LICENSE │ │ ├── Php73.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ └── JsonException.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php80 │ │ ├── LICENSE │ │ ├── Php80.php │ │ ├── PhpToken.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── Attribute.php │ │ │ │ ├── PhpToken.php │ │ │ │ ├── Stringable.php │ │ │ │ ├── UnhandledMatchError.php │ │ │ │ └── ValueError.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php84 │ │ ├── LICENSE │ │ ├── Php84.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── Deprecated.php │ │ │ │ └── ReflectionConstant.php │ │ ├── bootstrap.php │ │ ├── bootstrap82.php │ │ └── composer.json │ ├── polyfill-php85 │ │ ├── LICENSE │ │ ├── Php85.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ └── NoDiscard.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── process │ │ ├── CHANGELOG.md │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── ProcessFailedException.php │ │ │ ├── ProcessSignaledException.php │ │ │ ├── ProcessTimedOutException.php │ │ │ ├── RunProcessFailedException.php │ │ │ └── RuntimeException.php │ │ ├── ExecutableFinder.php │ │ ├── InputStream.php │ │ ├── LICENSE │ │ ├── Messenger │ │ │ ├── RunProcessContext.php │ │ │ ├── RunProcessMessage.php │ │ │ └── RunProcessMessageHandler.php │ │ ├── PhpExecutableFinder.php │ │ ├── PhpProcess.php │ │ ├── PhpSubprocess.php │ │ ├── Pipes │ │ │ ├── AbstractPipes.php │ │ │ ├── PipesInterface.php │ │ │ ├── UnixPipes.php │ │ │ └── WindowsPipes.php │ │ ├── Process.php │ │ ├── ProcessUtils.php │ │ ├── README.md │ │ └── composer.json │ ├── service-contracts │ │ ├── Attribute │ │ │ ├── Required.php │ │ │ └── SubscribedService.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ResetInterface.php │ │ ├── ServiceCollectionInterface.php │ │ ├── ServiceLocatorTrait.php │ │ ├── ServiceMethodsSubscriberTrait.php │ │ ├── ServiceProviderInterface.php │ │ ├── ServiceSubscriberInterface.php │ │ ├── ServiceSubscriberTrait.php │ │ └── composer.json │ ├── string │ │ ├── AbstractString.php │ │ ├── AbstractUnicodeString.php │ │ ├── ByteString.php │ │ ├── CHANGELOG.md │ │ ├── CodePointString.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ │ ├── Inflector │ │ │ ├── EnglishInflector.php │ │ │ ├── FrenchInflector.php │ │ │ └── InflectorInterface.php │ │ ├── LICENSE │ │ ├── LazyString.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── data │ │ │ │ ├── wcswidth_table_wide.php │ │ │ │ └── wcswidth_table_zero.php │ │ │ └── functions.php │ │ ├── Slugger │ │ │ ├── AsciiSlugger.php │ │ │ └── SluggerInterface.php │ │ ├── UnicodeString.php │ │ └── composer.json │ └── yaml │ │ ├── CHANGELOG.md │ │ ├── Command │ │ └── LintCommand.php │ │ ├── Dumper.php │ │ ├── Escaper.php │ │ ├── Exception │ │ ├── DumpException.php │ │ ├── ExceptionInterface.php │ │ ├── ParseException.php │ │ └── RuntimeException.php │ │ ├── Inline.php │ │ ├── LICENSE │ │ ├── Parser.php │ │ ├── README.md │ │ ├── Tag │ │ └── TaggedValue.php │ │ ├── Unescaper.php │ │ ├── Yaml.php │ │ └── composer.json │ ├── webonyx │ └── graphql-php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Deferred.php │ │ ├── Error │ │ ├── ClientAware.php │ │ ├── CoercionError.php │ │ ├── DebugFlag.php │ │ ├── Error.php │ │ ├── FormattedError.php │ │ ├── InvariantViolation.php │ │ ├── ProvidesExtensions.php │ │ ├── SerializationError.php │ │ ├── SyntaxError.php │ │ ├── UserError.php │ │ └── Warning.php │ │ ├── Executor │ │ ├── ExecutionContext.php │ │ ├── ExecutionResult.php │ │ ├── Executor.php │ │ ├── ExecutorImplementation.php │ │ ├── Promise │ │ │ ├── Adapter │ │ │ │ ├── AmpPromiseAdapter.php │ │ │ │ ├── ReactPromiseAdapter.php │ │ │ │ ├── SyncPromise.php │ │ │ │ └── SyncPromiseAdapter.php │ │ │ ├── Promise.php │ │ │ └── PromiseAdapter.php │ │ ├── PromiseExecutor.php │ │ ├── ReferenceExecutor.php │ │ ├── ScopedContext.php │ │ └── Values.php │ │ ├── GraphQL.php │ │ ├── Language │ │ ├── AST │ │ │ ├── ArgumentNode.php │ │ │ ├── BooleanValueNode.php │ │ │ ├── DefinitionNode.php │ │ │ ├── DirectiveDefinitionNode.php │ │ │ ├── DirectiveNode.php │ │ │ ├── DocumentNode.php │ │ │ ├── EnumTypeDefinitionNode.php │ │ │ ├── EnumTypeExtensionNode.php │ │ │ ├── EnumValueDefinitionNode.php │ │ │ ├── EnumValueNode.php │ │ │ ├── ExecutableDefinitionNode.php │ │ │ ├── FieldDefinitionNode.php │ │ │ ├── FieldNode.php │ │ │ ├── FloatValueNode.php │ │ │ ├── FragmentDefinitionNode.php │ │ │ ├── FragmentSpreadNode.php │ │ │ ├── HasSelectionSet.php │ │ │ ├── InlineFragmentNode.php │ │ │ ├── InputObjectTypeDefinitionNode.php │ │ │ ├── InputObjectTypeExtensionNode.php │ │ │ ├── InputValueDefinitionNode.php │ │ │ ├── IntValueNode.php │ │ │ ├── InterfaceTypeDefinitionNode.php │ │ │ ├── InterfaceTypeExtensionNode.php │ │ │ ├── ListTypeNode.php │ │ │ ├── ListValueNode.php │ │ │ ├── Location.php │ │ │ ├── NameNode.php │ │ │ ├── NamedTypeNode.php │ │ │ ├── Node.php │ │ │ ├── NodeKind.php │ │ │ ├── NodeList.php │ │ │ ├── NonNullTypeNode.php │ │ │ ├── NullValueNode.php │ │ │ ├── ObjectFieldNode.php │ │ │ ├── ObjectTypeDefinitionNode.php │ │ │ ├── ObjectTypeExtensionNode.php │ │ │ ├── ObjectValueNode.php │ │ │ ├── OperationDefinitionNode.php │ │ │ ├── OperationTypeDefinitionNode.php │ │ │ ├── ScalarTypeDefinitionNode.php │ │ │ ├── ScalarTypeExtensionNode.php │ │ │ ├── SchemaDefinitionNode.php │ │ │ ├── SchemaExtensionNode.php │ │ │ ├── SelectionNode.php │ │ │ ├── SelectionSetNode.php │ │ │ ├── StringValueNode.php │ │ │ ├── TypeDefinitionNode.php │ │ │ ├── TypeExtensionNode.php │ │ │ ├── TypeNode.php │ │ │ ├── TypeSystemDefinitionNode.php │ │ │ ├── TypeSystemExtensionNode.php │ │ │ ├── UnionTypeDefinitionNode.php │ │ │ ├── UnionTypeExtensionNode.php │ │ │ ├── ValueNode.php │ │ │ ├── VariableDefinitionNode.php │ │ │ └── VariableNode.php │ │ ├── BlockString.php │ │ ├── DirectiveLocation.php │ │ ├── Lexer.php │ │ ├── Parser.php │ │ ├── Printer.php │ │ ├── Source.php │ │ ├── SourceLocation.php │ │ ├── Token.php │ │ ├── Visitor.php │ │ ├── VisitorOperation.php │ │ ├── VisitorRemoveNode.php │ │ ├── VisitorSkipNode.php │ │ └── VisitorStop.php │ │ ├── Server │ │ ├── Exception │ │ │ ├── BatchedQueriesAreNotSupported.php │ │ │ ├── CannotParseJsonBody.php │ │ │ ├── CannotParseVariables.php │ │ │ ├── CannotReadBody.php │ │ │ ├── FailedToDetermineOperationType.php │ │ │ ├── GetMethodSupportsOnlyQueryOperation.php │ │ │ ├── HttpMethodNotSupported.php │ │ │ ├── InvalidOperationParameter.php │ │ │ ├── InvalidQueryIdParameter.php │ │ │ ├── InvalidQueryParameter.php │ │ │ ├── MissingContentTypeHeader.php │ │ │ ├── MissingQueryOrQueryIdParameter.php │ │ │ ├── PersistedQueriesAreNotSupported.php │ │ │ └── UnexpectedContentType.php │ │ ├── Helper.php │ │ ├── OperationParams.php │ │ ├── RequestError.php │ │ ├── ServerConfig.php │ │ └── StandardServer.php │ │ ├── Type │ │ ├── Definition │ │ │ ├── AbstractType.php │ │ │ ├── Argument.php │ │ │ ├── BooleanType.php │ │ │ ├── CompositeType.php │ │ │ ├── CustomScalarType.php │ │ │ ├── Deprecated.php │ │ │ ├── Description.php │ │ │ ├── Directive.php │ │ │ ├── EnumType.php │ │ │ ├── EnumValueDefinition.php │ │ │ ├── FieldDefinition.php │ │ │ ├── FloatType.php │ │ │ ├── HasFieldsType.php │ │ │ ├── HasFieldsTypeImplementation.php │ │ │ ├── IDType.php │ │ │ ├── ImplementingType.php │ │ │ ├── ImplementingTypeImplementation.php │ │ │ ├── InputObjectField.php │ │ │ ├── InputObjectType.php │ │ │ ├── InputType.php │ │ │ ├── IntType.php │ │ │ ├── InterfaceType.php │ │ │ ├── LeafType.php │ │ │ ├── ListOfType.php │ │ │ ├── NamedType.php │ │ │ ├── NamedTypeImplementation.php │ │ │ ├── NonNull.php │ │ │ ├── NullableType.php │ │ │ ├── ObjectType.php │ │ │ ├── OutputType.php │ │ │ ├── PhpEnumType.php │ │ │ ├── QueryPlan.php │ │ │ ├── ResolveInfo.php │ │ │ ├── ScalarType.php │ │ │ ├── StringType.php │ │ │ ├── Type.php │ │ │ ├── UnionType.php │ │ │ ├── UnmodifiedType.php │ │ │ ├── UnresolvedFieldDefinition.php │ │ │ └── WrappingType.php │ │ ├── Introspection.php │ │ ├── Schema.php │ │ ├── SchemaConfig.php │ │ ├── SchemaValidationContext.php │ │ ├── TypeKind.php │ │ └── Validation │ │ │ └── InputObjectCircularRefs.php │ │ ├── Utils │ │ ├── AST.php │ │ ├── ASTDefinitionBuilder.php │ │ ├── BreakingChangesFinder.php │ │ ├── BuildClientSchema.php │ │ ├── BuildSchema.php │ │ ├── InterfaceImplementations.php │ │ ├── LazyException.php │ │ ├── LexicalDistance.php │ │ ├── MixedStore.php │ │ ├── PairSet.php │ │ ├── PhpDoc.php │ │ ├── SchemaExtender.php │ │ ├── SchemaPrinter.php │ │ ├── TypeComparators.php │ │ ├── TypeInfo.php │ │ ├── Utils.php │ │ └── Value.php │ │ └── Validator │ │ ├── DocumentValidator.php │ │ ├── QueryValidationContext.php │ │ ├── Rules │ │ ├── CustomValidationRule.php │ │ ├── DisableIntrospection.php │ │ ├── ExecutableDefinitions.php │ │ ├── FieldsOnCorrectType.php │ │ ├── FragmentsOnCompositeTypes.php │ │ ├── KnownArgumentNames.php │ │ ├── KnownArgumentNamesOnDirectives.php │ │ ├── KnownDirectives.php │ │ ├── KnownFragmentNames.php │ │ ├── KnownTypeNames.php │ │ ├── LoneAnonymousOperation.php │ │ ├── LoneSchemaDefinition.php │ │ ├── NoFragmentCycles.php │ │ ├── NoUndefinedVariables.php │ │ ├── NoUnusedFragments.php │ │ ├── NoUnusedVariables.php │ │ ├── OneOfInputObjectsRule.php │ │ ├── OverlappingFieldsCanBeMerged.php │ │ ├── PossibleFragmentSpreads.php │ │ ├── PossibleTypeExtensions.php │ │ ├── ProvidedRequiredArguments.php │ │ ├── ProvidedRequiredArgumentsOnDirectives.php │ │ ├── QueryComplexity.php │ │ ├── QueryDepth.php │ │ ├── QuerySecurityRule.php │ │ ├── ScalarLeafs.php │ │ ├── SingleFieldSubscription.php │ │ ├── UniqueArgumentDefinitionNames.php │ │ ├── UniqueArgumentNames.php │ │ ├── UniqueDirectiveNames.php │ │ ├── UniqueDirectivesPerLocation.php │ │ ├── UniqueEnumValueNames.php │ │ ├── UniqueFieldDefinitionNames.php │ │ ├── UniqueFragmentNames.php │ │ ├── UniqueInputFieldNames.php │ │ ├── UniqueOperationNames.php │ │ ├── UniqueOperationTypes.php │ │ ├── UniqueTypeNames.php │ │ ├── UniqueVariableNames.php │ │ ├── ValidationRule.php │ │ ├── ValuesOfCorrectType.php │ │ ├── VariablesAreInputTypes.php │ │ └── VariablesInAllowedPosition.php │ │ ├── SDLValidationContext.php │ │ └── ValidationContext.php │ └── zircote │ └── swagger-php │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── composer.json │ ├── package.json │ ├── rector.php │ └── src │ ├── Analysers │ ├── AnalyserInterface.php │ ├── AnnotationFactoryInterface.php │ ├── AttributeAnnotationFactory.php │ ├── ComposerAutoloaderScanner.php │ ├── DocBlockAnnotationFactory.php │ ├── DocBlockParser.php │ ├── ReflectionAnalyser.php │ └── TokenScanner.php │ ├── Analysis.php │ ├── Annotations │ ├── AbstractAnnotation.php │ ├── AdditionalProperties.php │ ├── Attachable.php │ ├── Components.php │ ├── Contact.php │ ├── CookieParameter.php │ ├── Delete.php │ ├── Discriminator.php │ ├── Encoding.php │ ├── Examples.php │ ├── ExternalDocumentation.php │ ├── Flow.php │ ├── Get.php │ ├── Head.php │ ├── Header.php │ ├── HeaderParameter.php │ ├── Info.php │ ├── Items.php │ ├── JsonContent.php │ ├── License.php │ ├── Link.php │ ├── MediaType.php │ ├── OpenApi.php │ ├── Operation.php │ ├── Options.php │ ├── Parameter.php │ ├── Patch.php │ ├── PathItem.php │ ├── PathParameter.php │ ├── Post.php │ ├── Property.php │ ├── Put.php │ ├── QueryParameter.php │ ├── RequestBody.php │ ├── Response.php │ ├── Schema.php │ ├── SecurityScheme.php │ ├── Server.php │ ├── ServerVariable.php │ ├── Tag.php │ ├── Trace.php │ ├── Webhook.php │ ├── Xml.php │ └── XmlContent.php │ ├── Attributes │ ├── AdditionalProperties.php │ ├── Attachable.php │ ├── Components.php │ ├── Contact.php │ ├── CookieParameter.php │ ├── Delete.php │ ├── Discriminator.php │ ├── Encoding.php │ ├── Examples.php │ ├── ExternalDocumentation.php │ ├── Flow.php │ ├── Get.php │ ├── Head.php │ ├── Header.php │ ├── HeaderParameter.php │ ├── Info.php │ ├── Items.php │ ├── JsonContent.php │ ├── License.php │ ├── Link.php │ ├── MediaType.php │ ├── OpenApi.php │ ├── OperationTrait.php │ ├── Options.php │ ├── Parameter.php │ ├── ParameterTrait.php │ ├── Patch.php │ ├── PathItem.php │ ├── PathParameter.php │ ├── Post.php │ ├── Property.php │ ├── Put.php │ ├── QueryParameter.php │ ├── RequestBody.php │ ├── Response.php │ ├── Schema.php │ ├── SecurityScheme.php │ ├── Server.php │ ├── ServerVariable.php │ ├── Tag.php │ ├── Trace.php │ ├── Webhook.php │ ├── Xml.php │ └── XmlContent.php │ ├── Context.php │ ├── Generator.php │ ├── GeneratorAwareInterface.php │ ├── GeneratorAwareTrait.php │ ├── Loggers │ ├── ConsoleLogger.php │ └── DefaultLogger.php │ ├── OpenApiException.php │ ├── Pipeline.php │ ├── Processors │ ├── AugmentDiscriminators.php │ ├── AugmentItems.php │ ├── AugmentMediaType.php │ ├── AugmentParameters.php │ ├── AugmentProperties.php │ ├── AugmentRefs.php │ ├── AugmentRequestBody.php │ ├── AugmentSchemas.php │ ├── AugmentTags.php │ ├── BuildPaths.php │ ├── CleanUnmerged.php │ ├── CleanUnusedComponents.php │ ├── Concerns │ │ ├── AnnotationTrait.php │ │ ├── DocblockTrait.php │ │ ├── MergePropertiesTrait.php │ │ └── RefTrait.php │ ├── DocBlockDescriptions.php │ ├── ExpandClasses.php │ ├── ExpandEnums.php │ ├── ExpandInterfaces.php │ ├── ExpandTraits.php │ ├── MergeIntoComponents.php │ ├── MergeIntoOpenApi.php │ ├── MergeJsonContent.php │ ├── MergeXmlContent.php │ ├── OperationId.php │ └── PathFilter.php │ ├── Serializer.php │ ├── Type │ ├── AbstractTypeResolver.php │ ├── LegacyTypeResolver.php │ └── TypeInfoTypeResolver.php │ ├── TypeResolverInterface.php │ └── Util.php ├── modules ├── App │ ├── Controller │ │ ├── App.php │ │ ├── Auth.php │ │ ├── Authenticated.php │ │ ├── Base.php │ │ ├── Dashboard.php │ │ └── Utils.php │ ├── Exception │ │ └── AppNotification.php │ ├── GraphQL │ │ ├── Query.php │ │ └── Types │ │ │ ├── FieldTypes.php │ │ │ ├── JsonType.php │ │ │ ├── NumericType.php │ │ │ └── UploadType.php │ ├── Helper │ │ ├── Acl.php │ │ ├── Admin.php │ │ ├── ApiRateLimiter.php │ │ ├── App.php │ │ ├── Async.php │ │ ├── Auth.php │ │ ├── Csrf.php │ │ ├── EventStream.php │ │ ├── JWT.php │ │ ├── Menus.php │ │ ├── ResponseCache.php │ │ ├── TWFA.php │ │ ├── Theme.php │ │ └── i18n.php │ ├── README.md │ ├── RestApi │ │ └── Query.php │ ├── admin.php │ ├── api.php │ ├── assets │ │ ├── app.bundle.css │ │ ├── app.bundle.js │ │ ├── build.bundle.js │ │ ├── components │ │ │ ├── app-actionbar │ │ │ │ ├── app-actionbar.css │ │ │ │ └── app-actionbar.js │ │ │ ├── app-avatar │ │ │ │ ├── app-avatar.css │ │ │ │ └── app-avatar.js │ │ │ ├── app-datetime │ │ │ │ └── app-datetime.js │ │ │ ├── app-fieldcontainer │ │ │ │ ├── app-fieldcontainer.css │ │ │ │ └── app-fieldcontainer.js │ │ │ ├── app-frame │ │ │ │ ├── app-frame.css │ │ │ │ └── app-frame.js │ │ │ ├── app-loader │ │ │ │ ├── app-loader.css │ │ │ │ └── app-loader.js │ │ │ ├── app-scrollcontainer │ │ │ │ ├── app-scrollcontainer.css │ │ │ │ └── app-scrollcontainer.js │ │ │ ├── app-tags │ │ │ │ ├── app-tags.css │ │ │ │ └── app-tags.js │ │ │ ├── app-textcomplete │ │ │ │ ├── app-textcomplete.css │ │ │ │ └── app-textcomplete.js │ │ │ ├── switch.css │ │ │ └── tooltip.css │ │ ├── css │ │ │ ├── app.css │ │ │ └── vendor │ │ │ │ ├── ag-grid-theme.css │ │ │ │ ├── codemirror.css │ │ │ │ ├── kiss.css │ │ │ │ └── tiptap.css │ │ ├── dialog │ │ │ └── app-search.js │ │ ├── fonts │ │ │ └── material-icons │ │ │ │ ├── material-icons.css │ │ │ │ └── material-outline.woff2 │ │ ├── img │ │ │ ├── ag.svg │ │ │ └── logo.svg │ │ ├── js │ │ │ ├── admin.js │ │ │ ├── app.js │ │ │ ├── app │ │ │ │ ├── app.js │ │ │ │ ├── assets.js │ │ │ │ ├── ui.js │ │ │ │ └── utils.js │ │ │ ├── components.js │ │ │ ├── vue-view.js │ │ │ └── vue-view │ │ │ │ └── ui.js │ │ ├── vendor │ │ │ ├── JSON5.js │ │ │ ├── ag-grid │ │ │ │ ├── ag-grid-theme.css │ │ │ │ ├── ag-grid-vue3.js │ │ │ │ ├── ag-grid.css │ │ │ │ └── ag-grid.js │ │ │ ├── animate.css │ │ │ ├── chartjs │ │ │ │ ├── README.md │ │ │ │ ├── chart.js │ │ │ │ └── vue-chart.js │ │ │ ├── codemirror │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── addon │ │ │ │ │ ├── comment │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ └── continuecomment.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── dialog.js │ │ │ │ │ ├── display │ │ │ │ │ │ ├── autorefresh.js │ │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ │ ├── panel.js │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ └── rulers.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ ├── continuelist.js │ │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ │ ├── matchtags.js │ │ │ │ │ │ └── trailingspace.js │ │ │ │ │ ├── fold │ │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ │ └── xml-fold.js │ │ │ │ │ ├── hint │ │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ │ ├── css-hint.js │ │ │ │ │ │ ├── html-hint.js │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ ├── show-hint.js │ │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ │ └── xml-hint.js │ │ │ │ │ ├── lint │ │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ │ ├── css-lint.js │ │ │ │ │ │ ├── html-lint.js │ │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ │ ├── json-lint.js │ │ │ │ │ │ ├── lint.css │ │ │ │ │ │ ├── lint.js │ │ │ │ │ │ └── yaml-lint.js │ │ │ │ │ ├── merge │ │ │ │ │ │ ├── merge.css │ │ │ │ │ │ └── merge.js │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ └── simple.js │ │ │ │ │ ├── runmode │ │ │ │ │ │ ├── colorize.js │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ └── runmode.node.js │ │ │ │ │ ├── scroll │ │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ │ └── simplescrollbars.js │ │ │ │ │ ├── search │ │ │ │ │ │ ├── jump-to-line.js │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ └── searchcursor.js │ │ │ │ │ ├── selection │ │ │ │ │ │ ├── active-line.js │ │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ │ └── selection-pointer.js │ │ │ │ │ ├── tern │ │ │ │ │ │ ├── tern.css │ │ │ │ │ │ ├── tern.js │ │ │ │ │ │ └── worker.js │ │ │ │ │ └── wrap │ │ │ │ │ │ └── hardwrap.js │ │ │ │ ├── lib │ │ │ │ │ ├── codemirror.css │ │ │ │ │ └── codemirror.js │ │ │ │ └── mode │ │ │ │ │ ├── apl │ │ │ │ │ └── apl.js │ │ │ │ │ ├── asciiarmor │ │ │ │ │ └── asciiarmor.js │ │ │ │ │ ├── asn.1 │ │ │ │ │ └── asn.1.js │ │ │ │ │ ├── asterisk │ │ │ │ │ └── asterisk.js │ │ │ │ │ ├── brainfuck │ │ │ │ │ └── brainfuck.js │ │ │ │ │ ├── clike │ │ │ │ │ └── clike.js │ │ │ │ │ ├── clojure │ │ │ │ │ └── clojure.js │ │ │ │ │ ├── cmake │ │ │ │ │ └── cmake.js │ │ │ │ │ ├── cobol │ │ │ │ │ └── cobol.js │ │ │ │ │ ├── coffeescript │ │ │ │ │ └── coffeescript.js │ │ │ │ │ ├── commonlisp │ │ │ │ │ └── commonlisp.js │ │ │ │ │ ├── crystal │ │ │ │ │ └── crystal.js │ │ │ │ │ ├── css │ │ │ │ │ ├── css.js │ │ │ │ │ ├── gss.html │ │ │ │ │ ├── gss_test.js │ │ │ │ │ ├── less.html │ │ │ │ │ ├── less_test.js │ │ │ │ │ ├── scss.html │ │ │ │ │ └── scss_test.js │ │ │ │ │ ├── cypher │ │ │ │ │ └── cypher.js │ │ │ │ │ ├── d │ │ │ │ │ └── d.js │ │ │ │ │ ├── dart │ │ │ │ │ └── dart.js │ │ │ │ │ ├── diff │ │ │ │ │ └── diff.js │ │ │ │ │ ├── django │ │ │ │ │ └── django.js │ │ │ │ │ ├── dockerfile │ │ │ │ │ └── dockerfile.js │ │ │ │ │ ├── dtd │ │ │ │ │ └── dtd.js │ │ │ │ │ ├── dylan │ │ │ │ │ └── dylan.js │ │ │ │ │ ├── ebnf │ │ │ │ │ └── ebnf.js │ │ │ │ │ ├── ecl │ │ │ │ │ └── ecl.js │ │ │ │ │ ├── eiffel │ │ │ │ │ └── eiffel.js │ │ │ │ │ ├── elm │ │ │ │ │ └── elm.js │ │ │ │ │ ├── erlang │ │ │ │ │ └── erlang.js │ │ │ │ │ ├── factor │ │ │ │ │ └── factor.js │ │ │ │ │ ├── fcl │ │ │ │ │ └── fcl.js │ │ │ │ │ ├── forth │ │ │ │ │ └── forth.js │ │ │ │ │ ├── fortran │ │ │ │ │ └── fortran.js │ │ │ │ │ ├── gas │ │ │ │ │ └── gas.js │ │ │ │ │ ├── gfm │ │ │ │ │ └── gfm.js │ │ │ │ │ ├── gherkin │ │ │ │ │ └── gherkin.js │ │ │ │ │ ├── go │ │ │ │ │ └── go.js │ │ │ │ │ ├── groovy │ │ │ │ │ └── groovy.js │ │ │ │ │ ├── haml │ │ │ │ │ └── haml.js │ │ │ │ │ ├── handlebars │ │ │ │ │ └── handlebars.js │ │ │ │ │ ├── haskell-literate │ │ │ │ │ └── haskell-literate.js │ │ │ │ │ ├── haskell │ │ │ │ │ └── haskell.js │ │ │ │ │ ├── haxe │ │ │ │ │ └── haxe.js │ │ │ │ │ ├── htmlembedded │ │ │ │ │ └── htmlembedded.js │ │ │ │ │ ├── htmlmixed │ │ │ │ │ └── htmlmixed.js │ │ │ │ │ ├── http │ │ │ │ │ └── http.js │ │ │ │ │ ├── idl │ │ │ │ │ └── idl.js │ │ │ │ │ ├── javascript │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── json-ld.html │ │ │ │ │ └── typescript.html │ │ │ │ │ ├── jinja2 │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── jsx │ │ │ │ │ └── jsx.js │ │ │ │ │ ├── julia │ │ │ │ │ └── julia.js │ │ │ │ │ ├── livescript │ │ │ │ │ └── livescript.js │ │ │ │ │ ├── lua │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ └── markdown.js │ │ │ │ │ ├── mathematica │ │ │ │ │ └── mathematica.js │ │ │ │ │ ├── mbox │ │ │ │ │ └── mbox.js │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── mirc │ │ │ │ │ └── mirc.js │ │ │ │ │ ├── mllike │ │ │ │ │ └── mllike.js │ │ │ │ │ ├── modelica │ │ │ │ │ └── modelica.js │ │ │ │ │ ├── mscgen │ │ │ │ │ ├── mscgen.js │ │ │ │ │ ├── mscgen_test.js │ │ │ │ │ ├── msgenny_test.js │ │ │ │ │ └── xu_test.js │ │ │ │ │ ├── mumps │ │ │ │ │ └── mumps.js │ │ │ │ │ ├── nginx │ │ │ │ │ └── nginx.js │ │ │ │ │ ├── nsis │ │ │ │ │ └── nsis.js │ │ │ │ │ ├── ntriples │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── octave │ │ │ │ │ └── octave.js │ │ │ │ │ ├── oz │ │ │ │ │ └── oz.js │ │ │ │ │ ├── pascal │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── pegjs │ │ │ │ │ └── pegjs.js │ │ │ │ │ ├── perl │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php │ │ │ │ │ └── php.js │ │ │ │ │ ├── pig │ │ │ │ │ └── pig.js │ │ │ │ │ ├── powershell │ │ │ │ │ └── powershell.js │ │ │ │ │ ├── properties │ │ │ │ │ └── properties.js │ │ │ │ │ ├── protobuf │ │ │ │ │ └── protobuf.js │ │ │ │ │ ├── pug │ │ │ │ │ └── pug.js │ │ │ │ │ ├── puppet │ │ │ │ │ └── puppet.js │ │ │ │ │ ├── python │ │ │ │ │ └── python.js │ │ │ │ │ ├── q │ │ │ │ │ └── q.js │ │ │ │ │ ├── r │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm │ │ │ │ │ └── rpm.js │ │ │ │ │ ├── rst │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby │ │ │ │ │ └── ruby.js │ │ │ │ │ ├── rust │ │ │ │ │ └── rust.js │ │ │ │ │ ├── sas │ │ │ │ │ └── sas.js │ │ │ │ │ ├── sass │ │ │ │ │ └── sass.js │ │ │ │ │ ├── scheme │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell │ │ │ │ │ └── shell.js │ │ │ │ │ ├── sieve │ │ │ │ │ └── sieve.js │ │ │ │ │ ├── slim │ │ │ │ │ └── slim.js │ │ │ │ │ ├── smalltalk │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── solr │ │ │ │ │ └── solr.js │ │ │ │ │ ├── soy │ │ │ │ │ └── soy.js │ │ │ │ │ ├── sparql │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── spreadsheet │ │ │ │ │ └── spreadsheet.js │ │ │ │ │ ├── sql │ │ │ │ │ └── sql.js │ │ │ │ │ ├── stex │ │ │ │ │ └── stex.js │ │ │ │ │ ├── stylus │ │ │ │ │ └── stylus.js │ │ │ │ │ ├── swift │ │ │ │ │ └── swift.js │ │ │ │ │ ├── tcl │ │ │ │ │ └── tcl.js │ │ │ │ │ ├── textile │ │ │ │ │ └── textile.js │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki │ │ │ │ │ ├── tiki.css │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── toml │ │ │ │ │ └── toml.js │ │ │ │ │ ├── tornado │ │ │ │ │ └── tornado.js │ │ │ │ │ ├── troff │ │ │ │ │ └── troff.js │ │ │ │ │ ├── ttcn-cfg │ │ │ │ │ └── ttcn-cfg.js │ │ │ │ │ ├── ttcn │ │ │ │ │ └── ttcn.js │ │ │ │ │ ├── turtle │ │ │ │ │ └── turtle.js │ │ │ │ │ ├── twig │ │ │ │ │ └── twig.js │ │ │ │ │ ├── vb │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── vhdl │ │ │ │ │ └── vhdl.js │ │ │ │ │ ├── vue │ │ │ │ │ └── vue.js │ │ │ │ │ ├── wast │ │ │ │ │ └── wast.js │ │ │ │ │ ├── webidl │ │ │ │ │ └── webidl.js │ │ │ │ │ ├── xml │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery │ │ │ │ │ └── xquery.js │ │ │ │ │ ├── yacas │ │ │ │ │ └── yacas.js │ │ │ │ │ ├── yaml-frontmatter │ │ │ │ │ └── yaml-frontmatter.js │ │ │ │ │ ├── yaml │ │ │ │ │ └── yaml.js │ │ │ │ │ └── z80 │ │ │ │ │ └── z80.js │ │ │ ├── date-fns.js │ │ │ ├── dompurify.js │ │ │ ├── i18n.js │ │ │ ├── kiss │ │ │ │ ├── components │ │ │ │ │ ├── accordion │ │ │ │ │ │ ├── accordion.css │ │ │ │ │ │ └── accordion.js │ │ │ │ │ ├── badge.css │ │ │ │ │ ├── breadcrumbs.css │ │ │ │ │ ├── button.css │ │ │ │ │ ├── card.css │ │ │ │ │ ├── carousel │ │ │ │ │ │ ├── carousel.css │ │ │ │ │ │ └── carousel.js │ │ │ │ │ ├── container.css │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── dialog.js │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── dropdown.css │ │ │ │ │ │ └── dropdown.js │ │ │ │ │ ├── grid.css │ │ │ │ │ ├── navlist.css │ │ │ │ │ ├── offcanvas │ │ │ │ │ │ ├── offcanvas.css │ │ │ │ │ │ └── offcanvas.js │ │ │ │ │ ├── parallax │ │ │ │ │ │ ├── parallax.css │ │ │ │ │ │ └── parallax.js │ │ │ │ │ ├── popout │ │ │ │ │ │ ├── popout.css │ │ │ │ │ │ └── popout.js │ │ │ │ │ ├── row.css │ │ │ │ │ ├── sticky │ │ │ │ │ │ ├── sticky.css │ │ │ │ │ │ └── sticky.js │ │ │ │ │ ├── svg │ │ │ │ │ │ ├── svg.css │ │ │ │ │ │ └── svg.js │ │ │ │ │ ├── tabs │ │ │ │ │ │ ├── tabs.css │ │ │ │ │ │ └── tabs.js │ │ │ │ │ ├── toast │ │ │ │ │ │ ├── toast.css │ │ │ │ │ │ └── toast.js │ │ │ │ │ └── tooltip │ │ │ │ │ │ ├── tooltip.css │ │ │ │ │ │ └── tooltip.js │ │ │ │ ├── css │ │ │ │ │ ├── align.css │ │ │ │ │ ├── base.css │ │ │ │ │ ├── color.css │ │ │ │ │ ├── flex.css │ │ │ │ │ ├── form.css │ │ │ │ │ ├── position.css │ │ │ │ │ ├── section.css │ │ │ │ │ ├── sizes.css │ │ │ │ │ ├── spacing.css │ │ │ │ │ ├── text.css │ │ │ │ │ ├── utils.css │ │ │ │ │ ├── visibility.css │ │ │ │ │ └── width.css │ │ │ │ ├── js │ │ │ │ │ ├── events.js │ │ │ │ │ └── utils.js │ │ │ │ ├── lib.css │ │ │ │ └── lib.js │ │ │ ├── mousetrap.js │ │ │ ├── storage.js │ │ │ └── vue │ │ │ │ ├── components │ │ │ │ ├── vue-draggable.js │ │ │ │ └── vue-tiptap.js │ │ │ │ ├── vue-router.js │ │ │ │ └── vue.js │ │ └── vue-components │ │ │ ├── fields │ │ │ ├── field-boolean.js │ │ │ ├── field-code.js │ │ │ ├── field-color.js │ │ │ ├── field-date.js │ │ │ ├── field-datetime.js │ │ │ ├── field-nav.js │ │ │ ├── field-number.js │ │ │ ├── field-object.js │ │ │ ├── field-select.js │ │ │ ├── field-set.js │ │ │ ├── field-table.js │ │ │ ├── field-tags.js │ │ │ ├── field-text.js │ │ │ ├── field-time.js │ │ │ └── richtext │ │ │ │ ├── components │ │ │ │ ├── color.js │ │ │ │ └── format.js │ │ │ │ ├── dialogs │ │ │ │ ├── color.js │ │ │ │ ├── image.js │ │ │ │ └── link.js │ │ │ │ ├── editor-actions.js │ │ │ │ ├── field-richtext.js │ │ │ │ └── menu-bar.js │ │ │ └── user-info.js │ ├── bootstrap.php │ ├── emails │ │ ├── magiclink.php │ │ └── reset-password.php │ ├── functions.php │ ├── icon.svg │ ├── layouts │ │ ├── app.php │ │ ├── canvas.php │ │ ├── email.php │ │ └── raw.php │ └── views │ │ ├── auth │ │ ├── dialog.php │ │ ├── login.php │ │ ├── magiclink.php │ │ ├── magiclink.twofa.php │ │ ├── reset-password.php │ │ └── set-password.php │ │ ├── dashboard │ │ └── index.php │ │ ├── errors │ │ ├── 401.php │ │ ├── 404.php │ │ ├── 500-debug.php │ │ └── 500.php │ │ └── lockedResouce.php ├── Assets │ ├── Command │ │ ├── FixVisibilityPermissions.php │ │ ├── GeneratePresets.php │ │ └── Thumbhash.php │ ├── Controller │ │ └── Assets.php │ ├── Helper │ │ └── Asset.php │ ├── README.md │ ├── Utils │ │ ├── Ffmpeg.php │ │ ├── Img.php │ │ └── Vips.php │ ├── admin.php │ ├── api.php │ ├── assets │ │ ├── components │ │ │ └── display-image.js │ │ ├── css │ │ │ ├── asset.css │ │ │ └── uppy.css │ │ ├── dialogs │ │ │ ├── asset-folder.js │ │ │ ├── asset-picker.js │ │ │ └── asset.js │ │ ├── icons │ │ │ ├── file.svg │ │ │ ├── folder.svg │ │ │ └── video.svg │ │ ├── js │ │ │ ├── assets.js │ │ │ └── uppy.js │ │ ├── vendor │ │ │ ├── spotlight │ │ │ │ ├── css │ │ │ │ │ └── spotlight.min.css │ │ │ │ ├── img │ │ │ │ │ ├── arrow.svg │ │ │ │ │ ├── autofit.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── error.svg │ │ │ │ │ ├── heart-outline.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── maximize.svg │ │ │ │ │ ├── minimize.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── pixel.gif │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── preloader.svg │ │ │ │ │ ├── theme.svg │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ └── zoom-out.svg │ │ │ │ └── spotlight.bundle.js │ │ │ ├── thumbhash.js │ │ │ └── uppy │ │ │ │ ├── uppy.css │ │ │ │ └── uppy.js │ │ └── vue-components │ │ │ ├── asset-preview.js │ │ │ ├── assets-manager.js │ │ │ ├── dashboard-widget.js │ │ │ └── field-asset.js │ ├── bootstrap.php │ ├── cli.php │ ├── icon.svg │ └── views │ │ └── index.php ├── Content │ ├── Command │ │ ├── Field │ │ │ ├── Remove.php │ │ │ └── Rename.php │ │ └── Index │ │ │ ├── Create.php │ │ │ ├── ListIndexes.php │ │ │ └── Remove.php │ ├── Controller │ │ ├── Collection.php │ │ ├── Content.php │ │ ├── Models.php │ │ ├── Singleton.php │ │ └── Tree.php │ ├── Helper │ │ ├── Content.php │ │ ├── LinkedContentFilter.php │ │ └── Model.php │ ├── README.md │ ├── admin.php │ ├── api.php │ ├── assets │ │ ├── components │ │ │ └── display-content.js │ │ ├── dialogs │ │ │ ├── batch-edit.js │ │ │ ├── select-content-item.js │ │ │ ├── switch-model-view.js │ │ │ └── view-settings.js │ │ ├── icons │ │ │ ├── collection.svg │ │ │ ├── reference.svg │ │ │ ├── singleton.svg │ │ │ └── tree.svg │ │ ├── js │ │ │ └── content.js │ │ └── vue-components │ │ │ ├── content-model-permissions.js │ │ │ ├── content-recent-items.js │ │ │ ├── dashboard-widget.js │ │ │ ├── field-content-item-link.js │ │ │ ├── items-tree.js │ │ │ ├── options-link-model.js │ │ │ └── tree-item.js │ ├── bootstrap.php │ ├── cli.php │ ├── graphql │ │ ├── content.php │ │ └── models.php │ ├── icon.svg │ └── views │ │ ├── collection │ │ ├── item.php │ │ └── items.php │ │ ├── index.php │ │ ├── models │ │ └── model.php │ │ ├── singleton │ │ └── item.php │ │ └── tree │ │ ├── item.php │ │ └── items.php ├── Finder │ ├── Controller │ │ └── Finder.php │ ├── README.md │ ├── admin.php │ ├── assets │ │ ├── dialogs │ │ │ ├── file-editor.js │ │ │ └── finder.js │ │ └── vue-components │ │ │ └── finder.js │ ├── bootstrap.php │ ├── icon.svg │ └── views │ │ └── index.php ├── Identi │ ├── Controller │ │ └── Identi.php │ ├── README.md │ ├── admin.php │ ├── bootstrap.php │ └── views │ │ ├── error.php │ │ └── login-dialog-footer.php ├── System │ ├── Command │ │ ├── Cache │ │ │ └── Flush.php │ │ ├── Spaces │ │ │ └── Create.php │ │ ├── Worker │ │ │ ├── ListWorkers.php │ │ │ ├── Start.php │ │ │ └── Stop.php │ │ └── i18n │ │ │ └── CreateTranslation.php │ ├── Controller │ │ ├── Api.php │ │ ├── Buckets.php │ │ ├── Locales.php │ │ ├── Logs.php │ │ ├── Settings.php │ │ ├── Spaces.php │ │ ├── Tower.php │ │ ├── Users.php │ │ ├── Users │ │ │ └── Roles.php │ │ ├── Utils.php │ │ └── Worker.php │ ├── Helper │ │ ├── Api.php │ │ ├── License.php │ │ ├── Locales.php │ │ ├── Log.php │ │ ├── Revisions.php │ │ ├── Settings.php │ │ ├── Spaces.php │ │ ├── System.php │ │ └── Worker.php │ ├── README.md │ ├── admin.php │ ├── api.php │ ├── assets │ │ ├── components │ │ │ └── app-license │ │ │ │ └── app-license.js │ │ ├── css │ │ │ └── system.css │ │ ├── dialogs │ │ │ ├── api-viewer.js │ │ │ ├── bucket-picker.js │ │ │ ├── content-preview.js │ │ │ ├── form.js │ │ │ ├── graphql-viewer.js │ │ │ └── json-viewer.js │ │ ├── icon-sets │ │ │ ├── Buildings │ │ │ │ ├── ancient-gate-line.svg │ │ │ │ ├── ancient-pavilion-line.svg │ │ │ │ ├── bank-line.svg │ │ │ │ ├── building-2-line.svg │ │ │ │ ├── building-3-line.svg │ │ │ │ ├── building-4-line.svg │ │ │ │ ├── building-line.svg │ │ │ │ ├── community-line.svg │ │ │ │ ├── government-line.svg │ │ │ │ ├── home-2-line.svg │ │ │ │ ├── home-3-line.svg │ │ │ │ ├── home-4-line.svg │ │ │ │ ├── home-5-line.svg │ │ │ │ ├── home-6-line.svg │ │ │ │ ├── home-7-line.svg │ │ │ │ ├── home-8-line.svg │ │ │ │ ├── home-gear-line.svg │ │ │ │ ├── home-heart-line.svg │ │ │ │ ├── home-line.svg │ │ │ │ ├── home-office-line.svg │ │ │ │ ├── home-smile-2-line.svg │ │ │ │ ├── home-smile-line.svg │ │ │ │ ├── home-wifi-line.svg │ │ │ │ ├── hospital-line.svg │ │ │ │ ├── hotel-line.svg │ │ │ │ ├── school-line.svg │ │ │ │ ├── store-2-line.svg │ │ │ │ ├── store-3-line.svg │ │ │ │ ├── store-line.svg │ │ │ │ └── tent-line.svg │ │ │ ├── Business │ │ │ │ ├── advertisement-line.svg │ │ │ │ ├── archive-2-line.svg │ │ │ │ ├── archive-drawer-line.svg │ │ │ │ ├── archive-line.svg │ │ │ │ ├── archive-stack-line.svg │ │ │ │ ├── at-line.svg │ │ │ │ ├── attachment-line.svg │ │ │ │ ├── award-line.svg │ │ │ │ ├── bar-chart-2-line.svg │ │ │ │ ├── bar-chart-box-line.svg │ │ │ │ ├── bar-chart-grouped-line.svg │ │ │ │ ├── bar-chart-horizontal-line.svg │ │ │ │ ├── bar-chart-line.svg │ │ │ │ ├── bookmark-2-line.svg │ │ │ │ ├── bookmark-3-line.svg │ │ │ │ ├── bookmark-line.svg │ │ │ │ ├── briefcase-2-line.svg │ │ │ │ ├── briefcase-3-line.svg │ │ │ │ ├── briefcase-4-line.svg │ │ │ │ ├── briefcase-5-line.svg │ │ │ │ ├── briefcase-line.svg │ │ │ │ ├── bubble-chart-line.svg │ │ │ │ ├── calculator-line.svg │ │ │ │ ├── calendar-2-line.svg │ │ │ │ ├── calendar-check-line.svg │ │ │ │ ├── calendar-close-line.svg │ │ │ │ ├── calendar-event-line.svg │ │ │ │ ├── calendar-line.svg │ │ │ │ ├── calendar-schedule-line.svg │ │ │ │ ├── calendar-todo-line.svg │ │ │ │ ├── cloud-line.svg │ │ │ │ ├── cloud-off-line.svg │ │ │ │ ├── copyleft-line.svg │ │ │ │ ├── copyright-line.svg │ │ │ │ ├── creative-commons-by-line.svg │ │ │ │ ├── creative-commons-line.svg │ │ │ │ ├── creative-commons-nc-line.svg │ │ │ │ ├── creative-commons-nd-line.svg │ │ │ │ ├── creative-commons-sa-line.svg │ │ │ │ ├── creative-commons-zero-line.svg │ │ │ │ ├── customer-service-2-line.svg │ │ │ │ ├── customer-service-line.svg │ │ │ │ ├── donut-chart-line.svg │ │ │ │ ├── flag-2-line.svg │ │ │ │ ├── flag-line.svg │ │ │ │ ├── global-line.svg │ │ │ │ ├── honour-line.svg │ │ │ │ ├── id-card-line.svg │ │ │ │ ├── inbox-2-line.svg │ │ │ │ ├── inbox-archive-line.svg │ │ │ │ ├── inbox-line.svg │ │ │ │ ├── inbox-unarchive-line.svg │ │ │ │ ├── line-chart-line.svg │ │ │ │ ├── links-line.svg │ │ │ │ ├── mail-add-line.svg │ │ │ │ ├── mail-check-line.svg │ │ │ │ ├── mail-close-line.svg │ │ │ │ ├── mail-download-line.svg │ │ │ │ ├── mail-forbid-line.svg │ │ │ │ ├── mail-line.svg │ │ │ │ ├── mail-lock-line.svg │ │ │ │ ├── mail-open-line.svg │ │ │ │ ├── mail-send-line.svg │ │ │ │ ├── mail-settings-line.svg │ │ │ │ ├── mail-star-line.svg │ │ │ │ ├── mail-unread-line.svg │ │ │ │ ├── mail-volume-line.svg │ │ │ │ ├── medal-2-line.svg │ │ │ │ ├── medal-line.svg │ │ │ │ ├── megaphone-line.svg │ │ │ │ ├── pass-expired-line.svg │ │ │ │ ├── pass-pending-line.svg │ │ │ │ ├── pass-valid-line.svg │ │ │ │ ├── pie-chart-2-line.svg │ │ │ │ ├── pie-chart-box-line.svg │ │ │ │ ├── pie-chart-line.svg │ │ │ │ ├── presentation-line.svg │ │ │ │ ├── printer-cloud-line.svg │ │ │ │ ├── printer-line.svg │ │ │ │ ├── profile-line.svg │ │ │ │ ├── projector-2-line.svg │ │ │ │ ├── projector-line.svg │ │ │ │ ├── record-mail-line.svg │ │ │ │ ├── registered-line.svg │ │ │ │ ├── reply-all-line.svg │ │ │ │ ├── reply-line.svg │ │ │ │ ├── send-plane-2-line.svg │ │ │ │ ├── send-plane-line.svg │ │ │ │ ├── seo-line.svg │ │ │ │ ├── service-line.svg │ │ │ │ ├── shake-hands-line.svg │ │ │ │ ├── slideshow-2-line.svg │ │ │ │ ├── slideshow-3-line.svg │ │ │ │ ├── slideshow-4-line.svg │ │ │ │ ├── slideshow-line.svg │ │ │ │ ├── stack-line.svg │ │ │ │ ├── trademark-line.svg │ │ │ │ ├── verified-badge-line.svg │ │ │ │ ├── window-2-line.svg │ │ │ │ └── window-line.svg │ │ │ ├── Communication │ │ │ │ ├── chat-1-line.svg │ │ │ │ ├── chat-2-line.svg │ │ │ │ ├── chat-3-line.svg │ │ │ │ ├── chat-4-line.svg │ │ │ │ ├── chat-check-line.svg │ │ │ │ ├── chat-delete-line.svg │ │ │ │ ├── chat-download-line.svg │ │ │ │ ├── chat-follow-up-line.svg │ │ │ │ ├── chat-forward-line.svg │ │ │ │ ├── chat-heart-line.svg │ │ │ │ ├── chat-history-line.svg │ │ │ │ ├── chat-new-line.svg │ │ │ │ ├── chat-off-line.svg │ │ │ │ ├── chat-poll-line.svg │ │ │ │ ├── chat-private-line.svg │ │ │ │ ├── chat-quote-line.svg │ │ │ │ ├── chat-settings-line.svg │ │ │ │ ├── chat-smile-2-line.svg │ │ │ │ ├── chat-smile-3-line.svg │ │ │ │ ├── chat-smile-line.svg │ │ │ │ ├── chat-thread-line.svg │ │ │ │ ├── chat-upload-line.svg │ │ │ │ ├── chat-voice-line.svg │ │ │ │ ├── discuss-line.svg │ │ │ │ ├── emoji-sticker-line.svg │ │ │ │ ├── feedback-line.svg │ │ │ │ ├── message-2-line.svg │ │ │ │ ├── message-3-line.svg │ │ │ │ ├── message-line.svg │ │ │ │ ├── question-answer-line.svg │ │ │ │ ├── questionnaire-line.svg │ │ │ │ ├── speak-line.svg │ │ │ │ └── video-chat-line.svg │ │ │ ├── Design │ │ │ │ ├── align-item-bottom-line.svg │ │ │ │ ├── align-item-horizontal-center-line.svg │ │ │ │ ├── align-item-left-line.svg │ │ │ │ ├── align-item-right-line.svg │ │ │ │ ├── align-item-top-line.svg │ │ │ │ ├── align-item-vertical-center-line.svg │ │ │ │ ├── anticlockwise-2-line.svg │ │ │ │ ├── anticlockwise-line.svg │ │ │ │ ├── artboard-2-line.svg │ │ │ │ ├── artboard-line.svg │ │ │ │ ├── ball-pen-line.svg │ │ │ │ ├── blur-off-line.svg │ │ │ │ ├── brush-2-line.svg │ │ │ │ ├── brush-3-line.svg │ │ │ │ ├── brush-4-line.svg │ │ │ │ ├── brush-line.svg │ │ │ │ ├── circle-line.svg │ │ │ │ ├── clockwise-2-line.svg │ │ │ │ ├── clockwise-line.svg │ │ │ │ ├── collage-line.svg │ │ │ │ ├── color-filter-line.svg │ │ │ │ ├── compasses-2-line.svg │ │ │ │ ├── compasses-line.svg │ │ │ │ ├── contrast-2-line.svg │ │ │ │ ├── contrast-drop-2-line.svg │ │ │ │ ├── contrast-drop-line.svg │ │ │ │ ├── contrast-line.svg │ │ │ │ ├── crop-2-line.svg │ │ │ │ ├── crop-line.svg │ │ │ │ ├── crosshair-2-line.svg │ │ │ │ ├── crosshair-line.svg │ │ │ │ ├── drag-drop-line.svg │ │ │ │ ├── drop-line.svg │ │ │ │ ├── edit-2-line.svg │ │ │ │ ├── edit-box-line.svg │ │ │ │ ├── edit-circle-line.svg │ │ │ │ ├── edit-line.svg │ │ │ │ ├── eraser-line.svg │ │ │ │ ├── flip-horizontal-2-line.svg │ │ │ │ ├── flip-horizontal-line.svg │ │ │ │ ├── flip-vertical-2-line.svg │ │ │ │ ├── flip-vertical-line.svg │ │ │ │ ├── focus-2-line.svg │ │ │ │ ├── focus-3-line.svg │ │ │ │ ├── focus-line.svg │ │ │ │ ├── grid-line.svg │ │ │ │ ├── hammer-line.svg │ │ │ │ ├── hexagon-line.svg │ │ │ │ ├── ink-bottle-line.svg │ │ │ │ ├── input-method-line.svg │ │ │ │ ├── layout-2-line.svg │ │ │ │ ├── layout-3-line.svg │ │ │ │ ├── layout-4-line.svg │ │ │ │ ├── layout-5-line.svg │ │ │ │ ├── layout-6-line.svg │ │ │ │ ├── layout-bottom-2-line.svg │ │ │ │ ├── layout-bottom-line.svg │ │ │ │ ├── layout-column-line.svg │ │ │ │ ├── layout-grid-2-line.svg │ │ │ │ ├── layout-grid-line.svg │ │ │ │ ├── layout-horizontal-line.svg │ │ │ │ ├── layout-left-2-line.svg │ │ │ │ ├── layout-left-line.svg │ │ │ │ ├── layout-line.svg │ │ │ │ ├── layout-masonry-line.svg │ │ │ │ ├── layout-right-2-line.svg │ │ │ │ ├── layout-right-line.svg │ │ │ │ ├── layout-row-line.svg │ │ │ │ ├── layout-top-2-line.svg │ │ │ │ ├── layout-top-line.svg │ │ │ │ ├── layout-vertical-line.svg │ │ │ │ ├── magic-line.svg │ │ │ │ ├── mark-pen-line.svg │ │ │ │ ├── markup-line.svg │ │ │ │ ├── octagon-line.svg │ │ │ │ ├── paint-brush-line.svg │ │ │ │ ├── paint-line.svg │ │ │ │ ├── palette-line.svg │ │ │ │ ├── pantone-line.svg │ │ │ │ ├── pen-nib-line.svg │ │ │ │ ├── pencil-line.svg │ │ │ │ ├── pencil-ruler-2-line.svg │ │ │ │ ├── pencil-ruler-line.svg │ │ │ │ ├── pentagon-line.svg │ │ │ │ ├── quill-pen-line.svg │ │ │ │ ├── rectangle-line.svg │ │ │ │ ├── ruler-2-line.svg │ │ │ │ ├── ruler-line.svg │ │ │ │ ├── scissors-2-line.svg │ │ │ │ ├── scissors-cut-line.svg │ │ │ │ ├── scissors-line.svg │ │ │ │ ├── screenshot-2-line.svg │ │ │ │ ├── screenshot-line.svg │ │ │ │ ├── shadow-line.svg │ │ │ │ ├── shape-2-line.svg │ │ │ │ ├── shape-line.svg │ │ │ │ ├── shapes-line.svg │ │ │ │ ├── sip-line.svg │ │ │ │ ├── slice-line.svg │ │ │ │ ├── square-line.svg │ │ │ │ ├── t-box-line.svg │ │ │ │ ├── table-alt-line.svg │ │ │ │ ├── table-line.svg │ │ │ │ ├── tools-line.svg │ │ │ │ └── triangle-line.svg │ │ │ ├── Development │ │ │ │ ├── braces-line.svg │ │ │ │ ├── brackets-line.svg │ │ │ │ ├── bug-2-line.svg │ │ │ │ ├── bug-line.svg │ │ │ │ ├── code-box-line.svg │ │ │ │ ├── code-line.svg │ │ │ │ ├── code-s-line.svg │ │ │ │ ├── code-s-slash-line.svg │ │ │ │ ├── command-line.svg │ │ │ │ ├── css3-line.svg │ │ │ │ ├── cursor-line.svg │ │ │ │ ├── git-branch-line.svg │ │ │ │ ├── git-close-pull-request-line.svg │ │ │ │ ├── git-commit-line.svg │ │ │ │ ├── git-fork-line.svg │ │ │ │ ├── git-merge-line.svg │ │ │ │ ├── git-pr-draft-line.svg │ │ │ │ ├── git-pull-request-line.svg │ │ │ │ ├── git-repository-commits-line.svg │ │ │ │ ├── git-repository-line.svg │ │ │ │ ├── git-repository-private-line.svg │ │ │ │ ├── html5-line.svg │ │ │ │ ├── javascript-line.svg │ │ │ │ ├── parentheses-line.svg │ │ │ │ ├── puzzle-2-line.svg │ │ │ │ ├── puzzle-line.svg │ │ │ │ ├── terminal-box-line.svg │ │ │ │ ├── terminal-line.svg │ │ │ │ └── terminal-window-line.svg │ │ │ ├── Device │ │ │ │ ├── airplay-line.svg │ │ │ │ ├── barcode-box-line.svg │ │ │ │ ├── barcode-line.svg │ │ │ │ ├── base-station-line.svg │ │ │ │ ├── battery-2-charge-line.svg │ │ │ │ ├── battery-2-line.svg │ │ │ │ ├── battery-charge-line.svg │ │ │ │ ├── battery-line.svg │ │ │ │ ├── battery-low-line.svg │ │ │ │ ├── battery-saver-line.svg │ │ │ │ ├── battery-share-line.svg │ │ │ │ ├── bluetooth-connect-line.svg │ │ │ │ ├── bluetooth-line.svg │ │ │ │ ├── cast-line.svg │ │ │ │ ├── cellphone-line.svg │ │ │ │ ├── computer-line.svg │ │ │ │ ├── cpu-line.svg │ │ │ │ ├── dashboard-2-line.svg │ │ │ │ ├── dashboard-3-line.svg │ │ │ │ ├── database-2-line.svg │ │ │ │ ├── database-line.svg │ │ │ │ ├── device-line.svg │ │ │ │ ├── device-recover-line.svg │ │ │ │ ├── dual-sim-1-line.svg │ │ │ │ ├── dual-sim-2-line.svg │ │ │ │ ├── fingerprint-2-line.svg │ │ │ │ ├── fingerprint-line.svg │ │ │ │ ├── gamepad-line.svg │ │ │ │ ├── gps-line.svg │ │ │ │ ├── gradienter-line.svg │ │ │ │ ├── hard-drive-2-line.svg │ │ │ │ ├── hard-drive-3-line.svg │ │ │ │ ├── hard-drive-line.svg │ │ │ │ ├── hotspot-line.svg │ │ │ │ ├── install-line.svg │ │ │ │ ├── instance-line.svg │ │ │ │ ├── keyboard-box-line.svg │ │ │ │ ├── keyboard-line.svg │ │ │ │ ├── mac-line.svg │ │ │ │ ├── macbook-line.svg │ │ │ │ ├── mobile-download-line.svg │ │ │ │ ├── mouse-line.svg │ │ │ │ ├── phone-find-line.svg │ │ │ │ ├── phone-line.svg │ │ │ │ ├── phone-lock-line.svg │ │ │ │ ├── qr-code-line.svg │ │ │ │ ├── qr-scan-2-line.svg │ │ │ │ ├── qr-scan-line.svg │ │ │ │ ├── radar-line.svg │ │ │ │ ├── ram-2-line.svg │ │ │ │ ├── ram-line.svg │ │ │ │ ├── remote-control-2-line.svg │ │ │ │ ├── remote-control-line.svg │ │ │ │ ├── restart-line.svg │ │ │ │ ├── rfid-line.svg │ │ │ │ ├── rotate-lock-line.svg │ │ │ │ ├── router-line.svg │ │ │ │ ├── rss-line.svg │ │ │ │ ├── save-2-line.svg │ │ │ │ ├── save-3-line.svg │ │ │ │ ├── save-line.svg │ │ │ │ ├── scan-2-line.svg │ │ │ │ ├── scan-line.svg │ │ │ │ ├── sd-card-line.svg │ │ │ │ ├── sd-card-mini-line.svg │ │ │ │ ├── sensor-line.svg │ │ │ │ ├── server-line.svg │ │ │ │ ├── shut-down-line.svg │ │ │ │ ├── signal-wifi-1-line.svg │ │ │ │ ├── signal-wifi-2-line.svg │ │ │ │ ├── signal-wifi-3-line.svg │ │ │ │ ├── signal-wifi-error-line.svg │ │ │ │ ├── signal-wifi-line.svg │ │ │ │ ├── signal-wifi-off-line.svg │ │ │ │ ├── sim-card-2-line.svg │ │ │ │ ├── sim-card-line.svg │ │ │ │ ├── smartphone-line.svg │ │ │ │ ├── tablet-line.svg │ │ │ │ ├── tv-2-line.svg │ │ │ │ ├── tv-line.svg │ │ │ │ ├── u-disk-line.svg │ │ │ │ ├── uninstall-line.svg │ │ │ │ ├── usb-line.svg │ │ │ │ ├── wifi-line.svg │ │ │ │ ├── wifi-off-line.svg │ │ │ │ └── wireless-charging-line.svg │ │ │ ├── Document │ │ │ │ ├── article-line.svg │ │ │ │ ├── bill-line.svg │ │ │ │ ├── book-2-line.svg │ │ │ │ ├── book-3-line.svg │ │ │ │ ├── book-line.svg │ │ │ │ ├── book-marked-line.svg │ │ │ │ ├── book-open-line.svg │ │ │ │ ├── book-read-line.svg │ │ │ │ ├── booklet-line.svg │ │ │ │ ├── clipboard-line.svg │ │ │ │ ├── contacts-book-2-line.svg │ │ │ │ ├── contacts-book-3-line.svg │ │ │ │ ├── contacts-book-line.svg │ │ │ │ ├── contacts-book-upload-line.svg │ │ │ │ ├── contract-line.svg │ │ │ │ ├── draft-line.svg │ │ │ │ ├── file-2-line 2.svg │ │ │ │ ├── file-2-line.svg │ │ │ │ ├── file-3-line.svg │ │ │ │ ├── file-4-line.svg │ │ │ │ ├── file-add-line.svg │ │ │ │ ├── file-chart-2-line.svg │ │ │ │ ├── file-chart-line.svg │ │ │ │ ├── file-check-line.svg │ │ │ │ ├── file-close-line.svg │ │ │ │ ├── file-cloud-line.svg │ │ │ │ ├── file-code-line.svg │ │ │ │ ├── file-copy-2-line.svg │ │ │ │ ├── file-copy-line.svg │ │ │ │ ├── file-damage-line.svg │ │ │ │ ├── file-download-line.svg │ │ │ │ ├── file-edit-line.svg │ │ │ │ ├── file-excel-2-line.svg │ │ │ │ ├── file-excel-line.svg │ │ │ │ ├── file-forbid-line.svg │ │ │ │ ├── file-gif-line.svg │ │ │ │ ├── file-history-line.svg │ │ │ │ ├── file-hwp-line.svg │ │ │ │ ├── file-image-line.svg │ │ │ │ ├── file-info-line.svg │ │ │ │ ├── file-line.svg │ │ │ │ ├── file-list-2-line.svg │ │ │ │ ├── file-list-3-line.svg │ │ │ │ ├── file-list-line.svg │ │ │ │ ├── file-lock-line.svg │ │ │ │ ├── file-marked-line.svg │ │ │ │ ├── file-music-line.svg │ │ │ │ ├── file-paper-2-line.svg │ │ │ │ ├── file-paper-line.svg │ │ │ │ ├── file-pdf-2-line.svg │ │ │ │ ├── file-pdf-line.svg │ │ │ │ ├── file-ppt-2-line.svg │ │ │ │ ├── file-ppt-line.svg │ │ │ │ ├── file-reduce-line.svg │ │ │ │ ├── file-search-line.svg │ │ │ │ ├── file-settings-line.svg │ │ │ │ ├── file-shield-2-line.svg │ │ │ │ ├── file-shield-line.svg │ │ │ │ ├── file-shred-line.svg │ │ │ │ ├── file-text-line.svg │ │ │ │ ├── file-transfer-line.svg │ │ │ │ ├── file-unknow-line.svg │ │ │ │ ├── file-upload-line.svg │ │ │ │ ├── file-user-line.svg │ │ │ │ ├── file-video-line.svg │ │ │ │ ├── file-warning-line.svg │ │ │ │ ├── file-word-2-line.svg │ │ │ │ ├── file-word-line.svg │ │ │ │ ├── file-zip-line.svg │ │ │ │ ├── folder-2-line.svg │ │ │ │ ├── folder-3-line.svg │ │ │ │ ├── folder-4-line.svg │ │ │ │ ├── folder-5-line.svg │ │ │ │ ├── folder-6-line.svg │ │ │ │ ├── folder-add-line.svg │ │ │ │ ├── folder-chart-2-line.svg │ │ │ │ ├── folder-chart-line.svg │ │ │ │ ├── folder-check-line.svg │ │ │ │ ├── folder-close-line.svg │ │ │ │ ├── folder-cloud-line.svg │ │ │ │ ├── folder-download-line.svg │ │ │ │ ├── folder-forbid-line.svg │ │ │ │ ├── folder-history-line.svg │ │ │ │ ├── folder-image-line.svg │ │ │ │ ├── folder-info-line.svg │ │ │ │ ├── folder-keyhole-line.svg │ │ │ │ ├── folder-line.svg │ │ │ │ ├── folder-lock-line.svg │ │ │ │ ├── folder-music-line.svg │ │ │ │ ├── folder-open-line.svg │ │ │ │ ├── folder-received-line.svg │ │ │ │ ├── folder-reduce-line.svg │ │ │ │ ├── folder-settings-line.svg │ │ │ │ ├── folder-shared-line.svg │ │ │ │ ├── folder-shield-2-line.svg │ │ │ │ ├── folder-shield-line.svg │ │ │ │ ├── folder-transfer-line.svg │ │ │ │ ├── folder-unknow-line.svg │ │ │ │ ├── folder-upload-line.svg │ │ │ │ ├── folder-user-line.svg │ │ │ │ ├── folder-video-line.svg │ │ │ │ ├── folder-warning-line.svg │ │ │ │ ├── folder-zip-line.svg │ │ │ │ ├── folders-line.svg │ │ │ │ ├── keynote-line.svg │ │ │ │ ├── markdown-line.svg │ │ │ │ ├── news-line.svg │ │ │ │ ├── newspaper-line.svg │ │ │ │ ├── numbers-line.svg │ │ │ │ ├── pages-line.svg │ │ │ │ ├── receipt-line.svg │ │ │ │ ├── sticky-note-2-line.svg │ │ │ │ ├── sticky-note-add-line.svg │ │ │ │ ├── sticky-note-line.svg │ │ │ │ ├── survey-line.svg │ │ │ │ ├── task-line.svg │ │ │ │ └── todo-line.svg │ │ │ ├── Finance │ │ │ │ ├── 24-hours-line.svg │ │ │ │ ├── auction-line.svg │ │ │ │ ├── bank-card-2-line.svg │ │ │ │ ├── bank-card-line.svg │ │ │ │ ├── bit-coin-line.svg │ │ │ │ ├── bnb-line.svg │ │ │ │ ├── btc-line.svg │ │ │ │ ├── cash-line.svg │ │ │ │ ├── coin-line.svg │ │ │ │ ├── coins-line.svg │ │ │ │ ├── copper-coin-line.svg │ │ │ │ ├── copper-diamond-line.svg │ │ │ │ ├── coupon-2-line.svg │ │ │ │ ├── coupon-3-line.svg │ │ │ │ ├── coupon-4-line.svg │ │ │ │ ├── coupon-5-line.svg │ │ │ │ ├── coupon-line.svg │ │ │ │ ├── currency-line.svg │ │ │ │ ├── discount-percent-line.svg │ │ │ │ ├── eth-line.svg │ │ │ │ ├── exchange-2-line.svg │ │ │ │ ├── exchange-box-line.svg │ │ │ │ ├── exchange-cny-line.svg │ │ │ │ ├── exchange-dollar-line.svg │ │ │ │ ├── exchange-funds-line.svg │ │ │ │ ├── exchange-line.svg │ │ │ │ ├── funds-box-line.svg │ │ │ │ ├── funds-line.svg │ │ │ │ ├── gift-2-line.svg │ │ │ │ ├── gift-line.svg │ │ │ │ ├── hand-coin-line.svg │ │ │ │ ├── hand-heart-line.svg │ │ │ │ ├── increase-decrease-line.svg │ │ │ │ ├── money-cny-box-line.svg │ │ │ │ ├── money-cny-circle-line.svg │ │ │ │ ├── money-dollar-box-line.svg │ │ │ │ ├── money-dollar-circle-line.svg │ │ │ │ ├── money-euro-box-line.svg │ │ │ │ ├── money-euro-circle-line.svg │ │ │ │ ├── money-pound-box-line.svg │ │ │ │ ├── money-pound-circle-line.svg │ │ │ │ ├── money-rupee-circle-line.svg │ │ │ │ ├── nft-line.svg │ │ │ │ ├── p2p-line.svg │ │ │ │ ├── percent-line.svg │ │ │ │ ├── price-tag-2-line.svg │ │ │ │ ├── price-tag-3-line.svg │ │ │ │ ├── price-tag-line.svg │ │ │ │ ├── red-packet-line.svg │ │ │ │ ├── refund-2-line.svg │ │ │ │ ├── refund-line.svg │ │ │ │ ├── safe-2-line.svg │ │ │ │ ├── safe-line.svg │ │ │ │ ├── secure-payment-line.svg │ │ │ │ ├── shopping-bag-2-line.svg │ │ │ │ ├── shopping-bag-3-line.svg │ │ │ │ ├── shopping-bag-4-line.svg │ │ │ │ ├── shopping-bag-line.svg │ │ │ │ ├── shopping-basket-2-line.svg │ │ │ │ ├── shopping-basket-line.svg │ │ │ │ ├── shopping-cart-2-line.svg │ │ │ │ ├── shopping-cart-line.svg │ │ │ │ ├── stock-line.svg │ │ │ │ ├── swap-2-line.svg │ │ │ │ ├── swap-3-line.svg │ │ │ │ ├── swap-box-line.svg │ │ │ │ ├── swap-line.svg │ │ │ │ ├── ticket-2-line.svg │ │ │ │ ├── ticket-line.svg │ │ │ │ ├── token-swap-line.svg │ │ │ │ ├── trophy-line.svg │ │ │ │ ├── vip-crown-2-line.svg │ │ │ │ ├── vip-crown-line.svg │ │ │ │ ├── vip-diamond-line.svg │ │ │ │ ├── vip-line.svg │ │ │ │ ├── wallet-2-line.svg │ │ │ │ ├── wallet-3-line.svg │ │ │ │ ├── wallet-line.svg │ │ │ │ ├── water-flash-line.svg │ │ │ │ ├── xrp-line.svg │ │ │ │ └── xtz-line.svg │ │ │ ├── Food │ │ │ │ ├── beer-line.svg │ │ │ │ ├── bowl-line.svg │ │ │ │ ├── bread-line.svg │ │ │ │ ├── cake-2-line.svg │ │ │ │ ├── cake-3-line.svg │ │ │ │ ├── cake-line.svg │ │ │ │ ├── cup-line.svg │ │ │ │ ├── drinks-2-line.svg │ │ │ │ ├── drinks-line.svg │ │ │ │ ├── goblet-2-line.svg │ │ │ │ ├── goblet-line.svg │ │ │ │ ├── knife-blood-line.svg │ │ │ │ ├── knife-line.svg │ │ │ │ ├── restaurant-2-line.svg │ │ │ │ └── restaurant-line.svg │ │ │ ├── Health-Medical │ │ │ │ ├── aed-electrodes-line.svg │ │ │ │ ├── aed-line.svg │ │ │ │ ├── brain-line.svg │ │ │ │ ├── capsule-line.svg │ │ │ │ ├── dislike-line.svg │ │ │ │ ├── dossier-line.svg │ │ │ │ ├── empathize-line.svg │ │ │ │ ├── first-aid-kit-line.svg │ │ │ │ ├── flask-line.svg │ │ │ │ ├── hand-sanitizer-line.svg │ │ │ │ ├── health-book-line.svg │ │ │ │ ├── heart-2-line.svg │ │ │ │ ├── heart-3-line.svg │ │ │ │ ├── heart-add-2-line.svg │ │ │ │ ├── heart-add-line.svg │ │ │ │ ├── heart-line.svg │ │ │ │ ├── heart-pulse-line.svg │ │ │ │ ├── hearts-line.svg │ │ │ │ ├── infrared-thermometer-line.svg │ │ │ │ ├── lungs-line.svg │ │ │ │ ├── medicine-bottle-line.svg │ │ │ │ ├── mental-health-line.svg │ │ │ │ ├── microscope-line.svg │ │ │ │ ├── nurse-line.svg │ │ │ │ ├── psychotherapy-line.svg │ │ │ │ ├── pulse-line.svg │ │ │ │ ├── rest-time-line.svg │ │ │ │ ├── stethoscope-line.svg │ │ │ │ ├── surgical-mask-line.svg │ │ │ │ ├── syringe-line.svg │ │ │ │ ├── test-tube-line.svg │ │ │ │ ├── thermometer-line.svg │ │ │ │ ├── virus-line.svg │ │ │ │ └── zzz-line.svg │ │ │ ├── Map │ │ │ │ ├── anchor-line.svg │ │ │ │ ├── barricade-line.svg │ │ │ │ ├── bike-line.svg │ │ │ │ ├── bus-2-line.svg │ │ │ │ ├── bus-line.svg │ │ │ │ ├── bus-wifi-line.svg │ │ │ │ ├── car-line.svg │ │ │ │ ├── car-washing-line.svg │ │ │ │ ├── caravan-line.svg │ │ │ │ ├── charging-pile-2-line.svg │ │ │ │ ├── charging-pile-line.svg │ │ │ │ ├── china-railway-line.svg │ │ │ │ ├── compass-2-line.svg │ │ │ │ ├── compass-3-line.svg │ │ │ │ ├── compass-4-line.svg │ │ │ │ ├── compass-discover-line.svg │ │ │ │ ├── compass-line.svg │ │ │ │ ├── direction-line.svg │ │ │ │ ├── e-bike-2-line.svg │ │ │ │ ├── e-bike-line.svg │ │ │ │ ├── earth-line.svg │ │ │ │ ├── flight-land-line.svg │ │ │ │ ├── flight-takeoff-line.svg │ │ │ │ ├── footprint-line.svg │ │ │ │ ├── gas-station-line.svg │ │ │ │ ├── globe-line.svg │ │ │ │ ├── guide-line.svg │ │ │ │ ├── hotel-bed-line.svg │ │ │ │ ├── lifebuoy-line.svg │ │ │ │ ├── luggage-cart-line.svg │ │ │ │ ├── luggage-deposit-line.svg │ │ │ │ ├── map-2-line.svg │ │ │ │ ├── map-line.svg │ │ │ │ ├── map-pin-2-line.svg │ │ │ │ ├── map-pin-3-line.svg │ │ │ │ ├── map-pin-4-line.svg │ │ │ │ ├── map-pin-5-line.svg │ │ │ │ ├── map-pin-add-line.svg │ │ │ │ ├── map-pin-line.svg │ │ │ │ ├── map-pin-range-line.svg │ │ │ │ ├── map-pin-time-line.svg │ │ │ │ ├── map-pin-user-line.svg │ │ │ │ ├── motorbike-line.svg │ │ │ │ ├── navigation-line.svg │ │ │ │ ├── oil-line.svg │ │ │ │ ├── parking-box-line.svg │ │ │ │ ├── parking-line.svg │ │ │ │ ├── passport-line.svg │ │ │ │ ├── pin-distance-line.svg │ │ │ │ ├── plane-line.svg │ │ │ │ ├── planet-line.svg │ │ │ │ ├── police-car-line.svg │ │ │ │ ├── pushpin-2-line.svg │ │ │ │ ├── pushpin-line.svg │ │ │ │ ├── riding-line.svg │ │ │ │ ├── road-map-line.svg │ │ │ │ ├── roadster-line.svg │ │ │ │ ├── rocket-2-line.svg │ │ │ │ ├── rocket-line.svg │ │ │ │ ├── route-line.svg │ │ │ │ ├── run-line.svg │ │ │ │ ├── sailboat-line.svg │ │ │ │ ├── ship-2-line.svg │ │ │ │ ├── ship-line.svg │ │ │ │ ├── signal-tower-line.svg │ │ │ │ ├── signpost-line.svg │ │ │ │ ├── space-ship-line.svg │ │ │ │ ├── steering-2-line.svg │ │ │ │ ├── steering-line.svg │ │ │ │ ├── subway-line.svg │ │ │ │ ├── subway-wifi-line.svg │ │ │ │ ├── suitcase-2-line.svg │ │ │ │ ├── suitcase-3-line.svg │ │ │ │ ├── suitcase-line.svg │ │ │ │ ├── takeaway-line.svg │ │ │ │ ├── taxi-line.svg │ │ │ │ ├── taxi-wifi-line.svg │ │ │ │ ├── time-zone-line.svg │ │ │ │ ├── traffic-light-line.svg │ │ │ │ ├── train-line.svg │ │ │ │ ├── train-wifi-line.svg │ │ │ │ ├── treasure-map-line.svg │ │ │ │ ├── truck-line.svg │ │ │ │ ├── unpin-line.svg │ │ │ │ └── walk-line.svg │ │ │ ├── Media │ │ │ │ ├── 4k-line.svg │ │ │ │ ├── album-line.svg │ │ │ │ ├── aspect-ratio-line.svg │ │ │ │ ├── broadcast-line.svg │ │ │ │ ├── camera-2-line.svg │ │ │ │ ├── camera-3-line.svg │ │ │ │ ├── camera-lens-line.svg │ │ │ │ ├── camera-line.svg │ │ │ │ ├── camera-off-line.svg │ │ │ │ ├── camera-switch-line.svg │ │ │ │ ├── clapperboard-line.svg │ │ │ │ ├── closed-captioning-line.svg │ │ │ │ ├── disc-line.svg │ │ │ │ ├── dv-line.svg │ │ │ │ ├── dvd-line.svg │ │ │ │ ├── eject-line.svg │ │ │ │ ├── equalizer-2-line.svg │ │ │ │ ├── equalizer-3-line.svg │ │ │ │ ├── equalizer-line.svg │ │ │ │ ├── film-line.svg │ │ │ │ ├── forward-10-line.svg │ │ │ │ ├── forward-15-line.svg │ │ │ │ ├── forward-30-line.svg │ │ │ │ ├── forward-5-line.svg │ │ │ │ ├── forward-end-line.svg │ │ │ │ ├── forward-end-mini-line.svg │ │ │ │ ├── fullscreen-exit-line.svg │ │ │ │ ├── fullscreen-line.svg │ │ │ │ ├── gallery-line.svg │ │ │ │ ├── gallery-upload-line.svg │ │ │ │ ├── hd-line.svg │ │ │ │ ├── headphone-line.svg │ │ │ │ ├── hq-line.svg │ │ │ │ ├── image-2-line.svg │ │ │ │ ├── image-add-line.svg │ │ │ │ ├── image-circle-line.svg │ │ │ │ ├── image-edit-line.svg │ │ │ │ ├── image-line.svg │ │ │ │ ├── landscape-line.svg │ │ │ │ ├── live-line.svg │ │ │ │ ├── memories-line.svg │ │ │ │ ├── mic-2-line.svg │ │ │ │ ├── mic-line.svg │ │ │ │ ├── mic-off-line.svg │ │ │ │ ├── movie-2-line.svg │ │ │ │ ├── movie-line.svg │ │ │ │ ├── music-2-line.svg │ │ │ │ ├── music-line.svg │ │ │ │ ├── mv-line.svg │ │ │ │ ├── notification-2-line.svg │ │ │ │ ├── notification-3-line.svg │ │ │ │ ├── notification-4-line.svg │ │ │ │ ├── notification-line.svg │ │ │ │ ├── notification-off-line.svg │ │ │ │ ├── order-play-line.svg │ │ │ │ ├── pause-circle-line.svg │ │ │ │ ├── pause-large-line.svg │ │ │ │ ├── pause-line.svg │ │ │ │ ├── pause-mini-line.svg │ │ │ │ ├── phone-camera-line.svg │ │ │ │ ├── picture-in-picture-2-line.svg │ │ │ │ ├── picture-in-picture-exit-line.svg │ │ │ │ ├── picture-in-picture-line.svg │ │ │ │ ├── play-circle-line.svg │ │ │ │ ├── play-large-line.svg │ │ │ │ ├── play-line.svg │ │ │ │ ├── play-list-2-line.svg │ │ │ │ ├── play-list-add-line.svg │ │ │ │ ├── play-list-line.svg │ │ │ │ ├── play-mini-line.svg │ │ │ │ ├── play-reverse-large-line.svg │ │ │ │ ├── play-reverse-line.svg │ │ │ │ ├── play-reverse-mini-line.svg │ │ │ │ ├── polaroid-2-line.svg │ │ │ │ ├── polaroid-line.svg │ │ │ │ ├── radio-2-line.svg │ │ │ │ ├── radio-line.svg │ │ │ │ ├── record-circle-line.svg │ │ │ │ ├── repeat-2-line.svg │ │ │ │ ├── repeat-line.svg │ │ │ │ ├── repeat-one-line.svg │ │ │ │ ├── replay-10-line.svg │ │ │ │ ├── replay-15-line.svg │ │ │ │ ├── replay-30-line.svg │ │ │ │ ├── replay-5-line.svg │ │ │ │ ├── rewind-line.svg │ │ │ │ ├── rewind-mini-line.svg │ │ │ │ ├── rewind-start-line.svg │ │ │ │ ├── rewind-start-mini-line.svg │ │ │ │ ├── rhythm-line.svg │ │ │ │ ├── shuffle-line.svg │ │ │ │ ├── skip-back-line.svg │ │ │ │ ├── skip-back-mini-line.svg │ │ │ │ ├── skip-forward-line.svg │ │ │ │ ├── skip-forward-mini-line.svg │ │ │ │ ├── slow-down-line.svg │ │ │ │ ├── sound-module-line.svg │ │ │ │ ├── speaker-2-line.svg │ │ │ │ ├── speaker-3-line.svg │ │ │ │ ├── speaker-line.svg │ │ │ │ ├── speed-line.svg │ │ │ │ ├── speed-mini-line.svg │ │ │ │ ├── speed-up-line.svg │ │ │ │ ├── stop-circle-line.svg │ │ │ │ ├── stop-large-line.svg │ │ │ │ ├── stop-line.svg │ │ │ │ ├── stop-mini-line.svg │ │ │ │ ├── surround-sound-line.svg │ │ │ │ ├── tape-line.svg │ │ │ │ ├── video-add-line.svg │ │ │ │ ├── video-download-line.svg │ │ │ │ ├── video-line.svg │ │ │ │ ├── video-off-line.svg │ │ │ │ ├── video-on-line.svg │ │ │ │ ├── video-upload-line.svg │ │ │ │ ├── vidicon-2-line.svg │ │ │ │ ├── vidicon-line.svg │ │ │ │ ├── voiceprint-line.svg │ │ │ │ ├── volume-down-line.svg │ │ │ │ ├── volume-mute-line.svg │ │ │ │ ├── volume-off-vibrate-line.svg │ │ │ │ ├── volume-up-line.svg │ │ │ │ ├── volume-vibrate-line.svg │ │ │ │ └── webcam-line.svg │ │ │ ├── Others │ │ │ │ ├── armchair-line.svg │ │ │ │ ├── basketball-line.svg │ │ │ │ ├── bell-line.svg │ │ │ │ ├── billiards-line.svg │ │ │ │ ├── box-1-line.svg │ │ │ │ ├── box-2-line.svg │ │ │ │ ├── box-3-line.svg │ │ │ │ ├── boxing-line.svg │ │ │ │ ├── cactus-line.svg │ │ │ │ ├── candle-line.svg │ │ │ │ ├── character-recognition-line.svg │ │ │ │ ├── cross-line.svg │ │ │ │ ├── dice-1-line.svg │ │ │ │ ├── dice-2-line.svg │ │ │ │ ├── dice-3-line.svg │ │ │ │ ├── dice-4-line.svg │ │ │ │ ├── dice-5-line.svg │ │ │ │ ├── dice-6-line.svg │ │ │ │ ├── dice-line.svg │ │ │ │ ├── door-closed-line.svg │ │ │ │ ├── door-line.svg │ │ │ │ ├── door-lock-box-line.svg │ │ │ │ ├── door-lock-line.svg │ │ │ │ ├── door-open-line.svg │ │ │ │ ├── flower-line.svg │ │ │ │ ├── football-line.svg │ │ │ │ ├── fridge-line.svg │ │ │ │ ├── game-line.svg │ │ │ │ ├── glasses-2-line.svg │ │ │ │ ├── glasses-line.svg │ │ │ │ ├── goggles-line.svg │ │ │ │ ├── golf-ball-line.svg │ │ │ │ ├── graduation-cap-line.svg │ │ │ │ ├── handbag-line.svg │ │ │ │ ├── infinity-line.svg │ │ │ │ ├── key-2-line.svg │ │ │ │ ├── key-line.svg │ │ │ │ ├── leaf-line.svg │ │ │ │ ├── lightbulb-flash-line.svg │ │ │ │ ├── lightbulb-line.svg │ │ │ │ ├── outlet-2-line.svg │ │ │ │ ├── outlet-line.svg │ │ │ │ ├── ping-pong-line.svg │ │ │ │ ├── plant-line.svg │ │ │ │ ├── plug-2-line.svg │ │ │ │ ├── plug-line.svg │ │ │ │ ├── police-badge-line.svg │ │ │ │ ├── recycle-line.svg │ │ │ │ ├── reserved-line.svg │ │ │ │ ├── scales-2-line.svg │ │ │ │ ├── scales-3-line.svg │ │ │ │ ├── scales-line.svg │ │ │ │ ├── seedling-line.svg │ │ │ │ ├── shirt-line.svg │ │ │ │ ├── sofa-line.svg │ │ │ │ ├── sword-line.svg │ │ │ │ ├── t-shirt-2-line.svg │ │ │ │ ├── t-shirt-air-line.svg │ │ │ │ ├── t-shirt-line.svg │ │ │ │ ├── tooth-line.svg │ │ │ │ ├── tree-line.svg │ │ │ │ ├── umbrella-line.svg │ │ │ │ ├── voice-recognition-line.svg │ │ │ │ ├── weight-line.svg │ │ │ │ └── wheelchair-line.svg │ │ │ ├── README.md │ │ │ ├── System │ │ │ │ ├── add-box-line.svg │ │ │ │ ├── add-circle-line.svg │ │ │ │ ├── add-large-line.svg │ │ │ │ ├── add-line.svg │ │ │ │ ├── alarm-line.svg │ │ │ │ ├── alarm-warning-line.svg │ │ │ │ ├── alert-line.svg │ │ │ │ ├── apps-2-add-line.svg │ │ │ │ ├── apps-2-line.svg │ │ │ │ ├── apps-line.svg │ │ │ │ ├── check-double-line.svg │ │ │ │ ├── check-line.svg │ │ │ │ ├── checkbox-blank-circle-line.svg │ │ │ │ ├── checkbox-blank-line.svg │ │ │ │ ├── checkbox-circle-line.svg │ │ │ │ ├── checkbox-indeterminate-line.svg │ │ │ │ ├── checkbox-line.svg │ │ │ │ ├── checkbox-multiple-blank-line.svg │ │ │ │ ├── checkbox-multiple-line.svg │ │ │ │ ├── close-circle-line.svg │ │ │ │ ├── close-large-line.svg │ │ │ │ ├── close-line.svg │ │ │ │ ├── dashboard-horizontal-line.svg │ │ │ │ ├── dashboard-line.svg │ │ │ │ ├── delete-back-2-line.svg │ │ │ │ ├── delete-back-line.svg │ │ │ │ ├── delete-bin-2-line.svg │ │ │ │ ├── delete-bin-3-line.svg │ │ │ │ ├── delete-bin-4-line.svg │ │ │ │ ├── delete-bin-5-line.svg │ │ │ │ ├── delete-bin-6-line.svg │ │ │ │ ├── delete-bin-7-line.svg │ │ │ │ ├── delete-bin-line.svg │ │ │ │ ├── divide-line.svg │ │ │ │ ├── download-2-line.svg │ │ │ │ ├── download-cloud-2-line.svg │ │ │ │ ├── download-cloud-line.svg │ │ │ │ ├── download-line.svg │ │ │ │ ├── equal-line.svg │ │ │ │ ├── error-warning-line.svg │ │ │ │ ├── export-line.svg │ │ │ │ ├── external-link-line.svg │ │ │ │ ├── eye-2-line.svg │ │ │ │ ├── eye-close-line.svg │ │ │ │ ├── eye-line.svg │ │ │ │ ├── eye-off-line.svg │ │ │ │ ├── filter-2-line.svg │ │ │ │ ├── filter-3-line.svg │ │ │ │ ├── filter-line.svg │ │ │ │ ├── filter-off-line.svg │ │ │ │ ├── find-replace-line.svg │ │ │ │ ├── forbid-2-line.svg │ │ │ │ ├── forbid-line.svg │ │ │ │ ├── function-add-line.svg │ │ │ │ ├── function-line.svg │ │ │ │ ├── history-line.svg │ │ │ │ ├── hourglass-2-line.svg │ │ │ │ ├── hourglass-line.svg │ │ │ │ ├── import-line.svg │ │ │ │ ├── indeterminate-circle-line.svg │ │ │ │ ├── information-2-line.svg │ │ │ │ ├── information-line.svg │ │ │ │ ├── information-off-line.svg │ │ │ │ ├── list-settings-line.svg │ │ │ │ ├── loader-2-line.svg │ │ │ │ ├── loader-3-line.svg │ │ │ │ ├── loader-4-line.svg │ │ │ │ ├── loader-5-line.svg │ │ │ │ ├── loader-line.svg │ │ │ │ ├── lock-2-line.svg │ │ │ │ ├── lock-line.svg │ │ │ │ ├── lock-password-line.svg │ │ │ │ ├── lock-star-line.svg │ │ │ │ ├── lock-unlock-line.svg │ │ │ │ ├── login-box-line.svg │ │ │ │ ├── login-circle-line.svg │ │ │ │ ├── logout-box-line.svg │ │ │ │ ├── logout-box-r-line.svg │ │ │ │ ├── logout-circle-line.svg │ │ │ │ ├── logout-circle-r-line.svg │ │ │ │ ├── loop-left-line.svg │ │ │ │ ├── loop-right-line.svg │ │ │ │ ├── menu-2-line.svg │ │ │ │ ├── menu-3-line.svg │ │ │ │ ├── menu-4-line.svg │ │ │ │ ├── menu-5-line.svg │ │ │ │ ├── menu-add-line.svg │ │ │ │ ├── menu-fold-2-line.svg │ │ │ │ ├── menu-fold-3-line 2.svg │ │ │ │ ├── menu-fold-3-line.svg │ │ │ │ ├── menu-fold-4-line.svg │ │ │ │ ├── menu-fold-line.svg │ │ │ │ ├── menu-line.svg │ │ │ │ ├── menu-search-line.svg │ │ │ │ ├── menu-unfold-2-line.svg │ │ │ │ ├── menu-unfold-3-line 2.svg │ │ │ │ ├── menu-unfold-3-line.svg │ │ │ │ ├── menu-unfold-4-line 2.svg │ │ │ │ ├── menu-unfold-4-line.svg │ │ │ │ ├── menu-unfold-line.svg │ │ │ │ ├── more-2-line.svg │ │ │ │ ├── more-line.svg │ │ │ │ ├── notification-badge-line.svg │ │ │ │ ├── progress-1-line.svg │ │ │ │ ├── progress-2-line.svg │ │ │ │ ├── progress-3-line.svg │ │ │ │ ├── progress-4-line.svg │ │ │ │ ├── progress-5-line.svg │ │ │ │ ├── progress-6-line.svg │ │ │ │ ├── progress-7-line.svg │ │ │ │ ├── progress-8-line.svg │ │ │ │ ├── prohibited-2-line.svg │ │ │ │ ├── prohibited-line.svg │ │ │ │ ├── question-line.svg │ │ │ │ ├── radio-button-line.svg │ │ │ │ ├── refresh-line.svg │ │ │ │ ├── search-2-line.svg │ │ │ │ ├── search-eye-line.svg │ │ │ │ ├── search-line.svg │ │ │ │ ├── settings-2-line.svg │ │ │ │ ├── settings-3-line.svg │ │ │ │ ├── settings-4-line.svg │ │ │ │ ├── settings-5-line.svg │ │ │ │ ├── settings-6-line.svg │ │ │ │ ├── settings-line.svg │ │ │ │ ├── share-2-line.svg │ │ │ │ ├── share-box-line.svg │ │ │ │ ├── share-circle-line.svg │ │ │ │ ├── share-forward-2-line.svg │ │ │ │ ├── share-forward-box-line.svg │ │ │ │ ├── share-forward-line.svg │ │ │ │ ├── share-line.svg │ │ │ │ ├── shield-check-line.svg │ │ │ │ ├── shield-cross-line.svg │ │ │ │ ├── shield-flash-line.svg │ │ │ │ ├── shield-keyhole-line.svg │ │ │ │ ├── shield-line.svg │ │ │ │ ├── shield-star-line.svg │ │ │ │ ├── shield-user-line.svg │ │ │ │ ├── side-bar-line.svg │ │ │ │ ├── sidebar-fold-line.svg │ │ │ │ ├── sidebar-unfold-line.svg │ │ │ │ ├── spam-2-line.svg │ │ │ │ ├── spam-3-line.svg │ │ │ │ ├── spam-line.svg │ │ │ │ ├── star-half-line.svg │ │ │ │ ├── star-half-s-line.svg │ │ │ │ ├── star-line.svg │ │ │ │ ├── star-s-line.svg │ │ │ │ ├── subtract-line.svg │ │ │ │ ├── thumb-down-line.svg │ │ │ │ ├── thumb-up-line.svg │ │ │ │ ├── time-line.svg │ │ │ │ ├── timer-2-line.svg │ │ │ │ ├── timer-flash-line.svg │ │ │ │ ├── timer-line.svg │ │ │ │ ├── toggle-line.svg │ │ │ │ ├── upload-2-line.svg │ │ │ │ ├── upload-cloud-2-line.svg │ │ │ │ ├── upload-cloud-line.svg │ │ │ │ ├── upload-line.svg │ │ │ │ ├── zoom-in-line.svg │ │ │ │ └── zoom-out-line.svg │ │ │ ├── User-Faces │ │ │ │ ├── account-box-line.svg │ │ │ │ ├── account-circle-line.svg │ │ │ │ ├── account-pin-box-line.svg │ │ │ │ ├── account-pin-circle-line.svg │ │ │ │ ├── admin-line.svg │ │ │ │ ├── aliens-line.svg │ │ │ │ ├── bear-smile-line.svg │ │ │ │ ├── body-scan-line.svg │ │ │ │ ├── contacts-line.svg │ │ │ │ ├── criminal-line.svg │ │ │ │ ├── emotion-2-line.svg │ │ │ │ ├── emotion-happy-line.svg │ │ │ │ ├── emotion-laugh-line.svg │ │ │ │ ├── emotion-line.svg │ │ │ │ ├── emotion-normal-line.svg │ │ │ │ ├── emotion-sad-line.svg │ │ │ │ ├── emotion-unhappy-line.svg │ │ │ │ ├── genderless-line.svg │ │ │ │ ├── ghost-2-line.svg │ │ │ │ ├── ghost-line.svg │ │ │ │ ├── ghost-smile-line.svg │ │ │ │ ├── group-2-line.svg │ │ │ │ ├── group-3-line.svg │ │ │ │ ├── group-line.svg │ │ │ │ ├── men-line.svg │ │ │ │ ├── mickey-line.svg │ │ │ │ ├── open-arm-line.svg │ │ │ │ ├── parent-line.svg │ │ │ │ ├── robot-2-line.svg │ │ │ │ ├── robot-3-line.svg │ │ │ │ ├── robot-line.svg │ │ │ │ ├── skull-2-line.svg │ │ │ │ ├── skull-line.svg │ │ │ │ ├── spy-line.svg │ │ │ │ ├── star-smile-line.svg │ │ │ │ ├── team-line.svg │ │ │ │ ├── travesti-line.svg │ │ │ │ ├── user-2-line.svg │ │ │ │ ├── user-3-line.svg │ │ │ │ ├── user-4-line.svg │ │ │ │ ├── user-5-line.svg │ │ │ │ ├── user-6-line.svg │ │ │ │ ├── user-add-line.svg │ │ │ │ ├── user-follow-line.svg │ │ │ │ ├── user-forbid-line.svg │ │ │ │ ├── user-heart-line.svg │ │ │ │ ├── user-line.svg │ │ │ │ ├── user-location-line.svg │ │ │ │ ├── user-received-2-line.svg │ │ │ │ ├── user-received-line.svg │ │ │ │ ├── user-search-line.svg │ │ │ │ ├── user-settings-line.svg │ │ │ │ ├── user-shared-2-line.svg │ │ │ │ ├── user-shared-line.svg │ │ │ │ ├── user-smile-line.svg │ │ │ │ ├── user-star-line.svg │ │ │ │ ├── user-unfollow-line.svg │ │ │ │ ├── user-voice-line.svg │ │ │ │ └── women-line.svg │ │ │ └── Weather │ │ │ │ ├── blaze-line.svg │ │ │ │ ├── celsius-line.svg │ │ │ │ ├── cloud-windy-line.svg │ │ │ │ ├── cloudy-2-line.svg │ │ │ │ ├── cloudy-line.svg │ │ │ │ ├── drizzle-line.svg │ │ │ │ ├── earthquake-line.svg │ │ │ │ ├── fahrenheit-line.svg │ │ │ │ ├── fire-line.svg │ │ │ │ ├── flashlight-line.svg │ │ │ │ ├── flood-line.svg │ │ │ │ ├── foggy-line.svg │ │ │ │ ├── hail-line.svg │ │ │ │ ├── haze-2-line.svg │ │ │ │ ├── haze-line.svg │ │ │ │ ├── heavy-showers-line.svg │ │ │ │ ├── meteor-line.svg │ │ │ │ ├── mist-line.svg │ │ │ │ ├── moon-clear-line.svg │ │ │ │ ├── moon-cloudy-line.svg │ │ │ │ ├── moon-foggy-line.svg │ │ │ │ ├── moon-line.svg │ │ │ │ ├── rainbow-line.svg │ │ │ │ ├── rainy-line.svg │ │ │ │ ├── shining-2-line.svg │ │ │ │ ├── shining-line.svg │ │ │ │ ├── showers-line.svg │ │ │ │ ├── snowflake-line.svg │ │ │ │ ├── snowy-line.svg │ │ │ │ ├── sparkling-2-line.svg │ │ │ │ ├── sparkling-line.svg │ │ │ │ ├── sun-cloudy-line.svg │ │ │ │ ├── sun-foggy-line.svg │ │ │ │ ├── sun-line.svg │ │ │ │ ├── temp-cold-line.svg │ │ │ │ ├── temp-hot-line.svg │ │ │ │ ├── thunderstorms-line.svg │ │ │ │ ├── tornado-line.svg │ │ │ │ ├── typhoon-line.svg │ │ │ │ ├── water-percent-line.svg │ │ │ │ └── windy-line.svg │ │ ├── icons │ │ │ ├── account.svg │ │ │ ├── api.svg │ │ │ ├── audio.svg │ │ │ ├── boolean.svg │ │ │ ├── channel.svg │ │ │ ├── close.svg │ │ │ ├── code.svg │ │ │ ├── color.svg │ │ │ ├── console.svg │ │ │ ├── date.svg │ │ │ ├── datetime.svg │ │ │ ├── edit.svg │ │ │ ├── html.svg │ │ │ ├── image.svg │ │ │ ├── info.svg │ │ │ ├── license.svg │ │ │ ├── link.svg │ │ │ ├── list-items.svg │ │ │ ├── list.svg │ │ │ ├── locales.svg │ │ │ ├── lock.svg │ │ │ ├── logging.svg │ │ │ ├── module.svg │ │ │ ├── number.svg │ │ │ ├── object.svg │ │ │ ├── queue.svg │ │ │ ├── search.svg │ │ │ ├── select.svg │ │ │ ├── settings.svg │ │ │ ├── spaces.svg │ │ │ ├── table.svg │ │ │ ├── tags.svg │ │ │ ├── text.svg │ │ │ ├── time.svg │ │ │ ├── users.svg │ │ │ ├── video.svg │ │ │ ├── worker.svg │ │ │ └── wysiwyg.svg │ │ ├── js │ │ │ ├── components.js │ │ │ └── settings.js │ │ ├── vendor │ │ │ ├── graphiql │ │ │ │ ├── graphiql.min.css │ │ │ │ ├── graphiql.min.js │ │ │ │ ├── react-dom.production.min.js │ │ │ │ └── react.production.min.js │ │ │ ├── jsdiff.js │ │ │ ├── rapidoc.js │ │ │ └── xterm │ │ │ │ ├── xterm-addon-fit.js │ │ │ │ ├── xterm.css │ │ │ │ └── xterm.js │ │ └── vue-components │ │ │ ├── bucket-file.js │ │ │ ├── dashboard │ │ │ ├── license.js │ │ │ └── spaces.js │ │ │ ├── fields │ │ │ ├── manager.js │ │ │ └── renderer.js │ │ │ ├── icon-picker.js │ │ │ ├── revisions │ │ │ ├── dialog.js │ │ │ └── widget.js │ │ │ └── system-terminal.js │ ├── bootstrap.php │ ├── cli.php │ ├── data │ │ └── locales.php │ └── views │ │ ├── api │ │ ├── graphql-viewer.php │ │ ├── index.php │ │ ├── key.php │ │ └── rest-api-viewer.php │ │ ├── info.php │ │ ├── locales │ │ ├── index.php │ │ └── locale.php │ │ ├── logs │ │ └── index.php │ │ ├── settings.php │ │ ├── spaces │ │ ├── create.php │ │ └── index.php │ │ ├── tower.php │ │ ├── users │ │ ├── index.php │ │ ├── roles │ │ │ ├── index.php │ │ │ └── role.php │ │ └── user.php │ │ └── worker │ │ └── index.php └── Updater │ ├── Command │ └── App │ │ └── Update.php │ ├── Controller │ └── Updater.php │ ├── Helper │ └── Updater.php │ ├── README.md │ ├── admin.php │ ├── bootstrap.php │ ├── cli.php │ ├── icon.svg │ └── views │ └── index.php ├── package.json ├── robots.txt ├── storage ├── .gitkeep ├── cache │ └── .gitkeep ├── data │ └── .gitkeep ├── logs │ └── .gitkeep ├── tmp │ └── .gitkeep └── uploads │ └── .gitkeep └── tower /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/.htaccess -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | bin-links=false 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/composer.json -------------------------------------------------------------------------------- /cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/cron.php -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/favicon.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/index.php -------------------------------------------------------------------------------- /install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/install/index.php -------------------------------------------------------------------------------- /lib/CLI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/CLI.php -------------------------------------------------------------------------------- /lib/DeepArrayIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/DeepArrayIterator.php -------------------------------------------------------------------------------- /lib/DotEnv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/DotEnv.php -------------------------------------------------------------------------------- /lib/ESQL/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/ESQL/Client.php -------------------------------------------------------------------------------- /lib/ESQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/ESQL/README.md -------------------------------------------------------------------------------- /lib/FileStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/FileStorage.php -------------------------------------------------------------------------------- /lib/IndexHybrid/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/IndexHybrid/Manager.php -------------------------------------------------------------------------------- /lib/IndexHybrid/Meilisearch/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/IndexHybrid/Meilisearch/Index.php -------------------------------------------------------------------------------- /lib/IndexHybrid/Meilisearch/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/IndexHybrid/Meilisearch/Manager.php -------------------------------------------------------------------------------- /lib/IndexHybrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/IndexHybrid/README.md -------------------------------------------------------------------------------- /lib/IndexLite/Autocomplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/IndexLite/Autocomplete.php -------------------------------------------------------------------------------- /lib/IndexLite/FuzzyEnhancer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/IndexLite/FuzzyEnhancer.php -------------------------------------------------------------------------------- /lib/IndexLite/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/IndexLite/Index.php -------------------------------------------------------------------------------- /lib/IndexLite/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/IndexLite/Manager.php -------------------------------------------------------------------------------- /lib/IndexLite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/IndexLite/README.md -------------------------------------------------------------------------------- /lib/IndexLite/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/IndexLite/Utils.php -------------------------------------------------------------------------------- /lib/JSONStream/CollectionReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/JSONStream/CollectionReader.php -------------------------------------------------------------------------------- /lib/JSONStream/CollectionWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/JSONStream/CollectionWriter.php -------------------------------------------------------------------------------- /lib/Lime/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/Lime/App.php -------------------------------------------------------------------------------- /lib/Lime/Helper/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/Lime/Helper/Cache.php -------------------------------------------------------------------------------- /lib/Lime/Helper/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/Lime/Helper/Filesystem.php -------------------------------------------------------------------------------- /lib/Lime/Helper/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/Lime/Helper/Session.php -------------------------------------------------------------------------------- /lib/Lime/Helper/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/Lime/Helper/Utils.php -------------------------------------------------------------------------------- /lib/Lime/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/Lime/Request.php -------------------------------------------------------------------------------- /lib/Lime/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/Lime/Response.php -------------------------------------------------------------------------------- /lib/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/Mailer.php -------------------------------------------------------------------------------- /lib/MemoryStorage/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MemoryStorage/Client.php -------------------------------------------------------------------------------- /lib/MongoHybrid/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoHybrid/Client.php -------------------------------------------------------------------------------- /lib/MongoHybrid/Mongo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoHybrid/Mongo.php -------------------------------------------------------------------------------- /lib/MongoHybrid/MongoLite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoHybrid/MongoLite.php -------------------------------------------------------------------------------- /lib/MongoHybrid/ResultSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoHybrid/ResultSet.php -------------------------------------------------------------------------------- /lib/MongoHybrid/SQLToMongoQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoHybrid/SQLToMongoQuery.php -------------------------------------------------------------------------------- /lib/MongoLite/Aggregation/Cursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoLite/Aggregation/Cursor.php -------------------------------------------------------------------------------- /lib/MongoLite/Aggregation/ValueAccessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoLite/Aggregation/ValueAccessor.php -------------------------------------------------------------------------------- /lib/MongoLite/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoLite/Client.php -------------------------------------------------------------------------------- /lib/MongoLite/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoLite/Collection.php -------------------------------------------------------------------------------- /lib/MongoLite/Cursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoLite/Cursor.php -------------------------------------------------------------------------------- /lib/MongoLite/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoLite/Database.php -------------------------------------------------------------------------------- /lib/MongoLite/Projection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoLite/Projection.php -------------------------------------------------------------------------------- /lib/MongoLite/QueryOptimizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoLite/QueryOptimizer.php -------------------------------------------------------------------------------- /lib/MongoLite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoLite/README.md -------------------------------------------------------------------------------- /lib/MongoLite/UtilArrayQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/MongoLite/UtilArrayQuery.php -------------------------------------------------------------------------------- /lib/QueueLite/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/QueueLite/Queue.php -------------------------------------------------------------------------------- /lib/QueueLite/Worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/QueueLite/Worker.php -------------------------------------------------------------------------------- /lib/RedisLite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/RedisLite.php -------------------------------------------------------------------------------- /lib/SVGSanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/SVGSanitizer.php -------------------------------------------------------------------------------- /lib/SimpleImageLib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/SimpleImageLib.php -------------------------------------------------------------------------------- /lib/SwaggerPhp/AlternativeDocBlockParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/SwaggerPhp/AlternativeDocBlockParser.php -------------------------------------------------------------------------------- /lib/SwaggerPhp/AlternativeTokenAnalyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/SwaggerPhp/AlternativeTokenAnalyser.php -------------------------------------------------------------------------------- /lib/SwaggerPhp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/SwaggerPhp/README.md -------------------------------------------------------------------------------- /lib/Thumbhash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/Thumbhash.php -------------------------------------------------------------------------------- /lib/_autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/_autoload.php -------------------------------------------------------------------------------- /lib/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/autoload.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-crt-php/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-crt-php/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /lib/vendor/aws/aws-crt-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-crt-php/LICENSE -------------------------------------------------------------------------------- /lib/vendor/aws/aws-crt-php/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /lib/vendor/aws/aws-crt-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-crt-php/README.md -------------------------------------------------------------------------------- /lib/vendor/aws/aws-crt-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-crt-php/composer.json -------------------------------------------------------------------------------- /lib/vendor/aws/aws-crt-php/format-check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-crt-php/format-check.py -------------------------------------------------------------------------------- /lib/vendor/aws/aws-crt-php/src/AWS/CRT/CRT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-crt-php/src/AWS/CRT/CRT.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-crt-php/src/AWS/CRT/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-crt-php/src/AWS/CRT/Log.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-crt-php/src/AWS/CRT/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-crt-php/src/AWS/CRT/Options.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/CRT_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/CRT_INSTRUCTIONS.md -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/LICENSE -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/NOTICE -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/THIRD-PARTY-LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/THIRD-PARTY-LICENSES -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/composer.json -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Api/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Api/AbstractModel.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Api/ApiProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Api/ApiProvider.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Api/DocModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Api/DocModel.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Api/ListShape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Api/ListShape.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Api/MapShape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Api/MapShape.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Api/Operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Api/Operation.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Api/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Api/Service.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Api/Shape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Api/Shape.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Api/ShapeMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Api/ShapeMap.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Api/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Api/Validator.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Arn/Arn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Arn/Arn.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Arn/ArnInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Arn/ArnInterface.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Arn/ArnParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Arn/ArnParser.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/AwsClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/AwsClient.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/AwsClientTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/AwsClientTrait.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/CacheInterface.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/ClientResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/ClientResolver.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Command.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/CommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/CommandInterface.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/CommandPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/CommandPool.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Crypto/Cipher/Cbc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Crypto/Cipher/Cbc.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/HandlerList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/HandlerList.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/HasDataTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/HasDataTrait.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/HashInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/HashInterface.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/HashingStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/HashingStream.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/History.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/JsonCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/JsonCompiler.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Kms/KmsClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Kms/KmsClient.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/LruArrayCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/LruArrayCache.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/MetricsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/MetricsBuilder.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Middleware.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/MockHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/MockHandler.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/MultiRegionClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/MultiRegionClient.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/PhpHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/PhpHash.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Psr16CacheAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Psr16CacheAdapter.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/PsrCacheAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/PsrCacheAdapter.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Result.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/ResultInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/ResultInterface.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/ResultPaginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/ResultPaginator.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Retry/RateLimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Retry/RateLimiter.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/RetryMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/RetryMiddleware.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/RetryMiddlewareV2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/RetryMiddlewareV2.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/S3/BatchDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/S3/BatchDelete.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/S3/MultipartCopy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/S3/MultipartCopy.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/S3/ObjectCopier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/S3/ObjectCopier.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/S3/ObjectUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/S3/ObjectUploader.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/S3/PostObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/S3/PostObject.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/S3/PostObjectV4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/S3/PostObjectV4.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/S3/S3Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/S3/S3Client.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/S3/S3ClientTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/S3/S3ClientTrait.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/S3/S3UriParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/S3/S3UriParser.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/S3/SSECMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/S3/SSECMiddleware.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/S3/StreamWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/S3/StreamWrapper.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/S3/Transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/S3/Transfer.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/SSO/SSOClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/SSO/SSOClient.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Sdk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Sdk.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Sts/StsClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Sts/StsClient.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Token/SsoToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Token/SsoToken.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Token/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Token/Token.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/Waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/Waiter.php -------------------------------------------------------------------------------- /lib/vendor/aws/aws-sdk-php/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/aws/aws-sdk-php/src/functions.php -------------------------------------------------------------------------------- /lib/vendor/bacon/bacon-qr-code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/bacon/bacon-qr-code/LICENSE -------------------------------------------------------------------------------- /lib/vendor/bacon/bacon-qr-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/bacon/bacon-qr-code/README.md -------------------------------------------------------------------------------- /lib/vendor/bacon/bacon-qr-code/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/bacon/bacon-qr-code/composer.json -------------------------------------------------------------------------------- /lib/vendor/bacon/bacon-qr-code/src/Writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/bacon/bacon-qr-code/src/Writer.php -------------------------------------------------------------------------------- /lib/vendor/claviska/simpleimage/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/claviska/simpleimage/.editorconfig -------------------------------------------------------------------------------- /lib/vendor/claviska/simpleimage/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/claviska/simpleimage/LICENSE.md -------------------------------------------------------------------------------- /lib/vendor/claviska/simpleimage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/claviska/simpleimage/README.md -------------------------------------------------------------------------------- /lib/vendor/claviska/simpleimage/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/claviska/simpleimage/composer.json -------------------------------------------------------------------------------- /lib/vendor/colinodell/json5/.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/colinodell/json5/.phpstorm.meta.php -------------------------------------------------------------------------------- /lib/vendor/colinodell/json5/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/colinodell/json5/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/colinodell/json5/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/colinodell/json5/LICENSE.md -------------------------------------------------------------------------------- /lib/vendor/colinodell/json5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/colinodell/json5/README.md -------------------------------------------------------------------------------- /lib/vendor/colinodell/json5/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/colinodell/json5/composer.json -------------------------------------------------------------------------------- /lib/vendor/colinodell/json5/phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/colinodell/json5/phpcs.xml.dist -------------------------------------------------------------------------------- /lib/vendor/colinodell/json5/phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/colinodell/json5/phpstan.neon.dist -------------------------------------------------------------------------------- /lib/vendor/colinodell/json5/src/Json5Decoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/colinodell/json5/src/Json5Decoder.php -------------------------------------------------------------------------------- /lib/vendor/colinodell/json5/src/SyntaxError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/colinodell/json5/src/SyntaxError.php -------------------------------------------------------------------------------- /lib/vendor/colinodell/json5/src/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/colinodell/json5/src/global.php -------------------------------------------------------------------------------- /lib/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /lib/vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /lib/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/composer/LICENSE -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /lib/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/composer/installed.json -------------------------------------------------------------------------------- /lib/vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/composer/installed.php -------------------------------------------------------------------------------- /lib/vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /lib/vendor/dasprid/enum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/dasprid/enum/LICENSE -------------------------------------------------------------------------------- /lib/vendor/dasprid/enum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/dasprid/enum/README.md -------------------------------------------------------------------------------- /lib/vendor/dasprid/enum/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/dasprid/enum/composer.json -------------------------------------------------------------------------------- /lib/vendor/dasprid/enum/src/AbstractEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/dasprid/enum/src/AbstractEnum.php -------------------------------------------------------------------------------- /lib/vendor/dasprid/enum/src/EnumMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/dasprid/enum/src/EnumMap.php -------------------------------------------------------------------------------- /lib/vendor/dasprid/enum/src/NullValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/dasprid/enum/src/NullValue.php -------------------------------------------------------------------------------- /lib/vendor/firebase/php-jwt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/firebase/php-jwt/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/firebase/php-jwt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/firebase/php-jwt/LICENSE -------------------------------------------------------------------------------- /lib/vendor/firebase/php-jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/firebase/php-jwt/README.md -------------------------------------------------------------------------------- /lib/vendor/firebase/php-jwt/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/firebase/php-jwt/composer.json -------------------------------------------------------------------------------- /lib/vendor/firebase/php-jwt/src/CachedKeySet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/firebase/php-jwt/src/CachedKeySet.php -------------------------------------------------------------------------------- /lib/vendor/firebase/php-jwt/src/JWK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/firebase/php-jwt/src/JWK.php -------------------------------------------------------------------------------- /lib/vendor/firebase/php-jwt/src/JWT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/firebase/php-jwt/src/JWT.php -------------------------------------------------------------------------------- /lib/vendor/firebase/php-jwt/src/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/firebase/php-jwt/src/Key.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/guzzle/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/guzzle/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/guzzle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/guzzle/LICENSE -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/guzzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/guzzle/README.md -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/guzzle/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/guzzle/UPGRADING.md -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/guzzle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/guzzle/composer.json -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/guzzle/src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/guzzle/src/Client.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/guzzle/src/ClientTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/guzzle/src/ClientTrait.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/guzzle/src/HandlerStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/guzzle/src/HandlerStack.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/guzzle/src/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/guzzle/src/Middleware.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/guzzle/src/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/guzzle/src/Pool.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/guzzle/src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/guzzle/src/Utils.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/guzzle/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/guzzle/src/functions.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/promises/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/promises/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/promises/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/promises/LICENSE -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/promises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/promises/README.md -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/promises/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/promises/composer.json -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/promises/src/Coroutine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/promises/src/Coroutine.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/promises/src/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/promises/src/Create.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/promises/src/Each.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/promises/src/Each.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/promises/src/Is.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/promises/src/Is.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/promises/src/Promise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/promises/src/Promise.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/promises/src/TaskQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/promises/src/TaskQueue.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/promises/src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/promises/src/Utils.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/LICENSE -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/README.md -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/composer.json -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/AppendStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/AppendStream.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/BufferStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/BufferStream.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/CachingStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/CachingStream.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/DroppingStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/DroppingStream.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/FnStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/FnStream.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/Header.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/HttpFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/HttpFactory.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/InflateStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/InflateStream.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/LazyOpenStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/LazyOpenStream.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/LimitStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/LimitStream.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/Message.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/MessageTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/MessageTrait.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/MimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/MimeType.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/NoSeekStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/NoSeekStream.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/PumpStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/PumpStream.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/Query.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/Request.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/Response.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/Rfc7230.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/Rfc7230.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/ServerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/ServerRequest.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/Stream.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/StreamWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/StreamWrapper.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/UploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/UploadedFile.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/Uri.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/UriComparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/UriComparator.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/UriNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/UriNormalizer.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/UriResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/UriResolver.php -------------------------------------------------------------------------------- /lib/vendor/guzzlehttp/psr7/src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/guzzlehttp/psr7/src/Utils.php -------------------------------------------------------------------------------- /lib/vendor/jumbojett/openid-connect-php/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | .phpunit.result.cache 5 | -------------------------------------------------------------------------------- /lib/vendor/jumbojett/openid-connect-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/jumbojett/openid-connect-php/LICENSE -------------------------------------------------------------------------------- /lib/vendor/jumbojett/openid-connect-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/jumbojett/openid-connect-php/README.md -------------------------------------------------------------------------------- /lib/vendor/ksubileau/color-thief-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/ksubileau/color-thief-php/LICENSE -------------------------------------------------------------------------------- /lib/vendor/league/color-extractor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/color-extractor/.gitignore -------------------------------------------------------------------------------- /lib/vendor/league/color-extractor/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/color-extractor/.php_cs -------------------------------------------------------------------------------- /lib/vendor/league/color-extractor/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/color-extractor/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/vendor/league/color-extractor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/color-extractor/LICENSE -------------------------------------------------------------------------------- /lib/vendor/league/color-extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/color-extractor/README.md -------------------------------------------------------------------------------- /lib/vendor/league/color-extractor/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/color-extractor/composer.json -------------------------------------------------------------------------------- /lib/vendor/league/color-extractor/src/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/color-extractor/src/Color.php -------------------------------------------------------------------------------- /lib/vendor/league/color-extractor/src/Palette.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/color-extractor/src/Palette.php -------------------------------------------------------------------------------- /lib/vendor/league/flysystem-aws-s3-v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/flysystem-aws-s3-v3/LICENSE -------------------------------------------------------------------------------- /lib/vendor/league/flysystem-local/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/flysystem-local/LICENSE -------------------------------------------------------------------------------- /lib/vendor/league/flysystem-local/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/flysystem-local/composer.json -------------------------------------------------------------------------------- /lib/vendor/league/flysystem/INFO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/flysystem/INFO.md -------------------------------------------------------------------------------- /lib/vendor/league/flysystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/flysystem/LICENSE -------------------------------------------------------------------------------- /lib/vendor/league/flysystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/flysystem/composer.json -------------------------------------------------------------------------------- /lib/vendor/league/flysystem/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/flysystem/readme.md -------------------------------------------------------------------------------- /lib/vendor/league/flysystem/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/flysystem/src/Config.php -------------------------------------------------------------------------------- /lib/vendor/league/flysystem/src/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/flysystem/src/Filesystem.php -------------------------------------------------------------------------------- /lib/vendor/league/flysystem/src/MountManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/flysystem/src/MountManager.php -------------------------------------------------------------------------------- /lib/vendor/league/flysystem/src/PathPrefixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/flysystem/src/PathPrefixer.php -------------------------------------------------------------------------------- /lib/vendor/league/flysystem/src/Visibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/flysystem/src/Visibility.php -------------------------------------------------------------------------------- /lib/vendor/league/mime-type-detection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/league/mime-type-detection/LICENSE -------------------------------------------------------------------------------- /lib/vendor/maennchen/zipstream-php/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/maennchen/zipstream-php/.editorconfig -------------------------------------------------------------------------------- /lib/vendor/maennchen/zipstream-php/.tool-versions: -------------------------------------------------------------------------------- 1 | php 8.4.10 2 | -------------------------------------------------------------------------------- /lib/vendor/maennchen/zipstream-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/maennchen/zipstream-php/LICENSE -------------------------------------------------------------------------------- /lib/vendor/maennchen/zipstream-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/maennchen/zipstream-php/README.md -------------------------------------------------------------------------------- /lib/vendor/maennchen/zipstream-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/maennchen/zipstream-php/composer.json -------------------------------------------------------------------------------- /lib/vendor/maennchen/zipstream-php/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/maennchen/zipstream-php/psalm.xml -------------------------------------------------------------------------------- /lib/vendor/maennchen/zipstream-php/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/maennchen/zipstream-php/src/File.php -------------------------------------------------------------------------------- /lib/vendor/maennchen/zipstream-php/src/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/maennchen/zipstream-php/src/Time.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/LICENSE -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/composer.json -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/sbom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/sbom.json -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/Builder/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/Builder/Query.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/Builder/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/Builder/Search.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/Builder/Stage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/Builder/Stage.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/ChangeStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/ChangeStream.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/Client.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/Codec/Codec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/Codec/Codec.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/Codec/Decoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/Codec/Decoder.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/Codec/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/Codec/Encoder.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/Collection.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/Database.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/DeleteResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/DeleteResult.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/GridFS/Bucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/GridFS/Bucket.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/Operation/Find.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/Operation/Find.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/PsrLogAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/PsrLogAdapter.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/UpdateResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/UpdateResult.php -------------------------------------------------------------------------------- /lib/vendor/mongodb/mongodb/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mongodb/mongodb/src/functions.php -------------------------------------------------------------------------------- /lib/vendor/mtdowling/jmespath.php/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mtdowling/jmespath.php/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/mtdowling/jmespath.php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mtdowling/jmespath.php/LICENSE -------------------------------------------------------------------------------- /lib/vendor/mtdowling/jmespath.php/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mtdowling/jmespath.php/README.rst -------------------------------------------------------------------------------- /lib/vendor/mtdowling/jmespath.php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mtdowling/jmespath.php/composer.json -------------------------------------------------------------------------------- /lib/vendor/mtdowling/jmespath.php/src/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mtdowling/jmespath.php/src/Env.php -------------------------------------------------------------------------------- /lib/vendor/mtdowling/jmespath.php/src/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mtdowling/jmespath.php/src/Lexer.php -------------------------------------------------------------------------------- /lib/vendor/mtdowling/jmespath.php/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mtdowling/jmespath.php/src/Parser.php -------------------------------------------------------------------------------- /lib/vendor/mtdowling/jmespath.php/src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/mtdowling/jmespath.php/src/Utils.php -------------------------------------------------------------------------------- /lib/vendor/nikic/php-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/nikic/php-parser/LICENSE -------------------------------------------------------------------------------- /lib/vendor/nikic/php-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/nikic/php-parser/README.md -------------------------------------------------------------------------------- /lib/vendor/nikic/php-parser/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/nikic/php-parser/composer.json -------------------------------------------------------------------------------- /lib/vendor/paragonie/random_compat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/paragonie/random_compat/LICENSE -------------------------------------------------------------------------------- /lib/vendor/paragonie/random_compat/build-phar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/paragonie/random_compat/build-phar.sh -------------------------------------------------------------------------------- /lib/vendor/paragonie/random_compat/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/paragonie/random_compat/composer.json -------------------------------------------------------------------------------- /lib/vendor/paragonie/random_compat/lib/random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/paragonie/random_compat/lib/random.php -------------------------------------------------------------------------------- /lib/vendor/paragonie/random_compat/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/paragonie/random_compat/psalm.xml -------------------------------------------------------------------------------- /lib/vendor/phpmailer/phpmailer/COMMITMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpmailer/phpmailer/COMMITMENT -------------------------------------------------------------------------------- /lib/vendor/phpmailer/phpmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpmailer/phpmailer/LICENSE -------------------------------------------------------------------------------- /lib/vendor/phpmailer/phpmailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpmailer/phpmailer/README.md -------------------------------------------------------------------------------- /lib/vendor/phpmailer/phpmailer/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpmailer/phpmailer/SECURITY.md -------------------------------------------------------------------------------- /lib/vendor/phpmailer/phpmailer/SMTPUTF8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpmailer/phpmailer/SMTPUTF8.md -------------------------------------------------------------------------------- /lib/vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.12.0 2 | -------------------------------------------------------------------------------- /lib/vendor/phpmailer/phpmailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpmailer/phpmailer/composer.json -------------------------------------------------------------------------------- /lib/vendor/phpmailer/phpmailer/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpmailer/phpmailer/src/Exception.php -------------------------------------------------------------------------------- /lib/vendor/phpmailer/phpmailer/src/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpmailer/phpmailer/src/OAuth.php -------------------------------------------------------------------------------- /lib/vendor/phpmailer/phpmailer/src/PHPMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpmailer/phpmailer/src/PHPMailer.php -------------------------------------------------------------------------------- /lib/vendor/phpmailer/phpmailer/src/POP3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpmailer/phpmailer/src/POP3.php -------------------------------------------------------------------------------- /lib/vendor/phpmailer/phpmailer/src/SMTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpmailer/phpmailer/src/SMTP.php -------------------------------------------------------------------------------- /lib/vendor/phpseclib/phpseclib/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpseclib/phpseclib/AUTHORS -------------------------------------------------------------------------------- /lib/vendor/phpseclib/phpseclib/BACKERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpseclib/phpseclib/BACKERS.md -------------------------------------------------------------------------------- /lib/vendor/phpseclib/phpseclib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpseclib/phpseclib/LICENSE -------------------------------------------------------------------------------- /lib/vendor/phpseclib/phpseclib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpseclib/phpseclib/README.md -------------------------------------------------------------------------------- /lib/vendor/phpseclib/phpseclib/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpseclib/phpseclib/composer.json -------------------------------------------------------------------------------- /lib/vendor/phpstan/phpdoc-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpstan/phpdoc-parser/LICENSE -------------------------------------------------------------------------------- /lib/vendor/phpstan/phpdoc-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpstan/phpdoc-parser/README.md -------------------------------------------------------------------------------- /lib/vendor/phpstan/phpdoc-parser/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpstan/phpdoc-parser/UPGRADING.md -------------------------------------------------------------------------------- /lib/vendor/phpstan/phpdoc-parser/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpstan/phpdoc-parser/composer.json -------------------------------------------------------------------------------- /lib/vendor/phpstan/phpdoc-parser/src/Ast/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/phpstan/phpdoc-parser/src/Ast/Node.php -------------------------------------------------------------------------------- /lib/vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/container/.gitignore -------------------------------------------------------------------------------- /lib/vendor/psr/container/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/container/LICENSE -------------------------------------------------------------------------------- /lib/vendor/psr/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/container/README.md -------------------------------------------------------------------------------- /lib/vendor/psr/container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/container/composer.json -------------------------------------------------------------------------------- /lib/vendor/psr/http-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/http-client/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/psr/http-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/http-client/LICENSE -------------------------------------------------------------------------------- /lib/vendor/psr/http-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/http-client/README.md -------------------------------------------------------------------------------- /lib/vendor/psr/http-client/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/http-client/composer.json -------------------------------------------------------------------------------- /lib/vendor/psr/http-factory/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/http-factory/LICENSE -------------------------------------------------------------------------------- /lib/vendor/psr/http-factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/http-factory/README.md -------------------------------------------------------------------------------- /lib/vendor/psr/http-factory/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/http-factory/composer.json -------------------------------------------------------------------------------- /lib/vendor/psr/http-message/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/http-message/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/http-message/LICENSE -------------------------------------------------------------------------------- /lib/vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/http-message/README.md -------------------------------------------------------------------------------- /lib/vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/http-message/composer.json -------------------------------------------------------------------------------- /lib/vendor/psr/http-message/src/UriInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/http-message/src/UriInterface.php -------------------------------------------------------------------------------- /lib/vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /lib/vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/log/README.md -------------------------------------------------------------------------------- /lib/vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /lib/vendor/psr/log/src/AbstractLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/log/src/AbstractLogger.php -------------------------------------------------------------------------------- /lib/vendor/psr/log/src/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/log/src/LogLevel.php -------------------------------------------------------------------------------- /lib/vendor/psr/log/src/LoggerAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/log/src/LoggerAwareInterface.php -------------------------------------------------------------------------------- /lib/vendor/psr/log/src/LoggerAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/log/src/LoggerAwareTrait.php -------------------------------------------------------------------------------- /lib/vendor/psr/log/src/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/log/src/LoggerInterface.php -------------------------------------------------------------------------------- /lib/vendor/psr/log/src/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/log/src/LoggerTrait.php -------------------------------------------------------------------------------- /lib/vendor/psr/log/src/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/psr/log/src/NullLogger.php -------------------------------------------------------------------------------- /lib/vendor/ralouphie/getallheaders/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/ralouphie/getallheaders/LICENSE -------------------------------------------------------------------------------- /lib/vendor/ralouphie/getallheaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/ralouphie/getallheaders/README.md -------------------------------------------------------------------------------- /lib/vendor/ralouphie/getallheaders/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/ralouphie/getallheaders/composer.json -------------------------------------------------------------------------------- /lib/vendor/robthree/twofactorauth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/robthree/twofactorauth/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/robthree/twofactorauth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/robthree/twofactorauth/LICENSE -------------------------------------------------------------------------------- /lib/vendor/robthree/twofactorauth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/robthree/twofactorauth/README.md -------------------------------------------------------------------------------- /lib/vendor/robthree/twofactorauth/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/robthree/twofactorauth/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Application.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Color.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Command/Command.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/ConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/ConsoleEvents.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Cursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Cursor.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Event/ConsoleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Event/ConsoleEvent.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Helper/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Helper/Dumper.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Helper/Helper.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Helper/HelperSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Helper/HelperSet.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Helper/ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Helper/ProgressBar.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Helper/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Helper/Table.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Helper/TableCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Helper/TableCell.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Helper/TableRows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Helper/TableRows.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Helper/TableStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Helper/TableStyle.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Input/ArgvInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Input/ArgvInput.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Input/ArrayInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Input/ArrayInput.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Input/Input.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Input/InputOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Input/InputOption.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Input/StringInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Input/StringInput.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Output/NullOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Output/NullOutput.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Output/Output.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Question/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Question/Question.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Style/OutputStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Style/OutputStyle.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Style/SymfonyStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Style/SymfonyStyle.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Terminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Terminal.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/Tester/TesterTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/Tester/TesterTrait.php -------------------------------------------------------------------------------- /lib/vendor/symfony/console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/console/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/deprecation-contracts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/deprecation-contracts/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/finder/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/finder/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/symfony/finder/Finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/finder/Finder.php -------------------------------------------------------------------------------- /lib/vendor/symfony/finder/Gitignore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/finder/Gitignore.php -------------------------------------------------------------------------------- /lib/vendor/symfony/finder/Glob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/finder/Glob.php -------------------------------------------------------------------------------- /lib/vendor/symfony/finder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/finder/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/finder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/finder/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/finder/SplFileInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/finder/SplFileInfo.php -------------------------------------------------------------------------------- /lib/vendor/symfony/finder/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/finder/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-ctype/Ctype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-ctype/Ctype.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-ctype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-ctype/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-ctype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-ctype/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-ctype/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-ctype/bootstrap.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-ctype/bootstrap80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-ctype/bootstrap80.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-ctype/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-ctype/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-intl-grapheme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-intl-grapheme/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-mbstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-mbstring/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-mbstring/Mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-mbstring/Mbstring.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-mbstring/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php73/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php73/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php73/Php73.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php73/Php73.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php73/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php73/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php73/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php73/bootstrap.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php73/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php73/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php80/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php80/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php80/Php80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php80/Php80.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php80/PhpToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php80/PhpToken.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php80/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php80/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php80/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php80/bootstrap.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php80/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php80/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php84/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php84/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php84/Php84.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php84/Php84.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php84/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php84/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php84/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php84/bootstrap.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php84/bootstrap82.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php84/bootstrap82.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php84/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php84/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php85/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php85/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php85/Php85.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php85/Php85.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php85/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php85/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php85/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php85/bootstrap.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php85/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/polyfill-php85/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/process/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/process/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/symfony/process/ExecutableFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/process/ExecutableFinder.php -------------------------------------------------------------------------------- /lib/vendor/symfony/process/InputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/process/InputStream.php -------------------------------------------------------------------------------- /lib/vendor/symfony/process/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/process/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/process/PhpProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/process/PhpProcess.php -------------------------------------------------------------------------------- /lib/vendor/symfony/process/PhpSubprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/process/PhpSubprocess.php -------------------------------------------------------------------------------- /lib/vendor/symfony/process/Pipes/UnixPipes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/process/Pipes/UnixPipes.php -------------------------------------------------------------------------------- /lib/vendor/symfony/process/Pipes/WindowsPipes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/process/Pipes/WindowsPipes.php -------------------------------------------------------------------------------- /lib/vendor/symfony/process/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/process/Process.php -------------------------------------------------------------------------------- /lib/vendor/symfony/process/ProcessUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/process/ProcessUtils.php -------------------------------------------------------------------------------- /lib/vendor/symfony/process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/process/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/process/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/process/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/service-contracts/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/service-contracts/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/symfony/service-contracts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/service-contracts/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/service-contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/service-contracts/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/string/AbstractString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/string/AbstractString.php -------------------------------------------------------------------------------- /lib/vendor/symfony/string/ByteString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/string/ByteString.php -------------------------------------------------------------------------------- /lib/vendor/symfony/string/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/string/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/symfony/string/CodePointString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/string/CodePointString.php -------------------------------------------------------------------------------- /lib/vendor/symfony/string/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/string/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/string/LazyString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/string/LazyString.php -------------------------------------------------------------------------------- /lib/vendor/symfony/string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/string/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/string/Resources/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/string/Resources/functions.php -------------------------------------------------------------------------------- /lib/vendor/symfony/string/UnicodeString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/string/UnicodeString.php -------------------------------------------------------------------------------- /lib/vendor/symfony/string/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/string/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/yaml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/yaml/CHANGELOG.md -------------------------------------------------------------------------------- /lib/vendor/symfony/yaml/Command/LintCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/yaml/Command/LintCommand.php -------------------------------------------------------------------------------- /lib/vendor/symfony/yaml/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/yaml/Dumper.php -------------------------------------------------------------------------------- /lib/vendor/symfony/yaml/Escaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/yaml/Escaper.php -------------------------------------------------------------------------------- /lib/vendor/symfony/yaml/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/yaml/Inline.php -------------------------------------------------------------------------------- /lib/vendor/symfony/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/yaml/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/yaml/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/yaml/Parser.php -------------------------------------------------------------------------------- /lib/vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/yaml/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/yaml/Tag/TaggedValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/yaml/Tag/TaggedValue.php -------------------------------------------------------------------------------- /lib/vendor/symfony/yaml/Unescaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/yaml/Unescaper.php -------------------------------------------------------------------------------- /lib/vendor/symfony/yaml/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/yaml/Yaml.php -------------------------------------------------------------------------------- /lib/vendor/symfony/yaml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/symfony/yaml/composer.json -------------------------------------------------------------------------------- /lib/vendor/webonyx/graphql-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/webonyx/graphql-php/LICENSE -------------------------------------------------------------------------------- /lib/vendor/webonyx/graphql-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/webonyx/graphql-php/README.md -------------------------------------------------------------------------------- /lib/vendor/webonyx/graphql-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/webonyx/graphql-php/composer.json -------------------------------------------------------------------------------- /lib/vendor/webonyx/graphql-php/src/Deferred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/webonyx/graphql-php/src/Deferred.php -------------------------------------------------------------------------------- /lib/vendor/webonyx/graphql-php/src/GraphQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/webonyx/graphql-php/src/GraphQL.php -------------------------------------------------------------------------------- /lib/vendor/webonyx/graphql-php/src/Utils/AST.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/webonyx/graphql-php/src/Utils/AST.php -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/LICENSE -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/NOTICE -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/README.md -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/composer.json -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/package.json -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/rector.php -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/src/Analysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/src/Analysis.php -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/src/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/src/Context.php -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/src/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/src/Generator.php -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/src/Pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/src/Pipeline.php -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/src/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/src/Serializer.php -------------------------------------------------------------------------------- /lib/vendor/zircote/swagger-php/src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/lib/vendor/zircote/swagger-php/src/Util.php -------------------------------------------------------------------------------- /modules/App/Controller/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Controller/App.php -------------------------------------------------------------------------------- /modules/App/Controller/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Controller/Auth.php -------------------------------------------------------------------------------- /modules/App/Controller/Authenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Controller/Authenticated.php -------------------------------------------------------------------------------- /modules/App/Controller/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Controller/Base.php -------------------------------------------------------------------------------- /modules/App/Controller/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Controller/Dashboard.php -------------------------------------------------------------------------------- /modules/App/Controller/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Controller/Utils.php -------------------------------------------------------------------------------- /modules/App/Exception/AppNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Exception/AppNotification.php -------------------------------------------------------------------------------- /modules/App/GraphQL/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/GraphQL/Query.php -------------------------------------------------------------------------------- /modules/App/GraphQL/Types/FieldTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/GraphQL/Types/FieldTypes.php -------------------------------------------------------------------------------- /modules/App/GraphQL/Types/JsonType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/GraphQL/Types/JsonType.php -------------------------------------------------------------------------------- /modules/App/GraphQL/Types/NumericType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/GraphQL/Types/NumericType.php -------------------------------------------------------------------------------- /modules/App/GraphQL/Types/UploadType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/GraphQL/Types/UploadType.php -------------------------------------------------------------------------------- /modules/App/Helper/Acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/Acl.php -------------------------------------------------------------------------------- /modules/App/Helper/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/Admin.php -------------------------------------------------------------------------------- /modules/App/Helper/ApiRateLimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/ApiRateLimiter.php -------------------------------------------------------------------------------- /modules/App/Helper/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/App.php -------------------------------------------------------------------------------- /modules/App/Helper/Async.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/Async.php -------------------------------------------------------------------------------- /modules/App/Helper/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/Auth.php -------------------------------------------------------------------------------- /modules/App/Helper/Csrf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/Csrf.php -------------------------------------------------------------------------------- /modules/App/Helper/EventStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/EventStream.php -------------------------------------------------------------------------------- /modules/App/Helper/JWT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/JWT.php -------------------------------------------------------------------------------- /modules/App/Helper/Menus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/Menus.php -------------------------------------------------------------------------------- /modules/App/Helper/ResponseCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/ResponseCache.php -------------------------------------------------------------------------------- /modules/App/Helper/TWFA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/TWFA.php -------------------------------------------------------------------------------- /modules/App/Helper/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/Theme.php -------------------------------------------------------------------------------- /modules/App/Helper/i18n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/Helper/i18n.php -------------------------------------------------------------------------------- /modules/App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/README.md -------------------------------------------------------------------------------- /modules/App/RestApi/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/RestApi/Query.php -------------------------------------------------------------------------------- /modules/App/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/admin.php -------------------------------------------------------------------------------- /modules/App/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/api.php -------------------------------------------------------------------------------- /modules/App/assets/app.bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/app.bundle.css -------------------------------------------------------------------------------- /modules/App/assets/app.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/app.bundle.js -------------------------------------------------------------------------------- /modules/App/assets/build.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/build.bundle.js -------------------------------------------------------------------------------- /modules/App/assets/components/app-avatar/app-avatar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/App/assets/components/switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/components/switch.css -------------------------------------------------------------------------------- /modules/App/assets/components/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/components/tooltip.css -------------------------------------------------------------------------------- /modules/App/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/css/app.css -------------------------------------------------------------------------------- /modules/App/assets/css/vendor/ag-grid-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/css/vendor/ag-grid-theme.css -------------------------------------------------------------------------------- /modules/App/assets/css/vendor/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/css/vendor/codemirror.css -------------------------------------------------------------------------------- /modules/App/assets/css/vendor/kiss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/css/vendor/kiss.css -------------------------------------------------------------------------------- /modules/App/assets/css/vendor/tiptap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/css/vendor/tiptap.css -------------------------------------------------------------------------------- /modules/App/assets/dialog/app-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/dialog/app-search.js -------------------------------------------------------------------------------- /modules/App/assets/img/ag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/img/ag.svg -------------------------------------------------------------------------------- /modules/App/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/img/logo.svg -------------------------------------------------------------------------------- /modules/App/assets/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/js/admin.js -------------------------------------------------------------------------------- /modules/App/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/js/app.js -------------------------------------------------------------------------------- /modules/App/assets/js/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/js/app/app.js -------------------------------------------------------------------------------- /modules/App/assets/js/app/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/js/app/assets.js -------------------------------------------------------------------------------- /modules/App/assets/js/app/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/js/app/ui.js -------------------------------------------------------------------------------- /modules/App/assets/js/app/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/js/app/utils.js -------------------------------------------------------------------------------- /modules/App/assets/js/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/js/components.js -------------------------------------------------------------------------------- /modules/App/assets/js/vue-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/js/vue-view.js -------------------------------------------------------------------------------- /modules/App/assets/js/vue-view/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/js/vue-view/ui.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/JSON5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/JSON5.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/ag-grid/ag-grid-vue3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/ag-grid/ag-grid-vue3.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/ag-grid/ag-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/ag-grid/ag-grid.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/ag-grid/ag-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/ag-grid/ag-grid.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/animate.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/chartjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/chartjs/README.md -------------------------------------------------------------------------------- /modules/App/assets/vendor/chartjs/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/chartjs/chart.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/chartjs/vue-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/chartjs/vue-chart.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/codemirror/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/codemirror/CHANGELOG.md -------------------------------------------------------------------------------- /modules/App/assets/vendor/codemirror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/codemirror/LICENSE -------------------------------------------------------------------------------- /modules/App/assets/vendor/codemirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/codemirror/README.md -------------------------------------------------------------------------------- /modules/App/assets/vendor/codemirror/mode/d/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/codemirror/mode/d/d.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/codemirror/mode/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/codemirror/mode/meta.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/codemirror/mode/q/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/codemirror/mode/q/q.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/codemirror/mode/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/codemirror/mode/r/r.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/date-fns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/date-fns.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/dompurify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/dompurify.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/i18n.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/components/parallax/parallax.css: -------------------------------------------------------------------------------- 1 | kiss-parallax { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/components/row.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/components/row.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/align.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/align.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/base.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/color.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/flex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/flex.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/form.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/position.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/position.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/section.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/section.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/sizes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/sizes.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/spacing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/spacing.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/text.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/utils.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/visibility.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/visibility.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/css/width.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/css/width.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/js/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/js/events.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/js/utils.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/lib.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/lib.css -------------------------------------------------------------------------------- /modules/App/assets/vendor/kiss/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/kiss/lib.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/mousetrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/mousetrap.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/storage.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/vue/vue-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/vue/vue-router.js -------------------------------------------------------------------------------- /modules/App/assets/vendor/vue/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vendor/vue/vue.js -------------------------------------------------------------------------------- /modules/App/assets/vue-components/user-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/assets/vue-components/user-info.js -------------------------------------------------------------------------------- /modules/App/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/bootstrap.php -------------------------------------------------------------------------------- /modules/App/emails/magiclink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/emails/magiclink.php -------------------------------------------------------------------------------- /modules/App/emails/reset-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/emails/reset-password.php -------------------------------------------------------------------------------- /modules/App/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/functions.php -------------------------------------------------------------------------------- /modules/App/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/icon.svg -------------------------------------------------------------------------------- /modules/App/layouts/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/layouts/app.php -------------------------------------------------------------------------------- /modules/App/layouts/canvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/layouts/canvas.php -------------------------------------------------------------------------------- /modules/App/layouts/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/layouts/email.php -------------------------------------------------------------------------------- /modules/App/layouts/raw.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/App/views/auth/dialog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/views/auth/dialog.php -------------------------------------------------------------------------------- /modules/App/views/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/views/auth/login.php -------------------------------------------------------------------------------- /modules/App/views/auth/magiclink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/views/auth/magiclink.php -------------------------------------------------------------------------------- /modules/App/views/auth/magiclink.twofa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/views/auth/magiclink.twofa.php -------------------------------------------------------------------------------- /modules/App/views/auth/reset-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/views/auth/reset-password.php -------------------------------------------------------------------------------- /modules/App/views/auth/set-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/views/auth/set-password.php -------------------------------------------------------------------------------- /modules/App/views/dashboard/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/views/dashboard/index.php -------------------------------------------------------------------------------- /modules/App/views/errors/401.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/views/errors/401.php -------------------------------------------------------------------------------- /modules/App/views/errors/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/views/errors/404.php -------------------------------------------------------------------------------- /modules/App/views/errors/500-debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/views/errors/500-debug.php -------------------------------------------------------------------------------- /modules/App/views/errors/500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/views/errors/500.php -------------------------------------------------------------------------------- /modules/App/views/lockedResouce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/App/views/lockedResouce.php -------------------------------------------------------------------------------- /modules/Assets/Command/GeneratePresets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/Command/GeneratePresets.php -------------------------------------------------------------------------------- /modules/Assets/Command/Thumbhash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/Command/Thumbhash.php -------------------------------------------------------------------------------- /modules/Assets/Controller/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/Controller/Assets.php -------------------------------------------------------------------------------- /modules/Assets/Helper/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/Helper/Asset.php -------------------------------------------------------------------------------- /modules/Assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/README.md -------------------------------------------------------------------------------- /modules/Assets/Utils/Ffmpeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/Utils/Ffmpeg.php -------------------------------------------------------------------------------- /modules/Assets/Utils/Img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/Utils/Img.php -------------------------------------------------------------------------------- /modules/Assets/Utils/Vips.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/Utils/Vips.php -------------------------------------------------------------------------------- /modules/Assets/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/admin.php -------------------------------------------------------------------------------- /modules/Assets/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/api.php -------------------------------------------------------------------------------- /modules/Assets/assets/components/display-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/components/display-image.js -------------------------------------------------------------------------------- /modules/Assets/assets/css/asset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/css/asset.css -------------------------------------------------------------------------------- /modules/Assets/assets/css/uppy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/css/uppy.css -------------------------------------------------------------------------------- /modules/Assets/assets/dialogs/asset-folder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/dialogs/asset-folder.js -------------------------------------------------------------------------------- /modules/Assets/assets/dialogs/asset-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/dialogs/asset-picker.js -------------------------------------------------------------------------------- /modules/Assets/assets/dialogs/asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/dialogs/asset.js -------------------------------------------------------------------------------- /modules/Assets/assets/icons/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/icons/file.svg -------------------------------------------------------------------------------- /modules/Assets/assets/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/icons/folder.svg -------------------------------------------------------------------------------- /modules/Assets/assets/icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/icons/video.svg -------------------------------------------------------------------------------- /modules/Assets/assets/js/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/js/assets.js -------------------------------------------------------------------------------- /modules/Assets/assets/js/uppy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/js/uppy.js -------------------------------------------------------------------------------- /modules/Assets/assets/vendor/thumbhash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/vendor/thumbhash.js -------------------------------------------------------------------------------- /modules/Assets/assets/vendor/uppy/uppy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/vendor/uppy/uppy.css -------------------------------------------------------------------------------- /modules/Assets/assets/vendor/uppy/uppy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/assets/vendor/uppy/uppy.js -------------------------------------------------------------------------------- /modules/Assets/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/bootstrap.php -------------------------------------------------------------------------------- /modules/Assets/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/cli.php -------------------------------------------------------------------------------- /modules/Assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/icon.svg -------------------------------------------------------------------------------- /modules/Assets/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Assets/views/index.php -------------------------------------------------------------------------------- /modules/Content/Command/Field/Remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Command/Field/Remove.php -------------------------------------------------------------------------------- /modules/Content/Command/Field/Rename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Command/Field/Rename.php -------------------------------------------------------------------------------- /modules/Content/Command/Index/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Command/Index/Create.php -------------------------------------------------------------------------------- /modules/Content/Command/Index/ListIndexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Command/Index/ListIndexes.php -------------------------------------------------------------------------------- /modules/Content/Command/Index/Remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Command/Index/Remove.php -------------------------------------------------------------------------------- /modules/Content/Controller/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Controller/Collection.php -------------------------------------------------------------------------------- /modules/Content/Controller/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Controller/Content.php -------------------------------------------------------------------------------- /modules/Content/Controller/Models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Controller/Models.php -------------------------------------------------------------------------------- /modules/Content/Controller/Singleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Controller/Singleton.php -------------------------------------------------------------------------------- /modules/Content/Controller/Tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Controller/Tree.php -------------------------------------------------------------------------------- /modules/Content/Helper/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Helper/Content.php -------------------------------------------------------------------------------- /modules/Content/Helper/LinkedContentFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Helper/LinkedContentFilter.php -------------------------------------------------------------------------------- /modules/Content/Helper/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/Helper/Model.php -------------------------------------------------------------------------------- /modules/Content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/README.md -------------------------------------------------------------------------------- /modules/Content/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/admin.php -------------------------------------------------------------------------------- /modules/Content/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/api.php -------------------------------------------------------------------------------- /modules/Content/assets/dialogs/batch-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/assets/dialogs/batch-edit.js -------------------------------------------------------------------------------- /modules/Content/assets/dialogs/view-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/assets/dialogs/view-settings.js -------------------------------------------------------------------------------- /modules/Content/assets/icons/collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/assets/icons/collection.svg -------------------------------------------------------------------------------- /modules/Content/assets/icons/reference.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/assets/icons/reference.svg -------------------------------------------------------------------------------- /modules/Content/assets/icons/singleton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/assets/icons/singleton.svg -------------------------------------------------------------------------------- /modules/Content/assets/icons/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/assets/icons/tree.svg -------------------------------------------------------------------------------- /modules/Content/assets/js/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/assets/js/content.js -------------------------------------------------------------------------------- /modules/Content/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/bootstrap.php -------------------------------------------------------------------------------- /modules/Content/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/cli.php -------------------------------------------------------------------------------- /modules/Content/graphql/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/graphql/content.php -------------------------------------------------------------------------------- /modules/Content/graphql/models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/graphql/models.php -------------------------------------------------------------------------------- /modules/Content/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/icon.svg -------------------------------------------------------------------------------- /modules/Content/views/collection/item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/views/collection/item.php -------------------------------------------------------------------------------- /modules/Content/views/collection/items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/views/collection/items.php -------------------------------------------------------------------------------- /modules/Content/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/views/index.php -------------------------------------------------------------------------------- /modules/Content/views/models/model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/views/models/model.php -------------------------------------------------------------------------------- /modules/Content/views/singleton/item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/views/singleton/item.php -------------------------------------------------------------------------------- /modules/Content/views/tree/item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/views/tree/item.php -------------------------------------------------------------------------------- /modules/Content/views/tree/items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Content/views/tree/items.php -------------------------------------------------------------------------------- /modules/Finder/Controller/Finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Finder/Controller/Finder.php -------------------------------------------------------------------------------- /modules/Finder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Finder/README.md -------------------------------------------------------------------------------- /modules/Finder/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Finder/admin.php -------------------------------------------------------------------------------- /modules/Finder/assets/dialogs/file-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Finder/assets/dialogs/file-editor.js -------------------------------------------------------------------------------- /modules/Finder/assets/dialogs/finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Finder/assets/dialogs/finder.js -------------------------------------------------------------------------------- /modules/Finder/assets/vue-components/finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Finder/assets/vue-components/finder.js -------------------------------------------------------------------------------- /modules/Finder/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Finder/bootstrap.php -------------------------------------------------------------------------------- /modules/Finder/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Finder/icon.svg -------------------------------------------------------------------------------- /modules/Finder/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Finder/views/index.php -------------------------------------------------------------------------------- /modules/Identi/Controller/Identi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Identi/Controller/Identi.php -------------------------------------------------------------------------------- /modules/Identi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Identi/README.md -------------------------------------------------------------------------------- /modules/Identi/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Identi/admin.php -------------------------------------------------------------------------------- /modules/Identi/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Identi/bootstrap.php -------------------------------------------------------------------------------- /modules/Identi/views/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Identi/views/error.php -------------------------------------------------------------------------------- /modules/Identi/views/login-dialog-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Identi/views/login-dialog-footer.php -------------------------------------------------------------------------------- /modules/System/Command/Cache/Flush.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Command/Cache/Flush.php -------------------------------------------------------------------------------- /modules/System/Command/Spaces/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Command/Spaces/Create.php -------------------------------------------------------------------------------- /modules/System/Command/Worker/ListWorkers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Command/Worker/ListWorkers.php -------------------------------------------------------------------------------- /modules/System/Command/Worker/Start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Command/Worker/Start.php -------------------------------------------------------------------------------- /modules/System/Command/Worker/Stop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Command/Worker/Stop.php -------------------------------------------------------------------------------- /modules/System/Command/i18n/CreateTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Command/i18n/CreateTranslation.php -------------------------------------------------------------------------------- /modules/System/Controller/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Controller/Api.php -------------------------------------------------------------------------------- /modules/System/Controller/Buckets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Controller/Buckets.php -------------------------------------------------------------------------------- /modules/System/Controller/Locales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Controller/Locales.php -------------------------------------------------------------------------------- /modules/System/Controller/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Controller/Logs.php -------------------------------------------------------------------------------- /modules/System/Controller/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Controller/Settings.php -------------------------------------------------------------------------------- /modules/System/Controller/Spaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Controller/Spaces.php -------------------------------------------------------------------------------- /modules/System/Controller/Tower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Controller/Tower.php -------------------------------------------------------------------------------- /modules/System/Controller/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Controller/Users.php -------------------------------------------------------------------------------- /modules/System/Controller/Users/Roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Controller/Users/Roles.php -------------------------------------------------------------------------------- /modules/System/Controller/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Controller/Utils.php -------------------------------------------------------------------------------- /modules/System/Controller/Worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Controller/Worker.php -------------------------------------------------------------------------------- /modules/System/Helper/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Helper/Api.php -------------------------------------------------------------------------------- /modules/System/Helper/License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Helper/License.php -------------------------------------------------------------------------------- /modules/System/Helper/Locales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Helper/Locales.php -------------------------------------------------------------------------------- /modules/System/Helper/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Helper/Log.php -------------------------------------------------------------------------------- /modules/System/Helper/Revisions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Helper/Revisions.php -------------------------------------------------------------------------------- /modules/System/Helper/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Helper/Settings.php -------------------------------------------------------------------------------- /modules/System/Helper/Spaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Helper/Spaces.php -------------------------------------------------------------------------------- /modules/System/Helper/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Helper/System.php -------------------------------------------------------------------------------- /modules/System/Helper/Worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/Helper/Worker.php -------------------------------------------------------------------------------- /modules/System/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/README.md -------------------------------------------------------------------------------- /modules/System/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/admin.php -------------------------------------------------------------------------------- /modules/System/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/api.php -------------------------------------------------------------------------------- /modules/System/assets/css/system.css: -------------------------------------------------------------------------------- 1 | [data-theme="dark"] .app-icon-preview img { 2 | filter: invert(100%); 3 | } 4 | 5 | -------------------------------------------------------------------------------- /modules/System/assets/dialogs/api-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/dialogs/api-viewer.js -------------------------------------------------------------------------------- /modules/System/assets/dialogs/bucket-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/dialogs/bucket-picker.js -------------------------------------------------------------------------------- /modules/System/assets/dialogs/content-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/dialogs/content-preview.js -------------------------------------------------------------------------------- /modules/System/assets/dialogs/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/dialogs/form.js -------------------------------------------------------------------------------- /modules/System/assets/dialogs/graphql-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/dialogs/graphql-viewer.js -------------------------------------------------------------------------------- /modules/System/assets/dialogs/json-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/dialogs/json-viewer.js -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Food/cup-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Food/cup-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Map/bike-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Map/bike-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Map/bus-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Map/bus-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Map/car-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Map/car-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Map/map-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Map/map-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Map/oil-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Map/oil-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Map/run-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Map/run-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Map/ship-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Map/ship-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Map/taxi-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Map/taxi-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Map/walk-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Map/walk-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Media/4k-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Media/4k-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Media/dv-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Media/dv-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Media/hd-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Media/hd-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Media/hq-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Media/hq-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/Media/mv-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/Media/mv-line.svg -------------------------------------------------------------------------------- /modules/System/assets/icon-sets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icon-sets/README.md -------------------------------------------------------------------------------- /modules/System/assets/icons/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/account.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/api.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/audio.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/boolean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/boolean.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/channel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/channel.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/close.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/code.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/color.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/console.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/date.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/datetime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/datetime.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/edit.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/html.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/image.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/info.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/license.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/license.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/link.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/list-items.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/list-items.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/list.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/locales.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/locales.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/lock.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/logging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/logging.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/module.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/module.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/number.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/object.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/queue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/queue.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/search.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/select.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/settings.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/spaces.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/table.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/tags.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/text.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/time.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/users.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/video.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/worker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/worker.svg -------------------------------------------------------------------------------- /modules/System/assets/icons/wysiwyg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/icons/wysiwyg.svg -------------------------------------------------------------------------------- /modules/System/assets/js/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/js/components.js -------------------------------------------------------------------------------- /modules/System/assets/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/js/settings.js -------------------------------------------------------------------------------- /modules/System/assets/vendor/jsdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/vendor/jsdiff.js -------------------------------------------------------------------------------- /modules/System/assets/vendor/rapidoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/vendor/rapidoc.js -------------------------------------------------------------------------------- /modules/System/assets/vendor/xterm/xterm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/vendor/xterm/xterm.css -------------------------------------------------------------------------------- /modules/System/assets/vendor/xterm/xterm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/assets/vendor/xterm/xterm.js -------------------------------------------------------------------------------- /modules/System/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/bootstrap.php -------------------------------------------------------------------------------- /modules/System/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/cli.php -------------------------------------------------------------------------------- /modules/System/data/locales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/data/locales.php -------------------------------------------------------------------------------- /modules/System/views/api/graphql-viewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/api/graphql-viewer.php -------------------------------------------------------------------------------- /modules/System/views/api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/api/index.php -------------------------------------------------------------------------------- /modules/System/views/api/key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/api/key.php -------------------------------------------------------------------------------- /modules/System/views/api/rest-api-viewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/api/rest-api-viewer.php -------------------------------------------------------------------------------- /modules/System/views/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/info.php -------------------------------------------------------------------------------- /modules/System/views/locales/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/locales/index.php -------------------------------------------------------------------------------- /modules/System/views/locales/locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/locales/locale.php -------------------------------------------------------------------------------- /modules/System/views/logs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/logs/index.php -------------------------------------------------------------------------------- /modules/System/views/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/settings.php -------------------------------------------------------------------------------- /modules/System/views/spaces/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/spaces/create.php -------------------------------------------------------------------------------- /modules/System/views/spaces/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/spaces/index.php -------------------------------------------------------------------------------- /modules/System/views/tower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/tower.php -------------------------------------------------------------------------------- /modules/System/views/users/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/users/index.php -------------------------------------------------------------------------------- /modules/System/views/users/roles/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/users/roles/index.php -------------------------------------------------------------------------------- /modules/System/views/users/roles/role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/users/roles/role.php -------------------------------------------------------------------------------- /modules/System/views/users/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/users/user.php -------------------------------------------------------------------------------- /modules/System/views/worker/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/System/views/worker/index.php -------------------------------------------------------------------------------- /modules/Updater/Command/App/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Updater/Command/App/Update.php -------------------------------------------------------------------------------- /modules/Updater/Controller/Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Updater/Controller/Updater.php -------------------------------------------------------------------------------- /modules/Updater/Helper/Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Updater/Helper/Updater.php -------------------------------------------------------------------------------- /modules/Updater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Updater/README.md -------------------------------------------------------------------------------- /modules/Updater/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Updater/admin.php -------------------------------------------------------------------------------- /modules/Updater/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Updater/bootstrap.php -------------------------------------------------------------------------------- /modules/Updater/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Updater/cli.php -------------------------------------------------------------------------------- /modules/Updater/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Updater/icon.svg -------------------------------------------------------------------------------- /modules/Updater/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/modules/Updater/views/index.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/package.json -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /storage/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cockpit-HQ/Cockpit/HEAD/tower --------------------------------------------------------------------------------