├── .drone.yml ├── .env ├── .env.sample ├── .gitlab-ci.yml ├── .gitlab └── agents │ └── oci-sandbox │ └── config.yaml ├── .php-cs-fixer.php ├── .rr.yaml ├── Api ├── Exportable.php ├── Factory.php └── Routes.php ├── Assets ├── avatars │ ├── blue │ │ ├── default-large.png │ │ ├── default-master.png │ │ ├── default-medium.png │ │ └── default-small.png │ ├── default-large.png │ ├── default-master.png │ ├── default-medium.png │ └── default-small.png ├── banners │ ├── 0.jpg │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg ├── fonts │ ├── Inter │ │ └── Inter-Bold.ttf │ ├── Roboto-Black.ttf │ ├── Roboto-Bold.ttf │ └── Roboto-Medium.ttf ├── logos │ ├── og-default.png │ └── white.png ├── photos │ ├── andromeda-galaxy.jpg │ ├── default-audio.jpg │ └── paywall-blur.jpeg └── tenant │ ├── default-favicon.png │ ├── default-horizontal-logo.png │ ├── default-monographic-icon.png │ └── default-square-logo.png ├── Behaviors └── Actorable.php ├── Cli ├── Controller.php ├── Factory.php └── Routes.php ├── Common ├── Access.php ├── ChannelMode.php ├── Cookie.php ├── EntityMutation.php ├── IpAddress.php ├── Jwt.php ├── PseudonymousIdentifier.php ├── Regex.php ├── Repository │ ├── AbstractRepositoryOpts.php │ ├── IterableEntity.php │ └── Response.php ├── StaticToInstance.php ├── SystemUser.php └── Urn.php ├── Components ├── Controller.php └── Email │ ├── banned.tpl │ ├── default.tpl │ ├── forgotpassword.tpl │ ├── welcome.md.tpl │ └── welcome.tpl ├── Controllers ├── Cli │ ├── ActivityPub.php │ ├── Ai.php │ ├── Analytics.php │ ├── Blockchain.php │ ├── BlockchainRestrictions.php │ ├── Boost.php │ ├── CaptionedActivities │ │ └── Generate.php │ ├── Cloudflare.php │ ├── Config.php │ ├── Contributions.php │ ├── CreateFoundersIndex.php │ ├── DWH.php │ ├── Demonetize.php │ ├── Email.php │ ├── EntityCentric.php │ ├── EventStreams.php │ ├── GiftCards.php │ ├── GuidServer.php │ ├── Help │ │ └── Email │ │ │ ├── exec.txt │ │ │ ├── testBoostComplete.txt │ │ │ ├── testWeMissYou.txt │ │ │ ├── testWelcomeComplete.txt │ │ │ ├── testWelcomeIncomplete.txt │ │ │ ├── testWirePromotion │ │ │ └── testWireReceived.txt │ ├── I18nExtractor.php │ ├── InferredTags │ │ └── Generate.php │ ├── Install.php │ ├── Matrix.php │ ├── MetricChangeSockets.php │ ├── Migrations │ │ ├── Boost.php │ │ ├── GroupMembers.php │ │ └── Plans.php │ ├── Moderation.php │ ├── MultiTenant │ │ ├── Bootstrap.php │ │ ├── Checkout │ │ │ └── Test.php │ │ ├── Lifecycle.php │ │ └── ProductionMobileAppVersion.php │ ├── MySQL.php │ ├── Nostr.php │ ├── Notification.php │ ├── PartnerEarnings.php │ ├── Payments │ │ ├── InAppPurchases.php │ │ ├── SiteMemberships.php │ │ └── Subscriptions.php │ ├── Plugins │ │ └── Create.php │ ├── PostHog.php │ ├── Pulsar.php │ ├── QueueRunner.php │ ├── Rewards.php │ ├── Rss │ │ └── Fetch.php │ ├── Search.php │ ├── Setup.php │ ├── Sitemaps.php │ ├── Snapshot.php │ ├── Stripe.php │ ├── SubscriptionSync.php │ ├── Supermind │ │ ├── Annotate.php │ │ ├── ExpireSupermindRequests.php │ │ └── SupermindRequestsExpiringSoon.php │ ├── Test.php │ ├── Top.php │ ├── Top │ │ └── All.php │ ├── Transcode.php │ ├── TwitterSync.php │ ├── User.php │ ├── Video.php │ └── YouTubeImporter.php ├── Legacy │ ├── search.php │ └── wall.php ├── api │ ├── api.php │ ├── v1 │ │ ├── admin │ │ │ ├── analytics │ │ │ │ ├── active.php │ │ │ │ ├── pageviews.php │ │ │ │ ├── retention.php │ │ │ │ └── signups.php │ │ │ ├── ban.php │ │ │ ├── monetization │ │ │ │ └── ban.php │ │ │ ├── rating.php │ │ │ ├── reports.php │ │ │ ├── reports │ │ │ │ └── appeals.php │ │ │ ├── tagcloud.php │ │ │ └── verify.php │ │ ├── analytics.php │ │ ├── authenticate.php │ │ ├── block.php │ │ ├── blog.php │ │ ├── boost.php │ │ ├── boost │ │ │ └── fetch.php │ │ ├── captcha.php │ │ ├── categories.php │ │ ├── categories │ │ │ └── featured.php │ │ ├── channel.php │ │ ├── comments.php │ │ ├── embed.php │ │ ├── entities.php │ │ ├── entities │ │ │ ├── explicit.php │ │ │ ├── featured.php │ │ │ ├── report.php │ │ │ ├── report │ │ │ │ └── appeal.php │ │ │ └── trending.php │ │ ├── forgotpassword.php │ │ ├── geolocation.php │ │ ├── groups.php │ │ ├── groups │ │ │ ├── group.php │ │ │ ├── invitations.php │ │ │ ├── management.php │ │ │ ├── membership.php │ │ │ ├── notifications.php │ │ │ └── review.php │ │ ├── guid.php │ │ ├── header.php │ │ ├── keys.php │ │ ├── logout.php │ │ ├── media.php │ │ ├── media │ │ │ ├── albums.php │ │ │ ├── recommended.php │ │ │ ├── thumbnails.php │ │ │ └── transcoding.php │ │ ├── minds │ │ │ └── config.php │ │ ├── monetization │ │ │ ├── ledger.php │ │ │ ├── revenue.php │ │ │ └── service │ │ │ │ └── analytics.php │ │ ├── newsfeed.php │ │ ├── newsfeed │ │ │ ├── oembed │ │ │ │ └── soundcloud.php │ │ │ └── preview.php │ │ ├── notifications.php │ │ ├── payments │ │ │ ├── export.php │ │ │ ├── stripe.php │ │ │ ├── subscribers.php │ │ │ └── subscriptions.php │ │ ├── plus.php │ │ ├── register.php │ │ ├── rewards │ │ │ └── data.php │ │ ├── settings.php │ │ ├── subscribe.php │ │ ├── thumbs.php │ │ ├── translation │ │ │ ├── languages.php │ │ │ └── translate.php │ │ ├── twofactor.php │ │ ├── votes.php │ │ ├── webhooks │ │ │ └── wire.php │ │ └── wire │ │ │ ├── ledger.php │ │ │ ├── sums.php │ │ │ ├── supporters.php │ │ │ └── threshold.php │ └── v2 │ │ ├── admin │ │ ├── analytics │ │ │ └── leaderboard.php │ │ ├── email.php │ │ ├── firehose.php │ │ ├── media │ │ │ └── transcode.php │ │ ├── nsfw.php │ │ ├── plus.php │ │ ├── pro.php │ │ ├── reindex.php │ │ ├── rewards │ │ │ └── withdrawals.php │ │ └── user.php │ │ ├── analytics.php │ │ ├── analytics │ │ ├── dashboards.php │ │ ├── pageview.php │ │ └── views.php │ │ ├── blockchain │ │ ├── contributions.php │ │ ├── contributions │ │ │ └── overview.php │ │ ├── proxy.php │ │ ├── rate.php │ │ ├── rewards.php │ │ ├── tde.php │ │ ├── transactions.php │ │ ├── transactions │ │ │ └── reports.php │ │ └── wallet.php │ │ ├── boost.php │ │ ├── boost │ │ ├── feed.php │ │ ├── fetch.php │ │ ├── peer.php │ │ └── prepare.php │ │ ├── canary.php │ │ ├── captcha.php │ │ ├── channels │ │ └── founders.php │ │ ├── comments.php │ │ ├── cookies.php │ │ ├── email │ │ ├── confirmation.php │ │ └── sendgrid.php │ │ ├── entities.php │ │ ├── entities │ │ └── suggested.php │ │ ├── faq.php │ │ ├── feeds.php │ │ ├── feeds │ │ ├── container.php │ │ ├── scheduled.php │ │ └── subscribed.php │ │ ├── hashtags │ │ ├── suggested.php │ │ └── user.php │ │ ├── issues.php │ │ ├── media │ │ ├── magicproxy.php │ │ ├── magnet.php │ │ ├── proxy.php │ │ ├── torrent.php │ │ ├── upload.php │ │ └── video.php │ │ ├── messenger │ │ ├── conversations.php │ │ ├── keys.php │ │ └── search.php │ │ ├── moderation │ │ ├── appeals.php │ │ ├── jury.php │ │ ├── report.php │ │ ├── reports.php │ │ ├── stats.php │ │ ├── strikes.php │ │ └── summons.php │ │ ├── mwa │ │ └── pv.php │ │ ├── newsfeed.php │ │ ├── newsfeed │ │ ├── pin.php │ │ └── remind.php │ │ ├── notifications │ │ ├── follow.php │ │ └── markers.php │ │ ├── oauth │ │ ├── session.php │ │ └── token.php │ │ ├── onboarding.php │ │ ├── onboarding │ │ └── progress.php │ │ ├── payments │ │ └── stripe │ │ │ ├── connect.php │ │ │ ├── connect │ │ │ ├── bank.php │ │ │ ├── document.php │ │ │ ├── terms.php │ │ │ └── update.php │ │ │ ├── intents.php │ │ │ ├── paymentmethods.php │ │ │ ├── paymentmethods │ │ │ └── apply.php │ │ │ └── transactions.php │ │ ├── permaweb.php │ │ ├── permissions │ │ └── comments.php │ │ ├── pro.php │ │ ├── pro │ │ └── settings.php │ │ ├── referrals.php │ │ ├── search │ │ ├── suggest.php │ │ └── suggest │ │ │ └── tags.php │ │ ├── sendwyre.php │ │ ├── sendwyre │ │ └── accounts.php │ │ ├── settings │ │ ├── delete.php │ │ ├── emails.php │ │ ├── password.php │ │ ├── theme.php │ │ └── tos.php │ │ ├── suggestions.php │ │ ├── video │ │ └── room.php │ │ ├── wallet │ │ ├── btc.php │ │ ├── btc │ │ │ └── address.php │ │ ├── usd.php │ │ └── usd │ │ │ ├── account.php │ │ │ ├── status.php │ │ │ └── verification.php │ │ └── wire.php ├── emails │ └── unsubscribe.php ├── fs │ ├── fs.php │ └── v1 │ │ ├── avatars.php │ │ ├── banners.php │ │ ├── paywall.php │ │ └── thumbnail.php ├── icon.php ├── oauth2 │ ├── implicit.php │ └── token.php └── thumbProxy.php ├── Core ├── AccountQuality │ ├── Controller.php │ ├── Manager.php │ ├── ManagerInterface.php │ ├── Models │ │ └── UserQualityScore.php │ ├── Module.php │ ├── Provider.php │ ├── Repository.php │ ├── RepositoryInterface.php │ ├── ResponseBuilders │ │ └── GetAccountQualityScoreResponseBuilder.php │ ├── Routes.php │ └── Validators │ │ └── GetAccountQualityScoreRequestValidator.php ├── ActivityPub │ ├── Attributes │ │ └── ExportProperty.php │ ├── Client.php │ ├── Controller.php │ ├── Enums │ │ └── ActivityFactoryOpEnum.php │ ├── Exceptions │ │ ├── MissingEntityException.php │ │ ├── NotImplementedException.php │ │ ├── RemoteConnectException.php │ │ ├── RemoteFetchException.php │ │ ├── RemoteGoneException.php │ │ └── RemoteRateLimitedException.php │ ├── Factories │ │ ├── ActivityFactory.php │ │ ├── ActorFactory.php │ │ ├── LikeFactory.php │ │ ├── ObjectFactory.php │ │ └── OutboxFactory.php │ ├── Helpers │ │ ├── ContentParserBuilder.php │ │ └── JsonLdHelper.php │ ├── JsonActivityResponse.php │ ├── Manager.php │ ├── Module.php │ ├── Provider.php │ ├── Repository.php │ ├── Routes.php │ ├── Services │ │ ├── EmitActivityService.php │ │ ├── FederationEnabledService.php │ │ ├── HttpSignatureService.php │ │ ├── ProcessActivityService.php │ │ ├── ProcessActorService.php │ │ ├── ProcessCollectionService.php │ │ └── ProcessObjectService.php │ ├── Subscriptions │ │ ├── ActivityPubEntitiesOpsSubscription.php │ │ └── ActivityPubEventStreamsSubscription.php │ └── Types │ │ ├── AbstractType.php │ │ ├── Activity │ │ ├── AcceptType.php │ │ ├── AnnounceType.php │ │ ├── CreateType.php │ │ ├── DeleteType.php │ │ ├── FlagType.php │ │ ├── FollowType.php │ │ ├── LikeType.php │ │ ├── UndoType.php │ │ └── UpdateType.php │ │ ├── Actor │ │ ├── AbstractActorType.php │ │ ├── ApplicationType.php │ │ ├── GroupType.php │ │ ├── OrganizationType.php │ │ ├── PersonType.php │ │ ├── PublicKeyType.php │ │ └── ServiceType.php │ │ ├── Core │ │ ├── ActivityType.php │ │ ├── CollectionPageType.php │ │ ├── CollectionPageTypeTrait.php │ │ ├── CollectionType.php │ │ ├── LinkType.php │ │ ├── ObjectType.php │ │ ├── OrderedCollectionPageType.php │ │ ├── OrderedCollectionType.php │ │ └── SourceType.php │ │ ├── Link │ │ └── MentionType.php │ │ └── Object │ │ ├── AudioType.php │ │ ├── DocumentType.php │ │ ├── ImageType.php │ │ └── NoteType.php ├── Admin │ ├── Controllers │ │ ├── AccountsController.php │ │ ├── ControllersProvider.php │ │ ├── HashtagExclusionController.php │ │ ├── ModerationController.php │ │ └── UsersPsrController.php │ ├── EventStreamsSubscriptions │ │ └── ActionEventNsfwLockStreamsSubscription.php │ ├── GraphQLMappings.php │ ├── Manager.php │ ├── Module.php │ ├── Provider.php │ ├── Repositories │ │ ├── HashtagExclusionRepository.php │ │ └── RepositoriesProvider.php │ ├── Routes.php │ ├── Services │ │ ├── HashtagExclusionService.php │ │ ├── ModerationService.php │ │ ├── ServicesProvider.php │ │ └── UsersService.php │ └── Types │ │ └── HashtagExclusion │ │ ├── HashtagExclusionEdge.php │ │ ├── HashtagExclusionNode.php │ │ └── HashtagExclusionsConnection.php ├── Ai │ ├── Module.php │ ├── Ollama │ │ ├── OllamaClient.php │ │ ├── OllamaMessage.php │ │ └── OllamaRoleEnum.php │ ├── Provider.php │ ├── Services │ │ ├── ChatProcessorService.php │ │ ├── CommentProcessorService.php │ │ └── EntityIntelligenceService.php │ └── Subscriptions │ │ ├── BotEntitiesOpsSubscription.php │ │ └── ChatBotEventsSubscription.php ├── Analytics │ ├── Aggregates │ │ ├── ActionsHistogram.php │ │ ├── Aggregate.php │ │ └── TopActions.php │ ├── AnalyticsProvider.php │ ├── App.php │ ├── Clicks │ │ ├── Delegates │ │ │ ├── ActionEventsDelegate.php │ │ │ └── PostHogDelegate.php │ │ └── Manager.php │ ├── Controller.php │ ├── Dashboards │ │ ├── DashboardCollectionInterface.php │ │ ├── DashboardInterface.php │ │ ├── EarningsDashboard.php │ │ ├── Engagement.php │ │ ├── EngagementDashboard.php │ │ ├── Filters │ │ │ ├── AbstractFilter.php │ │ │ ├── ChannelFilter.php │ │ │ ├── FilterGroup.php │ │ │ ├── FilterInterface.php │ │ │ ├── FilterOptions.php │ │ │ ├── FilterOptionsOption.php │ │ │ ├── FiltersCollection.php │ │ │ ├── PlatformFilter.php │ │ │ └── ViewTypeFilter.php │ │ ├── Manager.php │ │ ├── Metrics │ │ │ ├── AbstractMetric.php │ │ │ ├── ActiveUsersMetric.php │ │ │ ├── Earnings │ │ │ │ ├── AbstractEarningsMetric.php │ │ │ │ ├── PlusEarningsMetric.php │ │ │ │ ├── ReferralsEarningsMetric.php │ │ │ │ ├── SalesEarningsMetric.php │ │ │ │ ├── TotalEarningsMetric.php │ │ │ │ └── ViewsEarningsMetric.php │ │ │ ├── Engagement │ │ │ │ ├── AbstractEngagementMetric.php │ │ │ │ ├── CommentsMetric.php │ │ │ │ ├── ReferralsActiveMetric.php │ │ │ │ ├── ReferralsMetric.php │ │ │ │ ├── RemindsMetric.php │ │ │ │ ├── SubscribersMetric.php │ │ │ │ ├── UnlocksMetric.php │ │ │ │ └── VotesUpMetric.php │ │ │ ├── HistogramBucket.php │ │ │ ├── HistogramSegment.php │ │ │ ├── MetricSummary.php │ │ │ ├── MetricTimeseries.php │ │ │ ├── MetricsCollection.php │ │ │ ├── PageviewsMetric.php │ │ │ ├── SignupsMetric.php │ │ │ ├── TokenBalanceMetric.php │ │ │ ├── ViewsMetric.php │ │ │ ├── ViewsTableMetric.php │ │ │ └── Visualisations │ │ │ │ ├── AbstractVisualisation.php │ │ │ │ ├── ChartVisualisation.php │ │ │ │ ├── TableVisualisation.php │ │ │ │ └── VisualisationInterface.php │ │ ├── SummaryDashboard.php │ │ ├── Timespans │ │ │ ├── AbstractTimespan.php │ │ │ ├── MaxTimespan.php │ │ │ ├── MtdTimespan.php │ │ │ ├── TimespansCollection.php │ │ │ ├── TodayTimespan.php │ │ │ ├── YtdTimespan.php │ │ │ ├── _1yTimespan.php │ │ │ ├── _30dTimespan.php │ │ │ ├── _7dTimespan.php │ │ │ └── _90dTimespan.php │ │ ├── TokenDashboard.php │ │ ├── TrafficDashboard.php │ │ └── TrendingDashboard.php │ ├── EntityCentric │ │ ├── ActiveUsersSynchroniser.php │ │ ├── EngagementSynchroniser.php │ │ ├── EntityCentricRecord.php │ │ ├── Manager.php │ │ ├── PartnerEarningsSynchroniser.php │ │ ├── ReferralsSynchroniser.php │ │ ├── Repository.php │ │ ├── SignupsSynchroniser.php │ │ ├── Sums.php │ │ └── ViewsSynchroniser.php │ ├── Graphs │ │ ├── Aggregates │ │ │ ├── ActiveUsers.php │ │ │ ├── AggregateInterface.php │ │ │ ├── AvgPageviews.php │ │ │ ├── Comments.php │ │ │ ├── Interactions.php │ │ │ ├── OffchainBoosts.php │ │ │ ├── OffchainPlus.php │ │ │ ├── OffchainWire.php │ │ │ ├── OnchainBoosts.php │ │ │ ├── OnchainPlus.php │ │ │ ├── OnchainWire.php │ │ │ ├── Pageviews.php │ │ │ ├── Posts.php │ │ │ ├── Reminds.php │ │ │ ├── Rewards.php │ │ │ ├── Subscribers.php │ │ │ ├── TokenSales.php │ │ │ ├── TotalPageviews.php │ │ │ ├── UserSegments.php │ │ │ ├── Votes.php │ │ │ └── Withdraw.php │ │ ├── Graph.php │ │ ├── Manager.php │ │ ├── Mappings.php │ │ └── Repository.php │ ├── Iterators │ │ ├── EventsIterator.php │ │ ├── PointsSnapshotIterator.php │ │ ├── SignupsIterator.php │ │ ├── SignupsOffsetIterator.php │ │ └── UsersWithFacebookIterator.php │ ├── Manager.php │ ├── Metrics │ │ ├── Active.php │ │ ├── Engagement.php │ │ ├── Event.php │ │ ├── Impression.php │ │ ├── Pageview.php │ │ ├── Retention.php │ │ └── Signup.php │ ├── Module.php │ ├── PostHog │ │ ├── Controllers │ │ │ └── PostHogGqlController.php │ │ ├── GraphQLMappings.php │ │ ├── Models │ │ │ └── PostHogPerson.php │ │ ├── Module.php │ │ ├── PostHogConfig.php │ │ ├── PostHogPersonService.php │ │ ├── PostHogQueryService.php │ │ ├── PostHogService.php │ │ └── Provider.php │ ├── Routes.php │ ├── TenantAdminAnalytics │ │ ├── Controllers │ │ │ └── AdminAnalyticsController.php │ │ ├── Enums │ │ │ ├── AnalyticsMetricEnum.php │ │ │ ├── AnalyticsResolutionEnum.php │ │ │ └── AnalyticsTableEnum.php │ │ ├── GraphQLMappings.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ ├── Services │ │ │ └── AdminAnalyticsFetchService.php │ │ └── Types │ │ │ ├── AnalyticsChartType.php │ │ │ ├── AnalyticsKpiType.php │ │ │ ├── AnalyticsTableConnection.php │ │ │ ├── Chart │ │ │ ├── AnalyticsChartBucketType.php │ │ │ └── AnalyticsChartSegmentType.php │ │ │ └── Table │ │ │ ├── AnalyticsTableRowActivityNode.php │ │ │ ├── AnalyticsTableRowEdge.php │ │ │ ├── AnalyticsTableRowGroupNode.php │ │ │ ├── AnalyticsTableRowNodeInterface.php │ │ │ └── AnalyticsTableRowUserNode.php │ ├── Timestamps.php │ ├── User.php │ ├── UserStates │ │ ├── ActiveUsersIterator.php │ │ ├── Delegates │ │ │ └── EntityDelegate.php │ │ ├── Manager.php │ │ ├── UserActivityBuckets.php │ │ ├── UserState.php │ │ └── UserStateIterator.php │ └── Views │ │ ├── Delegates │ │ └── ViewsDelegate.php │ │ ├── ElasticRepository.php │ │ ├── Manager.php │ │ ├── Repository.php │ │ └── View.php ├── Authentication │ ├── Builders │ │ └── Response │ │ │ └── AuthenticationResponseBuilder.php │ ├── Controller.php │ ├── Exceptions │ │ └── AuthenticationAttemptsExceededException.php │ ├── InvalidCredentialsException.php │ ├── Manager.php │ ├── Module.php │ ├── Oidc │ │ ├── Controllers │ │ │ ├── OidcGqlController.php │ │ │ └── OidcPsr7Controller.php │ │ ├── Events.php │ │ ├── GqlTypes │ │ │ └── OidcProviderPublic.php │ │ ├── GraphQLMappings.php │ │ ├── Models │ │ │ └── OidcProvider.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ ├── OidcProvidersRepository.php │ │ │ └── OidcUserRepository.php │ │ ├── Routes.php │ │ └── Services │ │ │ ├── OidcAuthService.php │ │ │ ├── OidcProvidersService.php │ │ │ └── OidcUserService.php │ ├── PersonalApiKeys │ │ ├── Controllers │ │ │ └── PersonalApiKeyController.php │ │ ├── GraphQLMappings.php │ │ ├── Module.php │ │ ├── PersonalApiKey.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ └── PersonalApiKeyRepository.php │ │ └── Services │ │ │ ├── PersonalApiKeyAuthService.php │ │ │ ├── PersonalApiKeyHashingService.php │ │ │ └── PersonalApiKeyManagementService.php │ ├── Provider.php │ ├── Routes.php │ ├── Services │ │ └── RegisterService.php │ └── Validators │ │ └── AuthenticationRequestValidator.php ├── Blockchain │ ├── BlockchainProvider.php │ ├── Config.php │ ├── Contracts │ │ ├── BlockchainContractInterface.php │ │ ├── ExportableContract.php │ │ ├── MindsBoost.php │ │ ├── MindsToken.php │ │ ├── MindsTokenSaleEvent.php │ │ ├── MindsWire.php │ │ └── MindsWithdraw.php │ ├── EthPrice.php │ ├── Events.php │ ├── Events │ │ ├── BlockchainEventInterface.php │ │ ├── BoostEvent.php │ │ └── WithdrawEvent.php │ ├── LiquidityPositions │ │ ├── Controller.php │ │ ├── LiquidityCurrencyValues.php │ │ ├── LiquidityPositionSummary.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Routes.php │ ├── Manager.php │ ├── Metrics │ │ ├── AbstractBlockchainMetric.php │ │ ├── BlockchainMetricInterface.php │ │ ├── Controller.php │ │ ├── Liquidity │ │ │ ├── LiquidityFees.php │ │ │ ├── LiquidityTotal.php │ │ │ └── LiquidityTradedVolume.php │ │ ├── Manager.php │ │ ├── MetricsQueryOpts.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ ├── Rewards │ │ │ ├── AbstractBlockchainRewardMetric.php │ │ │ ├── EngagementScore.php │ │ │ ├── HoldingScore.php │ │ │ └── LiquidityScore.php │ │ ├── Routes.php │ │ ├── Supply │ │ │ ├── CirculatingSupply.php │ │ │ ├── MarketCap.php │ │ │ ├── TokenHolders.php │ │ │ ├── TokensReclaimed.php │ │ │ ├── TokensReclaimedForBoost.php │ │ │ ├── TokensReclaimedForUpgrades.php │ │ │ ├── TokensRewarded.php │ │ │ └── TotalSupply.php │ │ └── Transactions │ │ │ ├── TransactionsCount.php │ │ │ ├── TransactionsUnique.php │ │ │ └── TransactionsVolume.php │ ├── Module.php │ ├── OnchainBalances │ │ └── OnchainBalancesService.php │ ├── Pending.php │ ├── Preregistrations.php │ ├── Reports │ │ ├── AbstractReport.php │ │ ├── BoostTokens.php │ │ ├── EthereumPrice.php │ │ ├── Manager.php │ │ ├── PlusTokens.php │ │ └── ReportInterface.php │ ├── Services │ │ ├── BlockFinder.php │ │ ├── CoinMarketCap.php │ │ ├── Ethereum.php │ │ ├── Etherscan.php │ │ ├── EtherscanTransactionsByDate.php │ │ ├── Poloniex.php │ │ └── RatesInterface.php │ ├── Token.php │ ├── TokenDistributionEvent.php │ ├── TokenPrices │ │ ├── Controller.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Routes.php │ ├── Transactions │ │ ├── Manager.php │ │ ├── Repository.php │ │ └── Transaction.php │ ├── Uniswap │ │ ├── Client.php │ │ ├── UniswapBaseTrait.php │ │ ├── UniswapBurnEntity.php │ │ ├── UniswapEntityHasPairInterface.php │ │ ├── UniswapEntityInterface.php │ │ ├── UniswapLiquidityPositionEntity.php │ │ ├── UniswapMintEntity.php │ │ ├── UniswapPairEntity.php │ │ └── UniswapUserEntity.php │ ├── UnstoppableDomains │ │ ├── Client.php │ │ ├── Controller.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Routes.php │ ├── Util.php │ └── Wallets │ │ ├── Balance.php │ │ ├── Ether │ │ └── Balance.php │ │ ├── OffChain │ │ ├── Balance.php │ │ ├── Cap.php │ │ ├── Exceptions │ │ │ └── OffchainWalletInsufficientFundsException.php │ │ ├── Sums.php │ │ ├── TestnetBalance.php │ │ ├── TestnetSums.php │ │ ├── Transactions.php │ │ └── Withholding │ │ │ ├── Repository.php │ │ │ ├── Sums.php │ │ │ └── Withholding.php │ │ └── OnChain │ │ ├── Balance.php │ │ └── UniqueOnChain │ │ ├── Controller.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ ├── Routes.php │ │ └── UniqueOnChainAddress.php ├── Blogs │ ├── Blog.php │ ├── BlogsProvider.php │ ├── Delegates │ │ ├── CreateActivity.php │ │ ├── Feeds.php │ │ ├── PropagateProperties.php │ │ ├── Slug.php │ │ └── TimeCreatedDelegate.php │ ├── Events.php │ ├── Header.php │ ├── Legacy │ │ ├── Entity.php │ │ └── Repository.php │ ├── Lite │ │ ├── View.php │ │ ├── lite.tpl │ │ └── view.tpl │ ├── Manager.php │ ├── Repository.php │ └── Trending.php ├── Boost │ ├── Checksum.php │ ├── LiquiditySpot │ │ ├── Controller.php │ │ ├── Delegates │ │ │ └── AnalyticsDelegate.php │ │ └── Manager.php │ ├── Module.php │ ├── Network │ │ ├── Boost.php │ │ └── mapping.json │ ├── Provider.php │ ├── Routes.php │ └── V3 │ │ ├── Cache │ │ └── BoostFeedCache.php │ │ ├── Common │ │ ├── Module.php │ │ ├── Provider.php │ │ └── ViewsScroller.php │ │ ├── Controller.php │ │ ├── Delegates │ │ └── ActionEventDelegate.php │ │ ├── Enums │ │ ├── BoostAdminAction.php │ │ ├── BoostGoal.php │ │ ├── BoostGoalButtonText.php │ │ ├── BoostPaymentMethod.php │ │ ├── BoostRejectionReason.php │ │ ├── BoostStatus.php │ │ ├── BoostTargetAudiences.php │ │ ├── BoostTargetLocation.php │ │ └── BoostTargetSuitability.php │ │ ├── EventStreams │ │ ├── BoostClickStreamsSubscription.php │ │ ├── BoostEmailEventStreamSubscription.php │ │ ├── BoostPartnerViewEventStreamSubscription.php │ │ └── BoostViewEventStreamSubscription.php │ │ ├── Events │ │ └── Events.php │ │ ├── Exceptions │ │ ├── BoostCashPaymentSetupFailedException.php │ │ ├── BoostCreationFailedException.php │ │ ├── BoostNotFoundException.php │ │ ├── BoostPaymentCaptureFailedException.php │ │ ├── BoostPaymentRefundFailedException.php │ │ ├── BoostPaymentSetupFailedException.php │ │ ├── EntityTypeNotAllowedInLocationException.php │ │ ├── IncorrectBoostStatusException.php │ │ ├── InvalidBoostPaymentMethodException.php │ │ ├── InvalidBoostTargetLocationException.php │ │ └── InvalidRejectionReasonException.php │ │ ├── GraphQL │ │ ├── Controllers │ │ │ ├── AdminController.php │ │ │ └── Controller.php │ │ ├── GraphQLMappings.php │ │ └── Types │ │ │ ├── BoostEdge.php │ │ │ ├── BoostNode.php │ │ │ └── BoostsConnection.php │ │ ├── Insights │ │ ├── Controller.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ └── Routes.php │ │ ├── Manager.php │ │ ├── Models │ │ ├── Boost.php │ │ └── BoostEntityWrapper.php │ │ ├── Module.php │ │ ├── Onchain │ │ ├── AdminTransactionProcessor.php │ │ └── OnchainBoostBackgroundJob.php │ │ ├── Partners │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Repository.php │ │ ├── PaymentProcessor.php │ │ ├── PreApproval │ │ └── Manager.php │ │ ├── Provider.php │ │ ├── Ranking │ │ ├── BoostRanking.php │ │ ├── BoostShareRatio.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Repository.php │ │ ├── Repository.php │ │ ├── Routes.php │ │ ├── Summaries │ │ ├── Controller.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ └── Routes.php │ │ ├── Utils │ │ ├── BoostConsoleUrlBuilder.php │ │ └── BoostReceiptUrlBuilder.php │ │ └── Validators │ │ └── BoostCreateRequestValidator.php ├── Captcha │ ├── BypassManager.php │ ├── Captcha.php │ ├── ImageGenerator.php │ ├── Manager.php │ ├── Module.php │ └── Provider.php ├── Categories │ ├── CategoriesProvider.php │ └── Repository.php ├── Channels │ ├── AvatarService.php │ ├── Ban.php │ ├── BannerService.php │ ├── ChannelsProvider.php │ ├── Delegates │ │ ├── Artifacts │ │ │ ├── ArtifactsDelegateInterface.php │ │ │ ├── CommentsDelegate.php │ │ │ ├── ElasticsearchDocumentsDelegate.php │ │ │ ├── EntityDelegate.php │ │ │ ├── Factory.php │ │ │ ├── LookupDelegate.php │ │ │ ├── MySQL │ │ │ │ ├── EntityDelegate.php │ │ │ │ └── FriendsDelegate.php │ │ │ ├── SubscribersDelegate.php │ │ │ ├── SubscriptionsDelegate.php │ │ │ ├── UserEntitiesDelegate.php │ │ │ └── UserIndexesDelegate.php │ │ ├── Ban.php │ │ ├── Logout.php │ │ ├── MetricsDelegate.php │ │ └── Unban.php │ ├── Events.php │ ├── Groups │ │ ├── Controller.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ ├── Repository │ │ │ └── ElasticSearchQuery.php │ │ └── Routes.php │ ├── Manager.php │ ├── Snapshots │ │ ├── Manager.php │ │ ├── Repository.php │ │ └── Snapshot.php │ └── Subscriptions.php ├── Chat │ ├── Controllers │ │ ├── ChatController.php │ │ └── ChatImagePsrController.php │ ├── Delegates │ │ ├── AnalyticsDelegate.php │ │ └── DelegatesProvider.php │ ├── Entities │ │ ├── ChatImage.php │ │ ├── ChatMessage.php │ │ ├── ChatRichEmbed.php │ │ ├── ChatRoom.php │ │ └── ChatRoomListItem.php │ ├── Enums │ │ ├── ChatMessageTypeEnum.php │ │ ├── ChatRoomInviteRequestActionEnum.php │ │ ├── ChatRoomMemberStatusEnum.php │ │ ├── ChatRoomNotificationStatusEnum.php │ │ ├── ChatRoomRoleEnum.php │ │ └── ChatRoomTypeEnum.php │ ├── Events │ │ ├── Events.php │ │ └── Sockets │ │ │ ├── ChatEvent.php │ │ │ └── Enums │ │ │ └── ChatEventTypeEnum.php │ ├── Exceptions │ │ ├── ChatMessageNotFoundException.php │ │ ├── ChatRoomNotFoundException.php │ │ └── InvalidChatRoomTypeException.php │ ├── GraphQLMappings.php │ ├── Helpers │ │ ├── ChatRoomEdgeCursorHelper.php │ │ └── ChatRoomMemberEdgeCursorHelper.php │ ├── Module.php │ ├── Notifications │ │ ├── ChatNotificationEventsSubscription.php │ │ ├── Events │ │ │ └── ChatNotificationEvent.php │ │ ├── Models │ │ │ ├── AbstractChatNotification.php │ │ │ ├── ImageMessageNotification.php │ │ │ ├── PlainTextMessageNotification.php │ │ │ └── RichEmbedMessageNotification.php │ │ ├── NotificationFactory.php │ │ └── NotificationsProvider.php │ ├── Provider.php │ ├── Repositories │ │ ├── MessageRepository.php │ │ ├── ReceiptRepository.php │ │ ├── RepositoriesProvider.php │ │ └── RoomRepository.php │ ├── Routes.php │ ├── Services │ │ ├── ChatImageProcessorService.php │ │ ├── ChatImageStorageService.php │ │ ├── MessageService.php │ │ ├── ReceiptService.php │ │ ├── RichEmbedService.php │ │ ├── RoomService.php │ │ └── ServicesProvider.php │ └── Types │ │ ├── ChatImageNode.php │ │ ├── ChatMessageEdge.php │ │ ├── ChatMessageNode.php │ │ ├── ChatMessagesConnection.php │ │ ├── ChatRichEmbedNode.php │ │ ├── ChatRoomEdge.php │ │ ├── ChatRoomMemberEdge.php │ │ ├── ChatRoomMembersConnection.php │ │ ├── ChatRoomNode.php │ │ └── ChatRoomsConnection.php ├── Comments │ ├── Comment.php │ ├── CommentNotificationsEventStreamsSubscription.php │ ├── CommentOpsEventStreamsSubscription.php │ ├── Delegates │ │ ├── CountCache.php │ │ ├── CreateEventDispatcher.php │ │ └── Metrics.php │ ├── EmbeddedComments │ │ ├── Controllers │ │ │ ├── EmbeddedCommentsGqlController.php │ │ │ └── EmbeddedCommentsPsrController.php │ │ ├── Exceptions │ │ │ ├── InvalidScrapeException.php │ │ │ ├── InvalidUrlPatternException.php │ │ │ ├── OwnerDisabledAutoImportsException.php │ │ │ └── OwnerNotConfiguredException.php │ │ ├── GraphQLMappings.php │ │ ├── Models │ │ │ └── EmbeddedCommentsSettings.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ ├── EmbeddedCommentsRepository.php │ │ │ └── EmbeddedCommentsSettingsRepository.php │ │ ├── Routes.php │ │ ├── Services │ │ │ ├── EmbeddedCommentsActivityService.php │ │ │ ├── EmbeddedCommentsCommentService.php │ │ │ └── EmbeddedCommentsSettingsService.php │ │ └── Types │ │ │ └── EmbeddedCommentsConnection.php │ ├── Events.php │ ├── GraphQL │ │ ├── Controllers │ │ │ └── PinnedCommentsController.php │ │ ├── GraphQLMappings.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Types │ │ │ ├── CommentEdge.php │ │ │ └── CommentNode.php │ ├── Legacy │ │ ├── Entity.php │ │ └── Repository.php │ ├── Manager.php │ ├── Provider.php │ ├── RelationalRepository.php │ ├── Repository.php │ ├── SearchRepository.php │ └── Votes │ │ ├── Manager.php │ │ └── Repository.php ├── Config.php ├── Config │ ├── Config.php │ ├── ConfigProvider.php │ ├── Exported.php │ └── GraphQL │ │ ├── Controllers │ │ └── ConfigController.php │ │ └── GraphQLMappings.php ├── Counters.php ├── Custom │ └── Navigation │ │ ├── Controllers │ │ └── NavigationController.php │ │ ├── CustomNavigationService.php │ │ ├── Enums │ │ ├── NavigationItemActionEnum.php │ │ └── NavigationItemTypeEnum.php │ │ ├── GraphQLMappings.php │ │ ├── Module.php │ │ ├── NavigationItem.php │ │ ├── Provider.php │ │ └── Repository.php ├── DID │ ├── Controller.php │ ├── DIDDocument.php │ ├── Events.php │ ├── Keypairs │ │ ├── DIDKeypair.php │ │ ├── Manager.php │ │ └── Repository.php │ ├── Manager.php │ ├── Module.php │ ├── Provider.php │ ├── Routes.php │ └── UniResolver │ │ ├── Client.php │ │ ├── Controller.php │ │ └── Manager.php ├── Data │ ├── BigQuery │ │ └── Client.php │ ├── Call.php │ ├── Cassandra │ │ ├── Client.php │ │ ├── Prepared │ │ │ ├── Counters.php │ │ │ ├── Custom.php │ │ │ ├── MonetizationLedger.php │ │ │ └── System.php │ │ ├── Scroll.php │ │ └── Thrift │ │ │ ├── Entities.php │ │ │ ├── Indexes.php │ │ │ ├── Lookup.php │ │ │ ├── Namespaced.php │ │ │ └── Relationships.php │ ├── Client.php │ ├── DataProvider.php │ ├── ElasticSearch │ │ ├── Client.php │ │ ├── Prepared │ │ │ ├── Count.php │ │ │ ├── Delete.php │ │ │ ├── Document.php │ │ │ ├── Index.php │ │ │ ├── Scroll.php │ │ │ ├── Search.php │ │ │ ├── Suggest.php │ │ │ └── Update.php │ │ └── Scroll.php │ ├── Interfaces │ │ ├── ClientInterface.php │ │ ├── PreparedInterface.php │ │ ├── PreparedMethodInterface.php │ │ └── WarehouseJobInterface.php │ ├── Iterators │ │ └── Entities.php │ ├── Locks │ │ ├── Cassandra.php │ │ ├── KeyNotSetupException.php │ │ ├── LockFailedException.php │ │ └── Redis.php │ ├── MySQL │ │ ├── AbstractRepository.php │ │ ├── Client.php │ │ ├── MySQLConnectionEnum.php │ │ └── MySQLDataTypeEnum.php │ ├── PubSub │ │ └── Redis │ │ │ └── Client.php │ ├── Redis │ │ └── Client.php │ ├── Relationships.php │ ├── Sessions.php │ ├── SortedSet.php │ ├── Warehouse │ │ └── Factory.php │ ├── cache │ │ ├── APCuCache.php │ │ ├── Cassandra.php │ │ ├── InMemoryCache.php │ │ ├── PsrWrapper.php │ │ ├── Redis.php │ │ ├── SharedCache.php │ │ ├── WorkerCache.php │ │ ├── abstractCacher.php │ │ ├── apcu.php │ │ └── factory.php │ ├── indexes.php │ └── lookup.php ├── DeepLink │ ├── Controllers │ │ └── WellKnownPsrController.php │ ├── Module.php │ ├── Provider.php │ ├── Routes.php │ └── Services │ │ ├── AndroidAssetLinksService.php │ │ └── AppleAppSiteAssociationService.php ├── Di │ ├── Binding.php │ ├── Container.php │ ├── Di.php │ ├── ImmutableException.php │ ├── Provider.php │ ├── Ref.php │ └── Registry.php ├── Discovery │ ├── Controllers.php │ ├── Manager.php │ ├── Module.php │ ├── NoTagsException.php │ ├── Provider.php │ ├── Routes.php │ ├── Trend.php │ └── Validators │ │ └── SearchCountRequestValidator.php ├── DismissibleWidgets │ ├── Controllers.php │ ├── InvalidWidgetIDException.php │ ├── Manager.php │ ├── Module.php │ ├── Provider.php │ └── Routes.php ├── Email │ ├── CampaignLogs │ │ ├── CampaignLog.php │ │ ├── Manager.php │ │ └── Repository.php │ ├── Campaigns │ │ └── EmailCampaign.php │ ├── Confirmation │ │ ├── Controller.php │ │ ├── Exceptions │ │ │ ├── EmailConfirmationInvalidCodeException.php │ │ │ └── EmailConfirmationMissingHeadersException.php │ │ ├── Manager.php │ │ └── Url.php │ ├── Controllers │ │ └── EmailAddressController.php │ ├── EmailStyles.php │ ├── EmailSubscribersIterator.php │ ├── EmailSubscription.php │ ├── EmailSubscriptionTypes.php │ ├── Events.php │ ├── Invites │ │ ├── Controllers │ │ │ ├── ControllersProvider.php │ │ │ ├── InvitesManagementController.php │ │ │ ├── InvitesReaderController.php │ │ │ └── InvitesSenderController.php │ │ ├── Enums │ │ │ └── InviteEmailStatusEnum.php │ │ ├── GraphQLMappings.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ ├── InvitesRepository.php │ │ │ └── RepositoriesProvider.php │ │ ├── Services │ │ │ ├── InviteManagementService.php │ │ │ ├── InviteProcessorService.php │ │ │ ├── InviteReaderService.php │ │ │ ├── InviteSenderService.php │ │ │ └── ServicesProvider.php │ │ └── Types │ │ │ ├── Invite.php │ │ │ ├── InviteConnection.php │ │ │ └── InviteEdge.php │ ├── Mailer.php │ ├── Manager.php │ ├── Mautic │ │ ├── Client.php │ │ ├── Manager.php │ │ ├── MarketingAttributes │ │ │ ├── EmailPreferenceLists.php │ │ │ ├── Manager.php │ │ │ └── Repository.php │ │ ├── Module.php │ │ └── Provider.php │ ├── Message.php │ ├── Module.php │ ├── Provider.php │ ├── Repository.php │ ├── RouterHooks.php │ ├── Routes.php │ ├── SendGrid │ │ ├── Delegates │ │ │ └── UnsubscribeDelegate.php │ │ ├── Lists │ │ │ ├── Active30DayList.php │ │ │ ├── BoostedV2List.php │ │ │ ├── BoostedV3List.php │ │ │ ├── EthUsersList.php │ │ │ ├── KiteStatesList.php │ │ │ ├── LastPostedList.php │ │ │ ├── MatrixList.php │ │ │ ├── MembershipTierOwnerList.php │ │ │ ├── MonetizedUsersList.php │ │ │ ├── SendGridListInterface.php │ │ │ ├── SubscribersList.php │ │ │ ├── TenantsList.php │ │ │ ├── TokenBalances.php │ │ │ ├── TwitterSyncList.php │ │ │ ├── WireUSDUsersList.php │ │ │ └── YoutubeSyncList.php │ │ ├── Manager.php │ │ ├── SendGridContact.php │ │ └── Webhooks.php │ ├── Services │ │ └── EmailAutoSubscribeService.php │ ├── SpamFilter.php │ ├── Template.php │ ├── V2 │ │ ├── Campaigns │ │ │ ├── Custom │ │ │ │ ├── Custom.php │ │ │ │ └── Templates │ │ │ │ │ ├── hacked-account.tpl │ │ │ │ │ ├── minds-plus-refunds.tpl │ │ │ │ │ ├── moderation-3-strikes.tpl │ │ │ │ │ ├── moderation-banned.tpl │ │ │ │ │ ├── moderation-strike-copyright.tpl │ │ │ │ │ ├── moderation-strike-plus.tpl │ │ │ │ │ ├── moderation-strike.tpl │ │ │ │ │ ├── token-purchase-issued.tpl │ │ │ │ │ ├── token-purchase-new.tpl │ │ │ │ │ ├── totp-recovery-code-used.tpl │ │ │ │ │ ├── withdraw-approved.tpl │ │ │ │ │ ├── withdraw-confirmed.tpl │ │ │ │ │ ├── withdraw-failed.tpl │ │ │ │ │ ├── withdraw-rejected.tpl │ │ │ │ │ └── withdraw-requested.tpl │ │ │ ├── Factory.php │ │ │ ├── Marketing │ │ │ │ ├── Change_2022_03_15 │ │ │ │ │ ├── Change_2022_03_15.php │ │ │ │ │ └── template.tpl │ │ │ │ ├── Festival_2022_05_27 │ │ │ │ │ ├── Festival_2022_05_27.php │ │ │ │ │ └── template.tpl │ │ │ │ ├── Funding2021_06_29 │ │ │ │ │ ├── Funding2021_06_29.php │ │ │ │ │ └── template.tpl │ │ │ │ ├── Gift2020_07_30 │ │ │ │ │ ├── Gift2020_07_30.php │ │ │ │ │ └── template.tpl │ │ │ │ ├── Gift2020_08_27 │ │ │ │ │ ├── Gift2020_08_27.php │ │ │ │ │ └── template.tpl │ │ │ │ ├── Gift2020_11_20 │ │ │ │ │ ├── Gift2020_11_20.php │ │ │ │ │ └── template.tpl │ │ │ │ ├── Gift2021_02_26 │ │ │ │ │ ├── Gift2021_02_26.php │ │ │ │ │ └── template.tpl │ │ │ │ ├── Gift2022_03_21 │ │ │ │ │ ├── Gift2022_03_21.php │ │ │ │ │ └── template.tpl │ │ │ │ ├── Languages2020_06_18 │ │ │ │ │ ├── Languages2020_06_18.php │ │ │ │ │ └── template.tpl │ │ │ │ ├── Plus2020_10_28 │ │ │ │ │ ├── Plus2020_10_28.php │ │ │ │ │ └── template.tpl │ │ │ │ ├── Uniswap2021_03_26 │ │ │ │ │ ├── Uniswap2021_03_26.php │ │ │ │ │ └── template.tpl │ │ │ │ ├── Update2021_01_28 │ │ │ │ │ ├── Update2021_01_28.php │ │ │ │ │ └── template.tpl │ │ │ │ ├── Updates2021_10_20 │ │ │ │ │ ├── Updates2021_10_20.php │ │ │ │ │ └── template.tpl │ │ │ │ └── Updates2021_12_15 │ │ │ │ │ ├── Updates2021_12_15.php │ │ │ │ │ └── template.tpl │ │ │ └── Recurring │ │ │ │ ├── BoostV3 │ │ │ │ ├── BoostEmailer.php │ │ │ │ └── template.tpl │ │ │ │ ├── Digest │ │ │ │ ├── Digest.php │ │ │ │ └── template.tpl │ │ │ │ ├── ForgotPassword │ │ │ │ ├── ForgotPasswordEmailer.php │ │ │ │ ├── template.tpl │ │ │ │ └── template.v2.tpl │ │ │ │ ├── GiftCard │ │ │ │ ├── Emailer.php │ │ │ │ ├── GiftCardProducts │ │ │ │ │ ├── BoostCredit.php │ │ │ │ │ ├── GiftCardProductInterface.php │ │ │ │ │ ├── PlusCredit.php │ │ │ │ │ └── ProCredit.php │ │ │ │ ├── Issuer │ │ │ │ │ ├── Emailer.php │ │ │ │ │ ├── Emails │ │ │ │ │ │ ├── GiftCardIssuerEmailInterface.php │ │ │ │ │ │ ├── PlusEmail.php │ │ │ │ │ │ └── ProEmail.php │ │ │ │ │ └── template.tpl │ │ │ │ └── template.tpl │ │ │ │ ├── Invite │ │ │ │ ├── InviteEmailer.php │ │ │ │ └── template.v2.tpl │ │ │ │ ├── OnPlusTrial │ │ │ │ ├── OnPlusTrial.php │ │ │ │ └── template.tpl │ │ │ │ ├── Supermind │ │ │ │ ├── Supermind.php │ │ │ │ └── template.tpl │ │ │ │ ├── SupermindBulkIncentive │ │ │ │ ├── SupermindBulkIncentive.php │ │ │ │ └── template.tpl │ │ │ │ ├── TenantTrial │ │ │ │ ├── TenantTrialEmailer.php │ │ │ │ └── template.v2.tpl │ │ │ │ ├── TenantUserWelcome │ │ │ │ ├── TenantUserWelcomeEmailer.php │ │ │ │ └── template.tpl │ │ │ │ ├── TwoFactor │ │ │ │ ├── TwoFactor.php │ │ │ │ ├── template.tpl │ │ │ │ ├── template.v2.2fa.tpl │ │ │ │ └── template.v2.verify.tpl │ │ │ │ ├── UnreadMessages │ │ │ │ ├── UnreadMessages.php │ │ │ │ ├── UnreadMessagesDispatcher.php │ │ │ │ └── template.tpl │ │ │ │ ├── UnreadNotifications │ │ │ │ ├── UnreadNotifications.php │ │ │ │ └── template.tpl │ │ │ │ ├── WireReceived │ │ │ │ ├── WireReceived.php │ │ │ │ └── template.tpl │ │ │ │ └── WireSent │ │ │ │ ├── WireSent.php │ │ │ │ ├── support-tier.tpl │ │ │ │ └── template.tpl │ │ ├── Common │ │ │ ├── EmailStyles.php │ │ │ ├── EmailStylesV2.php │ │ │ ├── Message.php │ │ │ ├── Template.php │ │ │ ├── TenantTemplateVariableInjector.php │ │ │ ├── default.tpl │ │ │ └── default.v2.tpl │ │ ├── Delegates │ │ │ └── DigestSender.php │ │ ├── Module.php │ │ ├── Partials │ │ │ ├── ActionButton │ │ │ │ ├── ActionButton.php │ │ │ │ └── template.tpl │ │ │ ├── ActionButtonV2 │ │ │ │ ├── ActionButtonV2.php │ │ │ │ └── template.tpl │ │ │ ├── MarketingHero │ │ │ │ ├── MarketingHero.php │ │ │ │ └── template.tpl │ │ │ ├── SuggestedChannels │ │ │ │ ├── SuggestedChannels.php │ │ │ │ └── template.tpl │ │ │ └── UnreadMessages │ │ │ │ ├── UnreadMessagesPartial.php │ │ │ │ └── template.tpl │ │ ├── Provider.php │ │ └── SendLists │ │ │ ├── AbstractSendList.php │ │ │ ├── Active30Days.php │ │ │ ├── CsvList.php │ │ │ ├── DraftSendList.php │ │ │ ├── Factory.php │ │ │ ├── FestivalSendList.php │ │ │ ├── GenericSendList.php │ │ │ ├── SendListInterface.php │ │ │ └── SignupsByDateSendList.php │ ├── Verify │ │ ├── Manager.php │ │ └── Services │ │ │ ├── Kickbox.php │ │ │ └── TheChecker.php │ └── blacklist.txt ├── Entities.php ├── Entities │ ├── Actions │ │ ├── Delete.php │ │ └── Save.php │ ├── Controller.php │ ├── Delegates │ │ ├── BoostGuidResolverDelegate.php │ │ ├── ChatMessageResolverDelegate.php │ │ ├── CommentGuidResolverDelegate.php │ │ ├── EntityGuidResolverDelegate.php │ │ ├── EventsResolverDelegate.php │ │ ├── FilterEntitiesDelegate.php │ │ ├── PropagateProperties.php │ │ ├── ResolverDelegate.php │ │ ├── SupermindResolverDelegate.php │ │ └── SystemPushNotificationResolverDelegate.php │ ├── Enums │ │ ├── EntitySubtypeEnum.php │ │ └── EntityTypeEnum.php │ ├── EventStreams │ │ ├── MetricChangeStreamsSubscription.php │ │ └── ViewEventStreamSubscription.php │ ├── Events.php │ ├── GraphQL │ │ ├── GraphQLMappings.php │ │ └── Types │ │ │ └── AttachmentNode.php │ ├── GuidLinkResolver.php │ ├── Module.php │ ├── Ops │ │ ├── EntitiesOpsEvent.php │ │ ├── EntitiesOpsTopic.php │ │ ├── Events.php │ │ ├── Module.php │ │ └── TestEntitiesOpsEventStreamsSubscription.php │ ├── PropagateProperties.php │ ├── Propagator │ │ └── Properties.php │ ├── Provider.php │ ├── Repositories │ │ ├── CassandraRepository.php │ │ ├── EntitiesRepositoryFactory.php │ │ ├── EntitiesRepositoryInterface.php │ │ └── MySQLRepository.php │ ├── Resolver.php │ ├── Routes.php │ └── TaggedUsersService.php ├── EntitiesBuilder.php ├── EventStreams │ ├── AcknowledgmentEventTrait.php │ ├── ActionEvent.php │ ├── BatchSubscriptionInterface.php │ ├── EntityEventInterface.php │ ├── EntityEventTrait.php │ ├── EventInterface.php │ ├── Events │ │ ├── CaptionedActivityEvent.php │ │ ├── InferredTagEvent.php │ │ ├── TenantBootstrapRequestEvent.php │ │ └── ViewEvent.php │ ├── Module.php │ ├── NotificationEvent.php │ ├── Provider.php │ ├── SubscriptionInterface.php │ ├── TimebasedEventTrait.php │ ├── Topics │ │ ├── AbstractTopic.php │ │ ├── ActionEventsTopic.php │ │ ├── CaptionedActivitiesTopic.php │ │ ├── ChatNotificationsTopic.php │ │ ├── InferredTagsTopic.php │ │ ├── NotificationsTopic.php │ │ ├── TenantBootstrapRequestsTopic.php │ │ ├── TopicInterface.php │ │ └── ViewsTopic.php │ ├── Traits │ │ └── ClientMetaEventTrait.php │ └── UndeliveredEventException.php ├── Events │ ├── Defaults.php │ ├── Dispatcher.php │ ├── Event.php │ ├── EventsDispatcher.php │ ├── Hooks │ │ └── Register.php │ ├── Module.php │ └── Provider.php ├── Experiments │ ├── Controller.php │ ├── Cookie │ │ └── Manager.php │ ├── LegacyGrowthBook.php │ ├── Manager.php │ ├── Module.php │ ├── Provider.php │ └── Routes.php ├── Faq │ ├── Answer.php │ ├── Category.php │ ├── CategoryFactory.php │ ├── FaqProvider.php │ ├── Manager.php │ ├── Question.php │ └── faq.csv ├── Features │ ├── Canary.php │ ├── Module.php │ └── Provider.php ├── FeedNotices │ ├── Controller.php │ ├── GraphQL │ │ ├── GraphQLMappings.php │ │ └── Types │ │ │ ├── FeedNoticeEdge.php │ │ │ └── FeedNoticeNode.php │ ├── Manager.php │ ├── Module.php │ ├── Notices │ │ ├── AbstractNotice.php │ │ ├── BoostChannelNotice.php │ │ ├── BoostLatestPostNotice.php │ │ ├── ConnectWalletNotice.php │ │ ├── EnablePushNotificationsNotice.php │ │ ├── InAppVerifyUniquenessNotice.php │ │ ├── InviteFriendsNotice.php │ │ ├── NoGroupsNotice.php │ │ ├── PlusUpgradeNotice.php │ │ ├── ProUpgradeNotice.php │ │ ├── SetupChannelNotice.php │ │ ├── SupermindPendingNotice.php │ │ ├── UpdateTagsNotice.php │ │ ├── VerifyEmailNotice.php │ │ └── VerifyUniquenessNotice.php │ ├── Provider.php │ └── Routes.php ├── Feeds │ ├── Activity │ │ ├── Actions │ │ │ └── Delete.php │ │ ├── Controller.php │ │ ├── Delegates │ │ │ ├── AttachmentDelegate.php │ │ │ ├── ForeignEntityDelegate.php │ │ │ ├── MetricsDelegate.php │ │ │ ├── NotificationsDelegate.php │ │ │ ├── PaywallDelegate.php │ │ │ ├── TimeCreatedDelegate.php │ │ │ ├── TranslationsDelegate.php │ │ │ └── VideoPosterDelegate.php │ │ ├── EventStreamSubscriptions │ │ │ ├── CaptionedActivityEventStreamSubscription.php │ │ │ └── InferredTagsEventStreamSubscription.php │ │ ├── Events.php │ │ ├── Exceptions │ │ │ └── CreateActivityFailedException.php │ │ ├── InteractionCounters.php │ │ ├── Manager.php │ │ ├── OgImagesController.php │ │ ├── RemindIntent.php │ │ └── RichEmbed │ │ │ ├── Metascraper │ │ │ ├── Cache │ │ │ │ ├── Manager.php │ │ │ │ └── Repository.php │ │ │ ├── Controller.php │ │ │ ├── Metadata.php │ │ │ └── Service.php │ │ │ ├── Module.php │ │ │ ├── Provider.php │ │ │ └── Routes.php │ ├── ClusteredRecommendations │ │ ├── Controller.php │ │ ├── ElasticSearchRepository.php │ │ ├── Manager.php │ │ ├── MySQLRepository.php │ │ ├── RepositoryFactory.php │ │ ├── RepositoryInterface.php │ │ ├── ResponseBuilders │ │ │ └── ClusteredRecommendationsResponseBuilder.php │ │ └── Validators │ │ │ └── GetFeedRequestValidator.php │ ├── Controller.php │ ├── Delegates │ │ └── PropagateProperties.php │ ├── Elastic │ │ ├── Entities.php │ │ ├── Manager.php │ │ ├── Maps.php │ │ ├── Repository.php │ │ ├── ScoredGuid.php │ │ └── V2 │ │ │ ├── Enums │ │ │ ├── MediaTypeEnum.php │ │ │ └── SeenEntitiesFilterStrategyEnum.php │ │ │ ├── Manager.php │ │ │ └── QueryOpts.php │ ├── Events.php │ ├── FeedItem.php │ ├── FeedSyncEntity.php │ ├── FeedsProvider.php │ ├── Firehose │ │ ├── Manager.php │ │ └── ModerationCache.php │ ├── GraphQL │ │ ├── Controllers │ │ │ └── NewsfeedController.php │ │ ├── Enums │ │ │ └── NewsfeedAlgorithmsEnum.php │ │ ├── GraphQLMappings.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ └── TenantGuestModeFeedMySQLRepository.php │ │ ├── Services │ │ │ └── TenantGuestModeFeedsService.php │ │ ├── TagRecommendations │ │ │ └── Manager.php │ │ └── Types │ │ │ ├── AbstractEntityNode.php │ │ │ ├── ActivityEdge.php │ │ │ ├── ActivityNode.php │ │ │ ├── FeedExploreTagEdge.php │ │ │ ├── FeedExploreTagNode.php │ │ │ ├── FeedHeaderEdge.php │ │ │ ├── FeedHeaderNode.php │ │ │ ├── FeedHighlightsConnection.php │ │ │ ├── FeedHighlightsEdge.php │ │ │ ├── NewsfeedConnection.php │ │ │ ├── PublisherRecsConnection.php │ │ │ ├── PublisherRecsEdge.php │ │ │ ├── UserEdge.php │ │ │ └── UserNode.php │ ├── HideEntities │ │ ├── Controller.php │ │ ├── Exceptions │ │ │ ├── InvalidEntityException.php │ │ │ └── TooManyHiddenException.php │ │ ├── HideEntity.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ └── Routes.php │ ├── Iterator.php │ ├── Legacy │ │ └── Repository.php │ ├── Module.php │ ├── RSS │ │ ├── ActivityPatchers │ │ │ └── AudioActivityPatcher.php │ │ ├── Controllers │ │ │ └── Controller.php │ │ ├── Enums │ │ │ └── RssFeedLastFetchStatusEnum.php │ │ ├── Exceptions │ │ │ ├── RssFeedFailedFetchException.php │ │ │ └── RssFeedNotFoundException.php │ │ ├── GraphQLMappings.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Psr7RssFeedReaderHttpClient.php │ │ ├── RSSFeedClient.php │ │ ├── Repositories │ │ │ ├── RssFeedsRepository.php │ │ │ └── RssImportsRepository.php │ │ ├── Services │ │ │ ├── ProcessRssFeedService.php │ │ │ ├── ReaderLibraryWrapper.php │ │ │ └── Service.php │ │ └── Types │ │ │ ├── Factories │ │ │ └── RssFeedInputFactory.php │ │ │ └── RssFeed.php │ ├── Repository.php │ ├── Routes.php │ ├── Scheduled │ │ ├── EntityTimeCreated.php │ │ ├── Manager.php │ │ └── Repository.php │ ├── Seen │ │ ├── Manager.php │ │ ├── Repository.php │ │ ├── SeenCacheKeyCookie.php │ │ └── SeenEntity.php │ ├── Subscribed │ │ ├── Controller.php │ │ ├── Manager.php │ │ ├── ResponseBuilders │ │ │ └── SubscribedLatestCountResponseBuilder.php │ │ └── Validators │ │ │ └── SubscribedLatestCountRequestValidator.php │ ├── Supermind │ │ ├── Builders │ │ │ └── Response │ │ │ │ └── SupermindFeedResponseBuilder.php │ │ ├── Controller.php │ │ ├── Exceptions │ │ │ └── SupermindFeedBadRequestException.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Routes.php │ │ └── Validators │ │ │ └── SupermindFeedRequestValidator.php │ ├── TwitterSync │ │ ├── Client.php │ │ ├── ConnectedAccount.php │ │ ├── Controller.php │ │ ├── Delegates │ │ │ ├── ChannelLinksDelegate.php │ │ │ └── TwitterSyncDelegateInterface.php │ │ ├── ImageExtractor.php │ │ ├── Manager.php │ │ ├── MediaData.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ ├── Routes.php │ │ ├── TwitterTweet.php │ │ └── TwitterUser.php │ ├── UnseenTopFeed │ │ ├── Controller.php │ │ ├── Manager.php │ │ ├── ResponseBuilders │ │ │ └── UnseenTopFeedResponseBuilder.php │ │ └── Validators │ │ │ ├── UnseenTopFeedRequestValidator.php │ │ │ └── ValidatorInterface.php │ └── User │ │ └── Manager.php ├── FounderRewards │ ├── Founder.php │ ├── FounderRewards.php │ └── RewardType.php ├── GraphQL │ ├── AbstractGraphQLMappings.php │ ├── Client │ │ ├── Client.php │ │ ├── Enums │ │ │ └── GraphQLRequestStatusEnum.php │ │ ├── GraphQLRequest.php │ │ └── GraphQLResponse.php │ ├── Controller.php │ ├── GraphQLMappings.php │ ├── Module.php │ ├── Provider.php │ ├── Routes.php │ ├── Services │ │ ├── AuthService.php │ │ └── AuthorizationService.php │ ├── Traits │ │ └── GraphQLSubQueryTrait.php │ └── Types │ │ ├── Connection.php │ │ ├── EdgeInterface.php │ │ ├── KeyValuePair.php │ │ ├── KeyValueType.php │ │ ├── NodeInterface.php │ │ └── PageInfo.php ├── Groups │ ├── AdminQueue.php │ ├── Delegates │ │ ├── ElasticSearchDelegate.php │ │ └── PropagateRejectionDelegate.php │ ├── Events.php │ ├── Feeds.php │ ├── GroupsProvider.php │ ├── Invitations.php │ ├── Management.php │ ├── Notifications.php │ ├── SEO.php │ └── V2 │ │ ├── GraphQL │ │ ├── Controllers │ │ │ └── GroupChatController.php │ │ ├── GraphQLMappings.php │ │ └── Types │ │ │ ├── GroupEdge.php │ │ │ └── GroupNode.php │ │ ├── Membership │ │ ├── Enums │ │ │ └── GroupMembershipLevelEnum.php │ │ ├── Manager.php │ │ ├── Membership.php │ │ ├── Migration.php │ │ └── Repository.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Services │ │ └── GroupChatService.php ├── Guid.php ├── GuidBuilder.php ├── Hashtags │ ├── HashtagEntity.php │ ├── HashtagsProvider.php │ ├── Trending │ │ ├── Cache.php │ │ ├── Manager.php │ │ ├── ManagerInterface.php │ │ └── Repository.php │ └── User │ │ ├── Manager.php │ │ ├── PseudoHashtags.php │ │ └── Repository.php ├── Helpdesk │ ├── Chatwoot │ │ ├── Controller.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Routes.php │ ├── Module.php │ └── Zendesk │ │ ├── Controller.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Routes.php ├── Http │ ├── Cloudflare │ │ ├── Client.php │ │ ├── Enums │ │ │ └── CustomHostnameStatusEnum.php │ │ └── Models │ │ │ ├── CustomHostname.php │ │ │ ├── CustomHostnameMetadata.php │ │ │ └── CustomHostnameOwnershipVerification.php │ ├── Curl │ │ ├── Client.php │ │ ├── CurlWrapper.php │ │ ├── Json │ │ │ └── Client.php │ │ └── JsonRpc │ │ │ └── Client.php │ └── HttpProvider.php ├── I18n │ ├── Extractor │ │ └── I18nExtractor.php │ ├── Loaders │ │ └── XliffFileLoader.php │ ├── Locales.php │ ├── Manager.php │ ├── Module.php │ ├── Parsers │ │ ├── XmlParser.php │ │ └── XmlParsingException.php │ ├── Provider.php │ └── Translator.php ├── Issues │ ├── Contracts │ │ └── PostIssueInterface.php │ ├── Issue.php │ ├── IssuesProvider.php │ ├── Manager.php │ └── Services │ │ └── Gitlab.php ├── Log │ ├── Logger.php │ ├── Module.php │ └── Provider.php ├── Luid.php ├── Markdown │ └── Markdown.php ├── Matrix │ ├── BlockListSync.php │ ├── Client.php │ ├── Controller.php │ ├── EventStreamsSubscriptions │ │ └── MatrixBlockEventStreamsSubscription.php │ ├── Events.php │ ├── Manager.php │ ├── MatrixAccount.php │ ├── MatrixConfig.php │ ├── MatrixRoom.php │ ├── Module.php │ ├── Provider.php │ ├── Routes.php │ └── WellKnownController.php ├── Media │ ├── Albums.php │ ├── Assets │ │ ├── AssetsInterface.php │ │ ├── Image.php │ │ └── Video.php │ ├── AssetsFactory.php │ ├── Audio │ │ ├── AudioAssetStorageService.php │ │ ├── AudioEntity.php │ │ ├── AudioPsrController.php │ │ ├── AudioRepository.php │ │ ├── AudioService.php │ │ ├── AudioThumbnailService.php │ │ ├── AudioUploadEventStreamsSubscription.php │ │ ├── Events.php │ │ ├── Exceptions │ │ │ └── BadRemoteAudioFileException.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Routes.php │ ├── BlurHash.php │ ├── ClientUpload │ │ ├── ClientUploadLease.php │ │ ├── Manager.php │ │ └── MediaTypeEnum.php │ ├── Delegates │ │ └── PropagateProperties.php │ ├── Events.php │ ├── Factory.php │ ├── Feeds.php │ ├── Image │ │ ├── Manager.php │ │ └── ProcessExternalImageService.php │ ├── Imagick │ │ ├── AbstractImagick.php │ │ ├── Annotate.php │ │ ├── Autorotate.php │ │ ├── Manager.php │ │ └── Resize.php │ ├── MediaDownloader │ │ ├── AudioDownloader.php │ │ ├── ImageDownloader.php │ │ └── MediaDownloaderInterface.php │ ├── MediaProvider.php │ ├── Module.php │ ├── Proxy │ │ ├── Controller.php │ │ ├── Download.php │ │ ├── MagicResize.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Resize.php │ │ └── Routes.php │ ├── Recommended.php │ ├── Repository.php │ ├── Routes.php │ ├── SEO.php │ ├── Services │ │ ├── AWS.php │ │ ├── AwsS3Client.php │ │ ├── Factory.php │ │ ├── OciS3Client.php │ │ └── ServiceInterface.php │ ├── Thumbnails.php │ ├── TranscodingStatus.php │ ├── Video │ │ ├── CloudflareStreams │ │ │ ├── Client.php │ │ │ ├── Controllers.php │ │ │ ├── Manager.php │ │ │ ├── Module.php │ │ │ ├── Provider.php │ │ │ ├── Routes.php │ │ │ ├── Services │ │ │ │ └── PruneVideosService.php │ │ │ ├── SigningKey.php │ │ │ ├── TranscodeStatus.php │ │ │ └── Webhooks.php │ │ ├── Manager.php │ │ ├── Source.php │ │ ├── Transcoder │ │ │ ├── Delegates │ │ │ │ ├── MetadataDelegate.php │ │ │ │ ├── NotificationDelegate.php │ │ │ │ └── QueueDelegate.php │ │ │ ├── Manager.php │ │ │ ├── Repository.php │ │ │ ├── Transcode.php │ │ │ ├── TranscodeProfiles │ │ │ │ ├── AbstractTranscodeProfile.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Source.php │ │ │ │ ├── Thumbnails.php │ │ │ │ ├── TranscodeProfileInterface.php │ │ │ │ ├── TranscodeProfileNotFoundException.php │ │ │ │ ├── UnavailableTranscodeProfileException.php │ │ │ │ ├── Webm_1080p.php │ │ │ │ ├── Webm_360p.php │ │ │ │ ├── Webm_720p.php │ │ │ │ ├── X264_1080p.php │ │ │ │ ├── X264_360p.php │ │ │ │ └── X264_720p.php │ │ │ ├── TranscodeStates.php │ │ │ ├── TranscodeStorage │ │ │ │ ├── S3Storage.php │ │ │ │ └── TranscodeStorageInterface.php │ │ │ └── Transcodes.php │ │ └── VideoController.php │ └── YouTubeImporter │ │ ├── Controller.php │ │ ├── Delegates │ │ ├── EntityCreatorDelegate.php │ │ └── QueueDelegate.php │ │ ├── Exceptions │ │ └── UnregisteredChannelException.php │ │ ├── ImportsExceededException.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── QuotaExceededException.php │ │ ├── Repository.php │ │ ├── Routes.php │ │ ├── TranscoderBridge.php │ │ ├── Video.php │ │ ├── YTApi.php │ │ ├── YTAuth.php │ │ ├── YTClient.php │ │ ├── YTSubscription.php │ │ ├── YTVideo.php │ │ └── YTVideoSource.php ├── Messenger │ ├── Conversations.php │ ├── ConversationsCache.php │ ├── Encryption │ │ ├── EncryptionInterface.php │ │ └── OpenSSL.php │ ├── Events.php │ ├── Keystore.php │ └── Messages.php ├── Metrics │ ├── Controller.php │ ├── Manager.php │ ├── Module.php │ ├── Provider.php │ └── Routes.php ├── Minds.php ├── Monetization │ ├── Admin.php │ ├── Demonetization │ │ ├── DemonetizationContext.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Strategies │ │ │ ├── DemonetizePlusUserStrategy.php │ │ │ ├── DemonetizePostStrategy.php │ │ │ └── Interfaces │ │ │ │ ├── DemonetizableEntityInterface.php │ │ │ │ └── DemonetizationStrategyInterface.php │ │ └── Validators │ │ │ └── DemonetizedPlusValidator.php │ ├── EarningsOverview │ │ ├── Controllers.php │ │ ├── EarningsGroupModel.php │ │ ├── EarningsItemModel.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── OverviewModel.php │ │ ├── Provider.php │ │ └── Routes.php │ ├── Manager.php │ ├── Merchants.php │ ├── Module.php │ ├── MonetizationProvider.php │ ├── Partners │ │ ├── Controllers.php │ │ ├── Delegates │ │ │ ├── DepositsDelegate.php │ │ │ ├── EmailDelegate.php │ │ │ ├── PayoutsDelegate.php │ │ │ └── emails │ │ │ │ ├── completed.md.tpl │ │ │ │ └── pending.md.tpl │ │ ├── EarningsBalance.php │ │ ├── EarningsDeposit.php │ │ ├── EarningsPayout.php │ │ ├── Enums │ │ │ └── PartnerEarningsItemType.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── RelationalRepository.php │ │ └── Routes.php │ ├── ServiceCache.php │ ├── Services │ │ └── Mock.php │ └── Users.php ├── MultiTenant │ ├── AutoLogin │ │ ├── AutoLoginService.php │ │ ├── Controller.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Routes.php │ ├── Billing │ │ ├── BillingService.php │ │ ├── Controllers │ │ │ ├── BillingGqlController.php │ │ │ └── BillingPsrController.php │ │ ├── GraphQLMappings.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Routes.php │ │ └── Types │ │ │ └── TenantBillingType.php │ ├── Bootstrap │ │ ├── Clients │ │ │ ├── ClientsProvider.php │ │ │ ├── GoogleFaviconClient.php │ │ │ ├── JinaClient.php │ │ │ └── ScreenshotOneClient.php │ │ ├── Controllers │ │ │ ├── BootstrapProgressPsrController.php │ │ │ └── ControllersProvider.php │ │ ├── Delegates │ │ │ ├── ActivityCreationDelegate.php │ │ │ ├── ContentGeneratedSocketDelegate.php │ │ │ ├── DelegatesProvider.php │ │ │ ├── UpdateConfigDelegate.php │ │ │ ├── UpdateLogosDelegate.php │ │ │ └── UpdateUserAvatarDelegate.php │ │ ├── Enums │ │ │ ├── BootstrapStepEnum.php │ │ │ └── JinaReturnFormat.php │ │ ├── EventStreams │ │ │ └── TenantBootstrapRequestSubscription.php │ │ ├── Models │ │ │ ├── BootstrapStepProgress.php │ │ │ └── ExtractedMetadata.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ ├── BootstrapProgressRepository.php │ │ │ └── RepositoriesProvider.php │ │ ├── Routes.php │ │ └── Services │ │ │ ├── BootstrapProgressService.php │ │ │ ├── Extractors │ │ │ ├── ContentExtractor.php │ │ │ ├── HorizontalLogoExtractor.php │ │ │ ├── MarkdownExtractor.php │ │ │ ├── MetadataExtractor.php │ │ │ ├── MobileSplashLogoExtractor.php │ │ │ ├── ScreenshotExtractor.php │ │ │ ├── ThemeExtractor.php │ │ │ └── WebsiteIconExtractor.php │ │ │ ├── Handlers │ │ │ ├── ConfigGenerationHandler.php │ │ │ ├── ContentGenerationHandler.php │ │ │ └── LogoGenerationHandler.php │ │ │ ├── MultiTenantBootstrapService.php │ │ │ ├── Processors │ │ │ └── LogoImageProcessor.php │ │ │ └── ServicesProvider.php │ ├── Cache │ │ ├── MultiTenantCacheHandler.php │ │ └── Provider.php │ ├── Configs │ │ ├── Controllers │ │ │ ├── Controller.php │ │ │ └── CustomScriptPsrController.php │ │ ├── Enums │ │ │ ├── MultiTenantColorScheme.php │ │ │ └── MultiTenantConfigImageType.php │ │ ├── GraphQLMappings.php │ │ ├── Image │ │ │ ├── Controller.php │ │ │ └── Manager.php │ │ ├── Manager.php │ │ ├── Models │ │ │ ├── MultiTenantConfig.php │ │ │ └── MultiTenantConfigInput.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ ├── Routes.php │ │ └── Validators │ │ │ └── MultiTenantConfigInputValidator.php │ ├── Controllers │ │ ├── ControllersProvider.php │ │ ├── DomainsController.php │ │ ├── FeaturedEntitiesController.php │ │ ├── TenantPsrController.php │ │ ├── TenantUsersController.php │ │ └── TenantsController.php │ ├── CustomPages │ │ ├── Controllers │ │ │ └── Controller.php │ │ ├── Defaults │ │ │ └── CustomPageDefaultContent.php │ │ ├── Enums │ │ │ └── CustomPageTypesEnum.php │ │ ├── GraphQLMappings.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ ├── Services │ │ │ └── Service.php │ │ ├── Types │ │ │ ├── CustomPage.php │ │ │ └── CustomPageInput.php │ │ └── Validators │ │ │ └── CustomPageInputValidator.php │ ├── Delegates │ │ ├── DelegatesProvider.php │ │ └── FeaturedEntityAddedDelegate.php │ ├── Enums │ │ ├── DnsRecordEnum.php │ │ ├── FeaturedEntityTypeEnum.php │ │ ├── TenantPlanEnum.php │ │ └── TenantUserRoleEnum.php │ ├── EventStreams │ │ └── FeaturedEntitySyncSubscription.php │ ├── Exceptions │ │ ├── NoTenantFoundException.php │ │ └── ReservedDomainException.php │ ├── GraphQLMappings.php │ ├── Lists │ │ ├── Controllers │ │ │ ├── ChannelsListPsrController.php │ │ │ ├── ControllersProvider.php │ │ │ └── GroupsListPsrController.php │ │ ├── Enums │ │ │ └── TenantListRepositoryTypeEnum.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ ├── RepositoriesProvider.php │ │ │ ├── TenantChannelsListRepository.php │ │ │ ├── TenantGroupsListRepository.php │ │ │ └── TenantListRepositoryInterface.php │ │ ├── Routes.php │ │ └── Services │ │ │ ├── ServicesProvider.php │ │ │ ├── TenantChannelsListService.php │ │ │ └── TenantGroupsListService.php │ ├── MobileConfigs │ │ ├── Controllers │ │ │ ├── ControllersProvider.php │ │ │ ├── MobileConfigManagementController.php │ │ │ ├── MobileConfigPreviewPsrController.php │ │ │ ├── MobileConfigPsrController.php │ │ │ └── MobileConfigReaderController.php │ │ ├── Deployments │ │ │ ├── Builds │ │ │ │ └── MobilePreviewHandler.php │ │ │ └── Provider.php │ │ ├── Enums │ │ │ ├── MobileConfigImageTypeEnum.php │ │ │ ├── MobilePreviewStatusEnum.php │ │ │ ├── MobileSplashScreenTypeEnum.php │ │ │ └── MobileWelcomeScreenLogoTypeEnum.php │ │ ├── Exceptions │ │ │ └── NoMobileConfigFoundException.php │ │ ├── GraphQLMappings.php │ │ ├── Helpers │ │ │ └── GitlabPipelineJwtTokenValidator.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ ├── MobileConfigRepository.php │ │ │ └── RepositoriesProvider.php │ │ ├── Routes.php │ │ ├── Services │ │ │ ├── MobileConfigAssetsService.php │ │ │ ├── MobileConfigManagementService.php │ │ │ ├── MobileConfigReaderService.php │ │ │ ├── ProductionAppVersionService.php │ │ │ └── ServicesProvider.php │ │ └── Types │ │ │ ├── AppReadyMobileConfig.php │ │ │ └── MobileConfig.php │ ├── Models │ │ └── Tenant.php │ ├── Module.php │ ├── Provider.php │ ├── Repositories │ │ ├── DomainsRepository.php │ │ ├── FeaturedEntitiesRepository.php │ │ ├── RepositoriesProvider.php │ │ └── TenantUsersRepository.php │ ├── Repository.php │ ├── Routes.php │ ├── Services │ │ ├── AutoTrialService.php │ │ ├── DomainService.php │ │ ├── FeaturedEntityAutoSubscribeService.php │ │ ├── FeaturedEntityService.php │ │ ├── MultiTenantBootService.php │ │ ├── MultiTenantDataService.php │ │ ├── ServicesProvider.php │ │ ├── TenantEmailService.php │ │ ├── TenantLifecyleService.php │ │ ├── TenantUsersService.php │ │ └── TenantsService.php │ └── Types │ │ ├── Factories │ │ ├── FactoriesProvider.php │ │ ├── FeaturedEntityFactory.php │ │ ├── TenantFactory.php │ │ └── TenantUserFactory.php │ │ ├── FeaturedEntity.php │ │ ├── FeaturedEntityConnection.php │ │ ├── FeaturedEntityEdge.php │ │ ├── FeaturedEntityInterface.php │ │ ├── FeaturedGroup.php │ │ ├── FeaturedUser.php │ │ ├── MultiTenantDomain.php │ │ ├── MultiTenantDomainDnsRecord.php │ │ ├── TenantLoginRedirectDetails.php │ │ ├── TenantUser.php │ │ └── Validators │ │ ├── TenantInputValidator.php │ │ └── TenantUserInputValidator.php ├── Nostr │ ├── Controller.php │ ├── EntityExporter.php │ ├── EntityImporter.php │ ├── Keys.php │ ├── Manager.php │ ├── Module.php │ ├── NIP26DelegateToken.php │ ├── NostrEvent.php │ ├── NostrOpsEventStreamsSubscription.php │ ├── PocSync.php │ ├── Provider.php │ ├── Repository.php │ ├── RequestValidators │ │ ├── GetEntityRequestValidator.php │ │ └── GetEventsRequestValidator.php │ ├── Routes.php │ ├── ThirdPartyRelays.php │ └── table.sql ├── Notification │ ├── Batches │ │ ├── BatchSubscription.php │ │ ├── Manager.php │ │ └── Repository.php │ ├── CassandraRepository.php │ ├── Counters.php │ ├── Entity.php │ ├── Events.php │ ├── Manager.php │ ├── Notification.php │ ├── NotificationProvider.php │ ├── Polyfills │ │ └── Migration.php │ ├── Settings │ │ └── PushSettings.php │ └── UpdateMarkers │ │ ├── Manager.php │ │ ├── Repository.php │ │ └── UpdateMarker.php ├── Notifications │ ├── Controller.php │ ├── Delegates │ │ ├── EmailDigestsDelegate.php │ │ ├── EventStreamsDelegate.php │ │ └── NotificationsDelegateInterface.php │ ├── EmailDigests │ │ ├── EmailDigestMarker.php │ │ ├── EmailDigestOpts.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Repository.php │ ├── Manager.php │ ├── Module.php │ ├── Notification.php │ ├── NotificationTypes.php │ ├── NotificationsEventStreamsSubscription.php │ ├── NotificationsListOpts.php │ ├── PostSubscriptions │ │ ├── Controllers │ │ │ └── PostSubscriptionsController.php │ │ ├── Enums │ │ │ └── PostSubscriptionFrequencyEnum.php │ │ ├── EventStreamsSubscriptions │ │ │ └── PostSubscriptionsEventStreamsSubscription.php │ │ ├── GraphQLMappings.php │ │ ├── Helpers │ │ │ ├── Interfaces │ │ │ │ └── PostNotificationDispatchHelperInterface.php │ │ │ └── PostNotificationDispatchHelper.php │ │ ├── Models │ │ │ ├── PostSubscription.php │ │ │ └── PostSubscriptionFactory.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ └── PostSubscriptionsRepository.php │ │ └── Services │ │ │ └── PostSubscriptionsService.php │ ├── Provider.php │ ├── Push │ │ ├── Config │ │ │ ├── PushNotificationConfig.php │ │ │ ├── PushNotificationsConfigRepository.php │ │ │ └── PushNotificationsConfigService.php │ │ ├── DeviceSubscriptions │ │ │ ├── Controller.php │ │ │ ├── DeviceSubscription.php │ │ │ ├── DeviceSubscriptionListOpts.php │ │ │ ├── Manager.php │ │ │ └── Repository.php │ │ ├── Manager.php │ │ ├── ManualSend │ │ │ ├── Controllers │ │ │ │ └── ManualSendController.php │ │ │ ├── Enums │ │ │ │ └── PushNotificationPlatformEnum.php │ │ │ ├── Interfaces │ │ │ │ ├── ManualSendControllerInterface.php │ │ │ │ ├── ManualSendPayloadValidatorInterface.php │ │ │ │ └── ManualSendServiceInterface.php │ │ │ ├── Models │ │ │ │ └── ManualSendRequest.php │ │ │ ├── Module.php │ │ │ ├── Provider.php │ │ │ ├── Routes.php │ │ │ ├── Services │ │ │ │ └── ManualSendService.php │ │ │ └── Validators │ │ │ │ └── ManualSendPayloadValidator.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── PushNotification.php │ │ ├── PushNotificationInterface.php │ │ ├── PushNotificationsEventStreamsSubscription.php │ │ ├── Routes.php │ │ ├── Services │ │ │ ├── AbstractService.php │ │ │ ├── ApnsService.php │ │ │ ├── FcmService.php │ │ │ ├── PushServiceInterface.php │ │ │ └── WebPushService.php │ │ ├── Settings │ │ │ ├── Controller.php │ │ │ ├── Manager.php │ │ │ ├── PushSetting.php │ │ │ ├── Repository.php │ │ │ └── SettingsListOpts.php │ │ ├── System │ │ │ ├── AdminPushNotificationRequestStatus.php │ │ │ ├── AdminPushNotificationsEventStreamsSubscription.php │ │ │ ├── Builders │ │ │ │ ├── EntityPushNotificationBuilderInterface.php │ │ │ │ └── TopPostPushNotificationBuilder.php │ │ │ ├── Controller.php │ │ │ ├── Delegates │ │ │ │ └── AdminPushNotificationEventStreamsDelegate.php │ │ │ ├── Manager.php │ │ │ ├── Models │ │ │ │ ├── AdminPushNotificationRequest.php │ │ │ │ ├── AdminPushNotificationRequestCounters.php │ │ │ │ └── CustomPushNotification.php │ │ │ ├── Repository.php │ │ │ ├── ResponseBuilders │ │ │ │ ├── GetHistoryResponseBuilder.php │ │ │ │ └── ScheduleResponseBuilder.php │ │ │ └── Targets │ │ │ │ ├── AllAndroidAppDevices.php │ │ │ │ ├── AllDevices.php │ │ │ │ ├── SystemPushNotificationTargetInterface.php │ │ │ │ └── SystemPushNotificationTargetsList.php │ │ ├── TopPost │ │ │ └── Manager.php │ │ └── UndeliverableException.php │ ├── Repository.php │ └── Routes.php ├── OAuth │ ├── Controller.php │ ├── Delegates │ │ └── EventsDelegate.php │ ├── Entities │ │ ├── AccessTokenEntity.php │ │ ├── AuthCodeEntity.php │ │ ├── ClientEntity.php │ │ ├── RefreshTokenEntity.php │ │ ├── ScopeEntity.php │ │ └── UserEntity.php │ ├── Managers │ │ └── AccessTokenManager.php │ ├── Module.php │ ├── NonceHelper.php │ ├── Provider.php │ ├── Repositories │ │ ├── AccessTokenRepository.php │ │ ├── AuthCodeRepository.php │ │ ├── ClientRepository.php │ │ ├── Delegates │ │ │ └── SentryScopeDelegate.php │ │ ├── IdentityRepository.php │ │ ├── RefreshTokenRepository.php │ │ ├── ScopeRepository.php │ │ └── UserRepository.php │ └── Routes.php ├── OEmbed │ ├── Controller.php │ ├── Module.php │ ├── Provider.php │ └── Routes.php ├── Onboarding │ ├── Controller.php │ ├── Manager.php │ ├── Module.php │ ├── OnboardingGroups │ │ ├── AbstractOnboardingGroup.php │ │ ├── InitialOnboardingGroup.php │ │ ├── OnboardingGroupInterface.php │ │ └── OngoingOnboardingGroup.php │ ├── Provider.php │ ├── Routes.php │ ├── Steps │ │ ├── AvatarStep.php │ │ ├── BriefdescriptionStep.php │ │ ├── CreatePostStep.php │ │ ├── CreatorFrequencyStep.php │ │ ├── DateOfBirthStep.php │ │ ├── DisplayNameStep.php │ │ ├── LocationStep.php │ │ ├── OnboardingStepInterface.php │ │ ├── SetupChannelStep.php │ │ ├── SuggestedChannelsStep.php │ │ ├── SuggestedGroupsStep.php │ │ ├── SuggestedHashtagsStep.php │ │ ├── TokensVerificationStep.php │ │ ├── VerifyEmailStep.php │ │ └── VerifyUniquenessStep.php │ └── V5 │ │ ├── GraphQL │ │ ├── Controllers │ │ │ └── Controller.php │ │ ├── GraphQLMappings.php │ │ └── Types │ │ │ ├── OnboardingState.php │ │ │ └── OnboardingStepProgressState.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Repository.php ├── PWA │ ├── Controllers │ │ └── ManifestController.php │ ├── Models │ │ ├── AbstractPWAManifest.php │ │ ├── MindsManifest.php │ │ └── TenantManifest.php │ ├── Module.php │ ├── Provider.php │ ├── Routes.php │ └── Services │ │ └── ManifestService.php ├── Payments │ ├── Checkout │ │ ├── Controllers │ │ │ ├── CheckoutContentController.php │ │ │ ├── CheckoutGqlController.php │ │ │ ├── CheckoutPsrController.php │ │ │ └── ControllersProvider.php │ │ ├── Delegates │ │ │ ├── CheckoutEventsDelegate.php │ │ │ └── DelegatesProvider.php │ │ ├── Enums │ │ │ ├── CheckoutPageKeyEnum.php │ │ │ └── CheckoutTimePeriodEnum.php │ │ ├── GraphQLMappings.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Routes.php │ │ ├── Services │ │ │ ├── CheckoutContentService.php │ │ │ ├── CheckoutService.php │ │ │ └── ServicesProvider.php │ │ └── Types │ │ │ ├── AddOn.php │ │ │ ├── AddOnSummary.php │ │ │ ├── CheckoutPage.php │ │ │ ├── Factories │ │ │ ├── AddOnSummaryInputFactory.php │ │ │ ├── FactoriesProvider.php │ │ │ ├── PlanSummaryInputFactory.php │ │ │ └── SummaryInputFactory.php │ │ │ ├── Plan.php │ │ │ ├── PlanSummary.php │ │ │ └── Summary.php │ ├── Controller.php │ ├── Customer.php │ ├── Events.php │ ├── Factory.php │ ├── GiftCards │ │ ├── Controllers │ │ │ └── Controller.php │ │ ├── Delegates │ │ │ ├── EmailDelegate.php │ │ │ └── NotificationDelegate.php │ │ ├── Enums │ │ │ ├── GiftCardOrderingEnum.php │ │ │ ├── GiftCardPaymentTypeEnum.php │ │ │ ├── GiftCardProductIDLabelEnum.php │ │ │ ├── GiftCardProductIdEnum.php │ │ │ └── GiftCardStatusFilterEnum.php │ │ ├── Exceptions │ │ │ ├── GiftCardAlreadyClaimedException.php │ │ │ ├── GiftCardInsufficientFundsException.php │ │ │ ├── GiftCardNotFoundException.php │ │ │ ├── GiftCardPaymentFailedException.php │ │ │ └── InvalidGiftCardClaimCodeException.php │ │ ├── GraphQLMappings.php │ │ ├── Manager.php │ │ ├── Models │ │ │ ├── GiftCard.php │ │ │ └── GiftCardTransaction.php │ │ ├── Module.php │ │ ├── PaymentProcessor.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ ├── Types │ │ │ ├── GiftCardBalanceByProductId.php │ │ │ ├── GiftCardEdge.php │ │ │ ├── GiftCardTarget.php │ │ │ ├── GiftCardTransactionEdge.php │ │ │ ├── GiftCardTransactionsConnection.php │ │ │ └── GiftCardsConnection.php │ │ └── Validators │ │ │ └── GiftCardTargetInputValidator.php │ ├── HookInterface.php │ ├── InAppPurchases │ │ ├── Apple │ │ │ ├── AppleInAppPurchasesClient.php │ │ │ ├── Enums │ │ │ │ ├── ApplePurchaseStatusEnum.php │ │ │ │ └── AppleSubscriptionStatusEnum.php │ │ │ └── Types │ │ │ │ ├── AppleConsumablePurchase.php │ │ │ │ └── AppleSubscription.php │ │ ├── Clients │ │ │ ├── InAppPurchaseClientInterface.php │ │ │ └── InAppPurchasesClientFactory.php │ │ ├── Controller.php │ │ ├── Enums │ │ │ ├── InAppPurchasePaymentMethodIdsEnum.php │ │ │ └── InAppPurchaseTypeEnum.php │ │ ├── Google │ │ │ ├── Enums │ │ │ │ └── GoogleInAppPurchaseProductsEnum.php │ │ │ ├── GoogleInAppPurchasesClient.php │ │ │ └── GoogleInAppPurchasesPubSub.php │ │ ├── Manager.php │ │ ├── Models │ │ │ ├── InAppPurchase.php │ │ │ └── ProductPurchase.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── RelationalRepository.php │ │ └── Routes.php │ ├── Manager.php │ ├── Merchant.php │ ├── Models │ │ ├── GetPaymentsOpts.php │ │ └── Payment.php │ ├── Module.php │ ├── PaymentMethod.php │ ├── PaymentServiceInterface.php │ ├── PaymentsProvider.php │ ├── Plans │ │ ├── Events.php │ │ ├── Manager.php │ │ ├── Plan.php │ │ └── Repository.php │ ├── Provider.php │ ├── Repository.php │ ├── Routes.php │ ├── Sale.php │ ├── SiteMemberships │ │ ├── Controllers │ │ │ ├── ControllersProvider.php │ │ │ ├── SiteMembershipBatchPsrController.php │ │ │ ├── SiteMembershipManagementController.php │ │ │ ├── SiteMembershipReaderController.php │ │ │ ├── SiteMembershipSubscriptionsController.php │ │ │ ├── SiteMembershipSubscriptionsManagementPsrController.php │ │ │ └── SiteMembershipSubscriptionsPsrController.php │ │ ├── Enums │ │ │ ├── SiteMembershipBatchIdTypeEnum.php │ │ │ ├── SiteMembershipBillingPeriodEnum.php │ │ │ ├── SiteMembershipErrorEnum.php │ │ │ └── SiteMembershipPricingModelEnum.php │ │ ├── Events │ │ │ └── Events.php │ │ ├── Exceptions │ │ │ ├── NoSiteMembershipFoundException.php │ │ │ ├── NoSiteMembershipGroupsFoundException.php │ │ │ ├── NoSiteMembershipRolesFoundException.php │ │ │ ├── NoSiteMembershipSubscriptionFoundException.php │ │ │ ├── NoSiteMembershipsFoundException.php │ │ │ └── TooManySiteMembershipsException.php │ │ ├── GraphQLMappings.php │ │ ├── Module.php │ │ ├── PaywalledEntities │ │ │ ├── Controllers │ │ │ │ └── PaywalledEntitiesPsrController.php │ │ │ ├── Events.php │ │ │ ├── Module.php │ │ │ ├── PaywalledEntitiesRepository.php │ │ │ ├── Provider.php │ │ │ ├── Routes.php │ │ │ └── Services │ │ │ │ ├── CreatePaywalledEntityService.php │ │ │ │ ├── PaywalledEntityGatekeeperService.php │ │ │ │ └── PaywalledEntityService.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ ├── DTO │ │ │ │ └── SiteMembershipSubscriptionDTO.php │ │ │ ├── RepositoriesProvider.php │ │ │ ├── SiteMembershipGroupsRepository.php │ │ │ ├── SiteMembershipRepository.php │ │ │ ├── SiteMembershipRolesRepository.php │ │ │ └── SiteMembershipSubscriptionsRepository.php │ │ ├── Routes.php │ │ ├── Services │ │ │ ├── HasActiveSiteMembershipCacheService.php │ │ │ ├── ServicesProvider.php │ │ │ ├── SiteMembershipBatchService.php │ │ │ ├── SiteMembershipManagementService.php │ │ │ ├── SiteMembershipReaderService.php │ │ │ ├── SiteMembershipSubscriptionsManagementService.php │ │ │ ├── SiteMembershipSubscriptionsService.php │ │ │ └── SiteMembershipsRenewalsService.php │ │ ├── Types │ │ │ ├── Factories │ │ │ │ ├── InputFactoriesProvider.php │ │ │ │ └── SiteMembershipInputFactory.php │ │ │ ├── SiteMembership.php │ │ │ ├── SiteMembershipBatchUpdate.php │ │ │ └── SiteMembershipSubscription.php │ │ └── Webhooks │ │ │ ├── Controllers │ │ │ └── SiteMembershipWebhooksPsrController.php │ │ │ ├── Module.php │ │ │ ├── Provider.php │ │ │ └── Routes.php │ ├── Stripe │ │ ├── Checkout │ │ │ ├── Controller.php │ │ │ ├── Enums │ │ │ │ ├── CaptureMethodEnum.php │ │ │ │ ├── CheckoutModeEnum.php │ │ │ │ └── PaymentMethodCollectionEnum.php │ │ │ ├── Manager.php │ │ │ ├── Models │ │ │ │ └── CustomField.php │ │ │ ├── Products │ │ │ │ ├── Enums │ │ │ │ │ ├── ProductPriceBillingPeriodEnum.php │ │ │ │ │ ├── ProductPriceCurrencyEnum.php │ │ │ │ │ ├── ProductPricingModelEnum.php │ │ │ │ │ ├── ProductSubTypeEnum.php │ │ │ │ │ └── ProductTypeEnum.php │ │ │ │ └── Services │ │ │ │ │ ├── ProductPriceService.php │ │ │ │ │ ├── ProductService.php │ │ │ │ │ └── ServicesProvider.php │ │ │ └── Session │ │ │ │ └── Services │ │ │ │ ├── ServicesProvider.php │ │ │ │ └── SessionService.php │ │ ├── Connect │ │ │ ├── Account.php │ │ │ ├── Balance.php │ │ │ ├── Controller.php │ │ │ ├── Delegates │ │ │ │ └── NotificationDelegate.php │ │ │ ├── Manager.php │ │ │ └── ManagerV2.php │ │ ├── Currencies.php │ │ ├── CustomerPortal │ │ │ ├── Enums │ │ │ │ ├── CustomerPortalFlowTypeEnum.php │ │ │ │ └── CustomerPortalSubscriptionCancellationModeEnum.php │ │ │ ├── Helpers │ │ │ │ └── CustomerPortalFlowConfiguration.php │ │ │ ├── Module.php │ │ │ ├── Provider.php │ │ │ ├── Repositories │ │ │ │ ├── CustomerPortalConfigurationRepository.php │ │ │ │ └── RepositoriesProvider.php │ │ │ └── Services │ │ │ │ ├── CustomerPortalService.php │ │ │ │ └── ServicesProvider.php │ │ ├── Customers │ │ │ ├── Customer.php │ │ │ ├── Manager.php │ │ │ └── ManagerV2.php │ │ ├── Exceptions │ │ │ ├── StripeNotConfiguredException.php │ │ │ └── StripeTransferFailedException.php │ │ ├── Instances │ │ │ ├── AccountInstance.php │ │ │ ├── ApplicationFeeInstance.php │ │ │ ├── BalanceInstance.php │ │ │ ├── ChargeInstance.php │ │ │ ├── CustomerInstance.php │ │ │ ├── FileInstance.php │ │ │ ├── PaymentIntentInstance.php │ │ │ ├── PaymentMethodInstance.php │ │ │ ├── PayoutInstance.php │ │ │ ├── SetupIntentInstance.php │ │ │ └── TransferInstance.php │ │ ├── Intents │ │ │ ├── Intent.php │ │ │ ├── Manager.php │ │ │ ├── ManagerV2.php │ │ │ ├── PaymentIntent.php │ │ │ └── SetupIntent.php │ │ ├── Keys │ │ │ ├── Controllers │ │ │ │ └── StripeKeysController.php │ │ │ ├── GraphQLMappings.php │ │ │ ├── Module.php │ │ │ ├── Provider.php │ │ │ ├── StripeKeysRepository.php │ │ │ ├── StripeKeysService.php │ │ │ └── Types │ │ │ │ └── StripeKeysType.php │ │ ├── Module.php │ │ ├── PaymentMethods │ │ │ ├── Manager.php │ │ │ └── PaymentMethod.php │ │ ├── Provider.php │ │ ├── Routes.php │ │ ├── Stripe.php │ │ ├── StripeApiKeyConfig.php │ │ ├── StripeClient.php │ │ ├── Subscriptions │ │ │ └── Services │ │ │ │ ├── ServicesProvider.php │ │ │ │ └── SubscriptionsService.php │ │ ├── Transactions │ │ │ ├── Manager.php │ │ │ └── Transaction.php │ │ └── Webhooks │ │ │ ├── Controllers │ │ │ └── WebhookPsrController.php │ │ │ ├── Enums │ │ │ └── WebhookEventTypeEnum.php │ │ │ ├── Model │ │ │ └── SubscriptionsWebhookDetails.php │ │ │ ├── Module.php │ │ │ ├── Provider.php │ │ │ ├── Repositories │ │ │ └── WebhooksConfigurationRepository.php │ │ │ └── Services │ │ │ ├── SubscriptionsWebhookService.php │ │ │ └── WebhookEventBuilderService.php │ ├── Subscriptions │ │ ├── Delegates │ │ │ ├── AnalyticsDelegate.php │ │ │ └── EmailDelegate.php │ │ ├── Manager.php │ │ ├── Repository.php │ │ ├── Subscription.php │ │ ├── SubscriptionPaymentServiceInterface.php │ │ ├── SubscriptionsHookInterface.php │ │ ├── SubscriptionsIterator.php │ │ └── SubscriptionsProvider.php │ ├── Transfers │ │ └── Transfer.php │ └── V2 │ │ ├── Controllers │ │ └── PaymentMethodsController.php │ │ ├── Enums │ │ ├── FreePaymentMethodEnum.php │ │ ├── PaymentAffiliateType.php │ │ ├── PaymentMethod.php │ │ ├── PaymentStatus.php │ │ └── PaymentType.php │ │ ├── Exceptions │ │ ├── InvalidPaymentMethodException.php │ │ └── PaymentNotFoundException.php │ │ ├── GraphQLMappings.php │ │ ├── Manager.php │ │ ├── Models │ │ ├── PaymentDetails.php │ │ └── PaymentMethod.php │ │ ├── Module.php │ │ ├── PaymentMethods │ │ └── Manager.php │ │ ├── PaymentOptions.php │ │ ├── Provider.php │ │ └── Repository.php ├── Permaweb │ ├── Delegates │ │ ├── AbstractPermawebDelegate.php │ │ ├── DispatchDelegate.php │ │ └── GenerateIdDelegate.php │ ├── Manager.php │ ├── Module.php │ └── PermawebProvider.php ├── Plus │ ├── Manager.php │ ├── PlusProvider.php │ └── Subscription.php ├── Pro │ ├── Delegates │ │ ├── InitializeSettingsDelegate.php │ │ └── SubscriptionDelegate.php │ ├── Manager.php │ ├── ProProvider.php │ ├── Repository.php │ └── Settings.php ├── Provisioner │ ├── Installer.php │ └── Provisioners │ │ ├── CassandraProvisioner.php │ │ ├── ProvisionerInterface.php │ │ ├── cassandra-provision.cql │ │ └── mysql-provision.sql ├── Queue │ ├── Client.php │ ├── Interfaces │ │ ├── QueueClient.php │ │ └── QueueRunner.php │ ├── LegacyClient.php │ ├── LegacyQueueTopic.php │ ├── Message.php │ ├── QueueProvider.php │ └── Runners │ │ ├── BlockchainTransactions.php │ │ ├── ChannelDeferredOps.php │ │ ├── CleanupDispatcher.php │ │ ├── Email.php │ │ ├── Factory.php │ │ ├── MatureBatch.php │ │ ├── OAuthEvents.php │ │ ├── PriorityEmail.php │ │ ├── Registered.php │ │ ├── ReportsAppealSummon.php │ │ ├── Transcode.php │ │ ├── UserStateChange.php │ │ ├── WelcomeEmail.php │ │ ├── WireNotification.php │ │ └── YouTubeImporter.php ├── Recommendations │ ├── Algorithms │ │ ├── AbstractRecommendationsAlgorithm.php │ │ ├── AlgorithmOptions.php │ │ ├── FriendsOfFriend │ │ │ ├── FriendsOfFriendRecommendationsAlgorithm.php │ │ │ ├── Repository.php │ │ │ ├── RepositoryOptions.php │ │ │ └── Validators │ │ │ │ └── RepositoryOptionsValidator.php │ │ ├── FriendsOfFriends │ │ │ └── Validators │ │ │ │ └── RepositoryOptionsValidator.php │ │ ├── RecommendationsAlgorithmInterface.php │ │ ├── SuggestedChannels │ │ │ └── SuggestedChannelsRecommendationsAlgorithm.php │ │ ├── SuggestedGroups │ │ │ └── SuggestedGroupsRecommendationsAlgorithm.php │ │ └── WiderNetwork │ │ │ ├── Repository.php │ │ │ ├── RepositoryOptions.php │ │ │ └── WiderNetworkRecommendationsAlgorithm.php │ ├── Config │ │ └── RecommendationsLocationsMappingConfig.php │ ├── Controller.php │ ├── Injectors │ │ └── BoostSuggestionInjector.php │ ├── Locations │ │ ├── AbstractRecommendationsLocation.php │ │ ├── ChannelLocation.php │ │ ├── DiscoveryFeedLocation.php │ │ ├── FeedSidebarLocation.php │ │ ├── LocationInterface.php │ │ ├── NewsfeedLocation.php │ │ └── WiderNetworkLocation.php │ ├── Manager.php │ ├── ManagerInterface.php │ ├── Module.php │ ├── Provider.php │ ├── RepositoryInterface.php │ ├── ResponseBuilders │ │ └── GetRecommendationsResponseBuilder.php │ ├── Routes.php │ ├── UserRecommendationsCluster.php │ └── Validators │ │ └── GetRecommendationsRequestValidator.php ├── Referrals │ ├── Controller.php │ ├── Delegates │ │ └── NotificationDelegate.php │ ├── Manager.php │ ├── Module.php │ ├── Provider.php │ ├── Referral.php │ ├── ReferralCookie.php │ ├── Repository.php │ └── Routes.php ├── Register │ ├── Controller.php │ ├── Manager.php │ ├── Module.php │ ├── Provider.php │ └── Routes.php ├── Reports │ ├── Actions.php │ ├── Appeals.php │ ├── Appeals │ │ ├── Appeal.php │ │ ├── Delegates │ │ │ ├── NotificationDelegate.php │ │ │ └── SummonDelegate.php │ │ ├── Manager.php │ │ ├── NotAppealableException.php │ │ └── Repository.php │ ├── AutomatedReportStreams │ │ ├── AdminReportsTopic.php │ │ ├── AutomatedReportEvent.php │ │ ├── AutomatedReportStreamSubscription.php │ │ └── Events │ │ │ ├── AdminReportSpamAccountEvent.php │ │ │ ├── AdminReportSpamCommentEvent.php │ │ │ ├── AdminReportTokenAccountEvent.php │ │ │ └── ScoreCommentsForSpamEvent.php │ ├── Enums │ │ ├── Reasons │ │ │ ├── Illegal │ │ │ │ └── SubReasonEnum.php │ │ │ ├── Nsfw │ │ │ │ └── SubReasonEnum.php │ │ │ └── Security │ │ │ │ └── SubReasonEnum.php │ │ ├── ReportActionEnum.php │ │ ├── ReportReasonEnum.php │ │ └── ReportStatusEnum.php │ ├── Events.php │ ├── Jury │ │ ├── Decision.php │ │ ├── ElasticRepository.php │ │ ├── JuryClosedException.php │ │ ├── Manager.php │ │ └── Repository.php │ ├── Manager.php │ ├── Module.php │ ├── PreFeb2019Repository.php │ ├── Provider.php │ ├── Report.php │ ├── Repository.php │ ├── Stats │ │ ├── Aggregates │ │ │ ├── ModerationStatsAggregateInterface.php │ │ │ ├── TotalActionedAggregate.php │ │ │ ├── TotalAppealsAggregate.php │ │ │ ├── TotalOverturnedAggregate.php │ │ │ ├── TotalPostsAggregate.php │ │ │ └── TotalReportsAggregate.php │ │ └── Manager.php │ ├── Strikes │ │ ├── Delegates │ │ │ └── EmailDelegate.php │ │ ├── Manager.php │ │ ├── Repository.php │ │ └── Strike.php │ ├── Summons │ │ ├── Cohort.php │ │ ├── Delegates │ │ │ └── SocketDelegate.php │ │ ├── Manager.php │ │ ├── Pool.php │ │ ├── Repository.php │ │ ├── Summons.php │ │ └── SummonsNotFoundException.php │ ├── UserReports │ │ ├── Delegates │ │ │ └── NotificationDelegate.php │ │ ├── ElasticRepository.php │ │ ├── Manager.php │ │ ├── Repository.php │ │ └── UserReport.php │ ├── V2 │ │ ├── Controllers │ │ │ ├── ReportController.php │ │ │ └── VerdictController.php │ │ ├── GraphQLMappings.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ └── ReportRepository.php │ │ ├── Services │ │ │ ├── ActionService.php │ │ │ └── ReportService.php │ │ ├── Types │ │ │ ├── Report.php │ │ │ ├── ReportEdge.php │ │ │ ├── ReportInput.php │ │ │ ├── ReportsConnection.php │ │ │ └── VerdictInput.php │ │ └── Validators │ │ │ └── ReportInputValidator.php │ ├── Verdict │ │ ├── Delegates │ │ │ ├── ActionDelegate.php │ │ │ ├── ActivityPubReportDelegate.php │ │ │ ├── EmailDelegate.php │ │ │ ├── MetricsDelegate.php │ │ │ ├── NotificationDelegate.php │ │ │ ├── Provider.php │ │ │ ├── ReleaseSummonsesDelegate.php │ │ │ └── ReverseActionDelegate.php │ │ ├── Manager.php │ │ ├── Repository.php │ │ └── Verdict.php │ └── mappings.json ├── Rewards │ ├── Contributions │ │ ├── Contribution.php │ │ ├── ContributionQueryOpts.php │ │ ├── ContributionSummary.php │ │ ├── ContributionValues.php │ │ ├── DailyCollection.php │ │ ├── Manager.php │ │ ├── Overview.php │ │ ├── Repository.php │ │ ├── Sums.php │ │ └── UsersIterator.php │ ├── Controller.php │ ├── DailyNotification.php │ ├── Delegates │ │ └── ReferralDelegate.php │ ├── Eligibility │ │ └── Manager.php │ ├── Events.php │ ├── Join.php │ ├── JoinedValidator.php │ ├── Manager.php │ ├── Module.php │ ├── Notify.php │ ├── OfacBlacklist.php │ ├── Provider.php │ ├── ReferralValidator.php │ ├── Repository.php │ ├── Restrictions │ │ └── Blockchain │ │ │ ├── Constants.php │ │ │ ├── Controller.php │ │ │ ├── Exceptions │ │ │ ├── RestrictedException.php │ │ │ └── UnsupportedNetworkException.php │ │ │ ├── Manager.php │ │ │ ├── Module.php │ │ │ ├── Ofac │ │ │ ├── Client.php │ │ │ └── Manager.php │ │ │ ├── Provider.php │ │ │ ├── Repository.php │ │ │ ├── Restriction.php │ │ │ └── Routes.php │ ├── RewardEntry.php │ ├── RewardsQueryOpts.php │ ├── RewardsSummary.php │ ├── Routes.php │ ├── TokenomicsManifests │ │ ├── TokenomicsManifestInterface.php │ │ └── TokenomicsManifestV2.php │ └── Withdraw │ │ ├── Admin │ │ ├── Controller.php │ │ └── Manager.php │ │ ├── Delegates │ │ ├── EmailDelegate.php │ │ ├── NotificationsDelegate.php │ │ └── RequestHydrationDelegate.php │ │ ├── Manager.php │ │ ├── Repository.php │ │ └── Request.php ├── Router.php ├── Router │ ├── Dispatcher.php │ ├── Enums │ │ ├── ApiScopeEnum.php │ │ └── RequestAttributeEnum.php │ ├── Exceptions │ │ ├── ForbiddenException.php │ │ ├── UnauthorizedException.php │ │ └── UnverifiedEmailException.php │ ├── Hooks │ │ ├── ShutdownHandlerManager.php │ │ └── ShutdownHandlerManagerInterface.php │ ├── Middleware │ │ ├── AdminMiddleware.php │ │ ├── FeatureFlagMiddleware.php │ │ ├── FederationEnabledMiddleware.php │ │ ├── Kernel │ │ │ ├── ContentNegotiationMiddleware.php │ │ │ ├── ContentSecurityPolicyMiddleware.php │ │ │ ├── CorsMiddleware.php │ │ │ ├── EmptyResponseMiddleware.php │ │ │ ├── ErrorHandlerMiddleware.php │ │ │ ├── FrameSecurityMiddleware.php │ │ │ ├── JsonPayloadMiddleware.php │ │ │ ├── MultiTenantBootMiddleware.php │ │ │ ├── OauthMiddleware.php │ │ │ ├── PersonalApiTokenMiddleware.php │ │ │ ├── RegistryEntryMiddleware.php │ │ │ ├── RequestHandlerMiddleware.php │ │ │ ├── RouteResolverMiddleware.php │ │ │ ├── SessionMiddleware.php │ │ │ ├── ValidateScopesMiddleware.php │ │ │ └── XsrfCookieMiddleware.php │ │ ├── LoggedInMiddleware.php │ │ ├── MauticWebhookMiddleware.php │ │ ├── MultiTenantOnlyMiddleware.php │ │ ├── NotMultiTenantMiddleware.php │ │ └── PermissionsMiddleware.php │ ├── ModuleRoutes.php │ ├── PrePsr7 │ │ ├── Fallback.php │ │ ├── Middleware │ │ │ └── RouterMiddleware.php │ │ └── Router.php │ ├── Registry.php │ ├── RegistryEntry.php │ ├── Route.php │ └── RouterProvider.php ├── SEO │ ├── Manager.php │ ├── Robots │ │ ├── Controllers │ │ │ └── RobotsFileController.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Routes.php │ │ └── Services │ │ │ └── RobotsFileService.php │ └── Sitemaps │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Resolvers │ │ ├── AbstractEntitiesResolver.php │ │ ├── ActivityResolver.php │ │ ├── BlogsResolver.php │ │ ├── DiscoveryResolver.php │ │ ├── MarketingResolver.php │ │ └── UsersResolver.php │ │ └── SitemapUrl.php ├── SMS │ ├── Exceptions │ │ ├── InvalidPhoneException.php │ │ ├── UnsupportedRegionException.php │ │ └── VoIpPhoneException.php │ ├── SMSProvider.php │ ├── SMSServiceInterface.php │ └── Services │ │ ├── SNS.php │ │ ├── Twilio.php │ │ └── TwilioVerify.php ├── Sandbox.php ├── Search │ ├── Controllers │ │ └── SearchController.php │ ├── Documents.php │ ├── Enums │ │ ├── SearchFilterEnum.php │ │ ├── SearchMediaTypeEnum.php │ │ └── SearchNsfwEnum.php │ ├── GraphQLMappings.php │ ├── Hashtags │ │ └── Manager.php │ ├── Helpers │ │ └── DirectMatchInjector.php │ ├── Index.php │ ├── Mappings │ │ ├── ActivityMapping.php │ │ ├── EntityMapping.php │ │ ├── Factory.php │ │ ├── GroupMapping.php │ │ ├── MappingInterface.php │ │ ├── ObjectBlogMapping.php │ │ ├── ObjectImageMapping.php │ │ ├── ObjectVideoMapping.php │ │ └── UserMapping.php │ ├── MetricsSync │ │ ├── Manager.php │ │ ├── MetricsSync.php │ │ ├── Repository.php │ │ └── Resolvers │ │ │ ├── AbstractMetricResolver.php │ │ │ ├── AbstractVotesMetricResolver.php │ │ │ ├── CommentsCountMetricResolver.php │ │ │ ├── MetricResolverInterface.php │ │ │ ├── VotesDownMetricResolver.php │ │ │ └── VotesUpMetricResolver.php │ ├── Module.php │ ├── Provider.php │ ├── Provisioner.php │ ├── RemoteSearchIndexerSubscription.php │ ├── Search.php │ ├── SearchIndexerSubscription.php │ ├── SortingAlgorithms │ │ ├── Chronological.php │ │ ├── Controversial.php │ │ ├── DigestFeed.php │ │ ├── GroupTop.php │ │ ├── Hot.php │ │ ├── PlusFeed.php │ │ ├── SortingAlgorithm.php │ │ ├── Top.php │ │ ├── TopByPostAge.php │ │ └── TopV2.php │ ├── Tagcloud.php │ └── Types │ │ ├── SearchResultsConnection.php │ │ └── SearchResultsCount.php ├── Security │ ├── ACL.php │ ├── ACL │ │ └── Block.php │ ├── Audit │ │ ├── Controller.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ └── AuditRepository.php │ │ ├── Routes.php │ │ └── Services │ │ │ └── AuditService.php │ ├── Block │ │ ├── BlockEntry.php │ │ ├── BlockLimitException.php │ │ ├── BlockListOpts.php │ │ ├── Delegates │ │ │ ├── AnalyticsDelegate.php │ │ │ └── EventStreamsDelegate.php │ │ ├── Events.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Repository.php │ ├── Captcha.php │ ├── Captcha │ │ ├── QuestionsInterface.php │ │ └── SimpleSums.php │ ├── DeferredSecrets.php │ ├── Events.php │ ├── Exceptions │ │ ├── PasswordRequiresHashUpgradeException.php │ │ └── UserNotSetupException.php │ ├── ForgotPassword │ │ ├── Cache │ │ │ └── ForgotPasswordCache.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Services │ │ │ └── ForgotPasswordService.php │ ├── LoginAttempts.php │ ├── Module.php │ ├── Password.php │ ├── Password │ │ ├── Controller.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── PwnedPasswords │ │ │ └── Client.php │ │ └── Routes.php │ ├── ProhibitedDomains.php │ ├── RateLimits │ │ ├── Events.php │ │ ├── InteractionsLimiter.php │ │ ├── KeyValueLimiter.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── RateLimit.php │ │ └── RateLimitExceededException.php │ ├── Rbac │ │ ├── Controllers │ │ │ ├── PermissionIntentsController.php │ │ │ └── PermissionsController.php │ │ ├── Entities │ │ │ ├── EntityPermissions.php │ │ │ └── Manager.php │ │ ├── Enums │ │ │ ├── ActionEnum.php │ │ │ ├── EffectEnum.php │ │ │ ├── PermissionIntentTypeEnum.php │ │ │ ├── PermissionsEnum.php │ │ │ └── RolesEnum.php │ │ ├── Exceptions │ │ │ ├── RbacNotAllowed.php │ │ │ └── RbacNotConfigured.php │ │ ├── GraphQLMappings.php │ │ ├── Helpers │ │ │ └── PermissionIntentHelpers.php │ │ ├── Models │ │ │ ├── PermissionIntent.php │ │ │ └── Role.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ └── PermissionIntentsRepository.php │ │ ├── Repository.php │ │ ├── Services │ │ │ ├── PermissionIntentsService.php │ │ │ ├── RbacGatekeeperService.php │ │ │ └── RolesService.php │ │ └── Types │ │ │ ├── UserRoleConnection.php │ │ │ └── UserRoleEdge.php │ ├── ReCaptcha.php │ ├── SecurityProvider.php │ ├── SignedUri.php │ ├── Spam.php │ ├── SpamBlocks │ │ ├── IPHash.php │ │ ├── Manager.php │ │ ├── Repository.php │ │ └── SpamBlock.php │ ├── TOTP │ │ ├── Controller.php │ │ ├── Delegates │ │ │ └── EmailDelegate.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ ├── Routes.php │ │ ├── TOTPSecret.php │ │ └── TOTPSecretQueryOpts.php │ ├── TwoFactor.php │ ├── TwoFactor │ │ ├── Bypass │ │ │ └── Manager.php │ │ ├── Delegates │ │ │ ├── EmailDelegate.php │ │ │ ├── SMSDelegate.php │ │ │ ├── TOTPDelegate.php │ │ │ └── TwoFactorDelegateInterface.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Store │ │ │ ├── AbstractTwoFactorSecretStore.php │ │ │ ├── TwoFactoSecretStoreInterface.php │ │ │ ├── TwoFactorSecret.php │ │ │ └── TwoFactorSecretStore.php │ │ ├── TwoFactorInvalidCodeException.php │ │ └── TwoFactorRequiredException.php │ ├── Vault │ │ ├── Client.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── VaultTransitService.php │ ├── XSRF.php │ ├── XSS.php │ └── XSS │ │ ├── GenericRule.php │ │ ├── TagsRule.php │ │ └── UriSchemeRule.php ├── SendWyre │ ├── Manager.php │ ├── Module.php │ ├── Provider.php │ ├── Repository.php │ └── SendWyreAccount.php ├── Session.php ├── Sessions │ ├── ActiveSession.php │ ├── CommonSessions │ │ ├── CommonSession.php │ │ ├── Controller.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ └── Routes.php │ ├── Delegates │ │ ├── SentryScopeDelegate.php │ │ └── UserLanguageDelegate.php │ ├── Manager.php │ ├── Module.php │ ├── Repository.php │ ├── Session.php │ └── SessionsProvider.php ├── Settings │ ├── Controller.php │ ├── Exceptions │ │ └── UserSettingsNotFoundException.php │ ├── GraphQL │ │ ├── Controllers │ │ │ └── DismissalsController.php │ │ ├── GraphQLMappings.php │ │ └── Types │ │ │ └── Dismissal.php │ ├── Manager.php │ ├── Models │ │ ├── BoostPartnerSuitability.php │ │ └── UserSettings.php │ ├── Module.php │ ├── Provider.php │ ├── Repository.php │ └── Routes.php ├── SocialCompass │ ├── Controller.php │ ├── Delegates │ │ ├── AbstractActionDelegate.php │ │ ├── ActionDelegateManager.php │ │ └── OpenBoostDelegate.php │ ├── Entities │ │ └── AnswerModel.php │ ├── Manager.php │ ├── ManagerInterface.php │ ├── Module.php │ ├── Provider.php │ ├── Questions │ │ ├── AnyoneChangeTheirMindQuestion.php │ │ ├── ApoliticalContentQuestion.php │ │ ├── BannedMisinformationQuestion.php │ │ ├── BaseQuestion.php │ │ ├── ChallengingOpinionsQuestion.php │ │ ├── DebatedMisinformationQuestion.php │ │ ├── EstablishmentQuestion.php │ │ ├── ImprovingWorldQuestion.php │ │ ├── Manifests │ │ │ ├── QuestionsManifest.php │ │ │ └── QuestionsManifestV1.php │ │ ├── MatureContentQuestion.php │ │ ├── NeverCompromisedPersonalPrivacyQuestion.php │ │ ├── PersonalFreedomQuestion.php │ │ ├── PhonesAddictedPeopleQuestion.php │ │ ├── PoliticalBeliefsQuestion.php │ │ ├── PoliticalContentQuestion.php │ │ ├── RequiredGovernmentRegulationsQuestion.php │ │ ├── SameOpinionsQuestion.php │ │ └── SeeMemesQuestion.php │ ├── Repository.php │ ├── RepositoryInterface.php │ ├── ResponseBuilders │ │ ├── AnswersResponseBuilderInterface.php │ │ ├── GetQuestionsResponseBuilder.php │ │ ├── StoreAnswersResponseBuilder.php │ │ └── UpdateAnswersResponseBuilder.php │ ├── Routes.php │ └── Validators │ │ ├── AnswersCollectionValidator.php │ │ └── CollectionValidatorInterface.php ├── Sockets │ ├── Binary.php │ ├── Events.php │ └── MsgPack.php ├── Steward │ ├── AutoReporter.php │ ├── Events.php │ ├── Module.php │ ├── Provider.php │ ├── Reason.php │ └── ReasonScorer.php ├── Storage │ ├── Quotas │ │ ├── Controllers │ │ │ └── Controller.php │ │ ├── Enums │ │ │ ├── AssetTypeEnum.php │ │ │ └── VideoQualityEnum.php │ │ ├── GraphQLMappings.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ └── MySqlRepository.php │ │ └── Types │ │ │ ├── AssetConnection.php │ │ │ ├── AssetMetadata.php │ │ │ └── QuotaDetails.php │ ├── Services │ │ ├── Disk.php │ │ ├── S3.php │ │ └── ServiceInterface.php │ └── StorageProvider.php ├── Strapi │ ├── Module.php │ ├── Provider.php │ └── Services │ │ └── StrapiService.php ├── Subscriptions │ ├── Delegates │ │ ├── CacheDelegate.php │ │ ├── CopyToElasticSearchDelegate.php │ │ ├── EventsDelegate.php │ │ ├── FeedsDelegate.php │ │ └── SendNotificationDelegate.php │ ├── Graph │ │ ├── Controller.php │ │ ├── Manager.php │ │ ├── Repository.php │ │ └── RepositoryGetOptions.php │ ├── Manager.php │ ├── Module.php │ ├── Provider.php │ ├── Relational │ │ ├── Controller.php │ │ └── Repository.php │ ├── Repository.php │ ├── Routes.php │ ├── Subscription.php │ └── TooManySubscriptionsException.php ├── Suggestions │ ├── DefaultTagMapping │ │ ├── Manager.php │ │ └── Repository.php │ ├── Manager.php │ ├── Module.php │ ├── Pass │ │ ├── Manager.php │ │ ├── Pass.php │ │ └── Repository.php │ ├── Provider.php │ ├── Repository.php │ └── Suggestion.php ├── Supermind │ ├── AutoSupermindRouterMiddleware.php │ ├── Controller.php │ ├── Delegates │ │ ├── EventsDelegate.php │ │ └── TwitterEventsDelegate.php │ ├── Events │ │ └── Events.php │ ├── Exceptions │ │ ├── SupermindNotFoundException.php │ │ ├── SupermindOffchainPaymentFailedException.php │ │ ├── SupermindPaymentIntentCaptureFailedException.php │ │ ├── SupermindPaymentIntentFailedException.php │ │ ├── SupermindRequestAcceptCompletionException.php │ │ ├── SupermindRequestCreationCompletionException.php │ │ ├── SupermindRequestDeleteException.php │ │ ├── SupermindRequestExpiredException.php │ │ ├── SupermindRequestIncorrectStatusException.php │ │ ├── SupermindRequestPaymentTypeNotFoundException.php │ │ ├── SupermindRequestStatusUpdateException.php │ │ └── SupermindUnauthorizedSenderException.php │ ├── ExpiringSoonEvents.php │ ├── Manager.php │ ├── Models │ │ └── SupermindRequest.php │ ├── Module.php │ ├── Payments │ │ └── SupermindPaymentProcessor.php │ ├── Provider.php │ ├── Repository.php │ ├── Routes.php │ ├── Settings │ │ ├── Controller.php │ │ ├── Exceptions │ │ │ └── SettingsNotFoundException.php │ │ ├── Manager.php │ │ ├── Models │ │ │ └── Settings.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repositories │ │ │ ├── RepositoryInterface.php │ │ │ └── UserStorageRepository.php │ │ ├── Routes.php │ │ └── Validators │ │ │ └── SupermindUpdateSettingsRequestValidator.php │ ├── SupermindEventStreamsSubscription.php │ ├── SupermindRequestPaymentMethod.php │ ├── SupermindRequestReplyType.php │ ├── SupermindRequestStatus.php │ └── Validators │ │ ├── SupermindCountRequestsValidator.php │ │ ├── SupermindGetRequestsValidator.php │ │ ├── SupermindLiveReplyValidator.php │ │ ├── SupermindReplyValidator.php │ │ └── SupermindRequestValidator.php ├── Torrent │ ├── TorrentBuilders │ │ ├── S3.php │ │ └── TorrentBuilderInterface.php │ ├── TorrentFile.php │ └── TorrentMeta.php ├── Translation │ ├── Languages.php │ ├── Services │ │ ├── Google.php │ │ └── TranslationServiceInterface.php │ ├── Storage.php │ ├── TranslationProvider.php │ └── Translations.php ├── Trending │ ├── Aggregates │ │ ├── Aggregate.php │ │ ├── ChannelDownVotes.php │ │ ├── ChannelVotes.php │ │ ├── ChannelVotesMade.php │ │ ├── Comments.php │ │ ├── DownVotes.php │ │ ├── Joins.php │ │ ├── Posts.php │ │ ├── Reminds.php │ │ ├── Subscribe.php │ │ ├── Subscriptions.php │ │ ├── SuspiciousVotes.php │ │ └── Votes.php │ ├── Maps.php │ ├── Repository.php │ ├── Services │ │ └── GoogleAnalytics.php │ └── TrendingProvider.php ├── Twitter │ ├── Client │ │ ├── DTOs │ │ │ ├── Geo.php │ │ │ ├── Media.php │ │ │ ├── Poll.php │ │ │ ├── Reply.php │ │ │ └── TweetDTO.php │ │ ├── TwitterClient.php │ │ └── TwitterClientInterface.php │ ├── Controller.php │ ├── Exceptions │ │ └── TwitterDetailsNotFoundException.php │ ├── Manager.php │ ├── Models │ │ └── TwitterDetails.php │ ├── Module.php │ ├── Provider.php │ ├── Repository.php │ └── Routes.php ├── Util │ ├── BigNumber.php │ ├── CsvExporter.php │ ├── StringValidator.php │ └── UUIDGenerator.php ├── Verification │ ├── Controller.php │ ├── Exceptions │ │ ├── UserVerificationPushNotificationFailedException.php │ │ ├── VerificationCodeMismatchException.php │ │ ├── VerificationRequestDeviceTypeNotFoundException.php │ │ ├── VerificationRequestExpiredException.php │ │ ├── VerificationRequestFailedException.php │ │ └── VerificationRequestNotFoundException.php │ ├── Helpers │ │ ├── ImageProcessor.php │ │ └── OCR │ │ │ ├── GoogleVisionOCRClient.php │ │ │ └── MindsOCRInterface.php │ ├── Manager.php │ ├── Models │ │ ├── VerificationRequest.php │ │ ├── VerificationRequestDeviceType.php │ │ └── VerificationRequestStatus.php │ ├── Module.php │ ├── Provider.php │ ├── Repository.php │ ├── Routes.php │ └── Validators │ │ └── AccountVerificationRequestValidator.php ├── VideoChat │ ├── Leases │ │ ├── Manager.php │ │ ├── Repository.php │ │ └── VideoChatLease.php │ ├── Manager.php │ ├── Module.php │ └── Provider.php ├── Votes │ ├── Controller.php │ ├── Counters.php │ ├── Enums │ │ ├── VoteDirectionEnum.php │ │ └── VoteEnum.php │ ├── Events.php │ ├── Indexes.php │ ├── Manager.php │ ├── Module.php │ ├── MySqlRepository.php │ ├── Provider.php │ ├── Routes.php │ ├── Vote.php │ ├── VoteListOpts.php │ └── VoteOptions.php ├── Webfinger │ ├── Client.php │ ├── Controller.php │ ├── Module.php │ ├── Provider.php │ ├── Routes.php │ └── WebfingerService.php ├── Wire │ ├── Counter.php │ ├── Delegates │ │ ├── CacheDelegate.php │ │ ├── EventsDelegate.php │ │ ├── NotificationDelegate.php │ │ ├── Plus.php │ │ ├── RecurringDelegate.php │ │ └── UpgradesDelegate.php │ ├── Events.php │ ├── Exceptions │ │ ├── NotMonetizedException.php │ │ ├── RemoteUserException.php │ │ └── WalletNotSetupException.php │ ├── Leaderboard.php │ ├── Manager.php │ ├── Module.php │ ├── Paywall │ │ ├── Delegates │ │ │ └── MetricsDelegate.php │ │ ├── Events.php │ │ ├── Manager.php │ │ ├── Module.php │ │ ├── PaywallEntityInterface.php │ │ ├── PaywallEntityTrait.php │ │ ├── PaywallInvalidCreationInputException.php │ │ ├── PaywallSupportTierNotFoundException.php │ │ ├── PaywallUserNotPaid.php │ │ └── Provider.php │ ├── Repository.php │ ├── Subscriptions │ │ └── Manager.php │ ├── Sums.php │ ├── SupportTiers │ │ ├── Controller.php │ │ ├── Delegates │ │ │ ├── CurrenciesDelegate.php │ │ │ └── PaymentsDelegate.php │ │ ├── Manager.php │ │ ├── Members.php │ │ ├── Module.php │ │ ├── Provider.php │ │ ├── Repository.php │ │ ├── RepositoryGetListOptions.php │ │ ├── Routes.php │ │ ├── SupportTier.php │ │ ├── SupportTierMember.php │ │ └── TierBuilder.php │ ├── Thresholds.php │ ├── Wire.php │ ├── WireProvider.php │ └── WireWebhookService.php ├── base.php ├── encrypt.php ├── multisite.php ├── page.php └── token.php ├── Entities ├── Activity.php ├── Album.php ├── Audio.php ├── Boost │ ├── BoostEntityInterface.php │ └── Factory.php ├── CommentableEntityInterface.php ├── Conversation.php ├── DenormalizedEntity.php ├── EntitiesFactory.php ├── EntitiesProvider.php ├── Entity.php ├── EntityInterface.php ├── Enums │ └── FederatedEntitySourcesEnum.php ├── ExportableInterface.php ├── Factory.php ├── FederatedEntityInterface.php ├── File.php ├── Group.php ├── Image.php ├── LegacyEntityCompat.php ├── Message.php ├── MindsObject.php ├── MutatableEntityInterface.php ├── NormalizedEntity.php ├── Object │ ├── Carousel.php │ └── Points_transaction.php ├── Page.php ├── Report.php ├── RepositoryEntity.php ├── Site.php ├── User.php ├── UserFactory.php ├── ValidatableObjectInterface.php ├── ValidationError.php ├── ValidationErrorCollection.php ├── Video.php └── Wire.php ├── Exceptions ├── AlreadyPublishedException.php ├── BannedException.php ├── BlockedUserException.php ├── CliException.php ├── DeprecatedException.php ├── GroupOperationException.php ├── ImmutableException.php ├── InAppPurchaseNotAcknowledgedException.php ├── InactiveFeatureFlagException.php ├── InvalidLuidException.php ├── NotFoundException.php ├── ObsoleteCodeException.php ├── ProhibitedDomainException.php ├── ProvisionException.php ├── ServerErrorException.php ├── SkippingException.php ├── StopEventException.php ├── StringLengthException.php ├── TwoFactorRequired.php ├── UserCashSetupException.php ├── UserErrorException.php └── UserNotFoundException.php ├── Fs ├── Factory.php └── Routes.php ├── Helpers ├── Analytics.php ├── Campaigns │ └── EmailRewards.php ├── Counters.php ├── Cql.php ├── Entities.php ├── Env.php ├── Export.php ├── File.php ├── Flags.php ├── FormatPhoneNumber.php ├── Image.php ├── Log.php ├── MagicAttributes.php ├── OpenSSL.php ├── RequestMetrics.php ├── SerializationHelper.php ├── StringLengthValidators │ ├── AbstractLengthValidator.php │ ├── BriefDescriptionLengthValidator.php │ ├── DescriptionLengthValidator.php │ ├── MessageLengthValidator.php │ ├── TitleLengthValidator.php │ └── UsernameLengthValidator.php ├── Subscriptions.php ├── SuggestCompleter.php ├── Text.php ├── Unknown.php ├── Upload.php ├── Url.php ├── Urn.php ├── UserValidator.php └── Validation.php ├── Integrations ├── Bloomerang │ ├── BloomerangConstituentService.php │ ├── Events.php │ ├── Models │ │ ├── BloomerangConstituent.php │ │ └── BloomerangGroup.php │ ├── Module.php │ ├── Provider.php │ ├── README.md │ └── Repository.php ├── MemberSpace │ ├── Events.php │ ├── MemberSpaceService.php │ ├── Models │ │ └── MemberSpaceProfile.php │ ├── Module.php │ ├── Provider.php │ └── README.md └── Seco │ ├── Controllers │ ├── AIProxyContoller.php │ └── ImportThreadsController.php │ ├── Module.php │ ├── Provider.php │ ├── Routes.php │ └── Services │ └── ImportThreadsService.php ├── Interfaces ├── AnalyticsMetric.php ├── Api.php ├── ApiAdminPam.php ├── ApiIgnorePam.php ├── BasicCacheInterface.php ├── BoostHandlerInterface.php ├── BoostReviewInterface.php ├── CliControllerInterface.php ├── Flaggable.php ├── Fs.php ├── ModuleInterface.php ├── NotificationExtensionInterface.php ├── SenderInterface.php ├── SentryExceptionExclusionInterface.php ├── ShutdownHandlerInterface.php ├── ValidatorInterface.php ├── XSSRule.php └── page.php ├── Jenkinsfile ├── LICENSE ├── OK ├── README.md ├── Spec ├── Common │ ├── AccessSpec.php │ ├── CookieSpec.php │ ├── EntityMutationSpec.php │ ├── IpAddressSpec.php │ ├── PseudonymousIdentifierSpec.php │ ├── RegexSpec.php │ ├── Repository │ │ └── ResponseSpec.php │ ├── Traits │ │ ├── CommonMatchers.php │ │ └── TenantFactoryMockBuilder.php │ └── spec-priv-key.pem ├── Core │ ├── ActivityPub │ │ └── Services │ │ │ ├── FederationEnabledServiceSpec.php │ │ │ └── ProcessActorServiceSpec.php │ ├── Admin │ │ ├── Controllers │ │ │ ├── HashtagExclusionControllerSpec.php │ │ │ └── ModerationControllerSpec.php │ │ ├── Repositories │ │ │ └── HashtagExclusionRepositorySpec.php │ │ └── Services │ │ │ ├── HashtagExclusionServiceSpec.php │ │ │ └── ModerationServiceSpec.php │ ├── Analytics │ │ ├── Aggregates │ │ │ └── ActionsHistogramSpec.php │ │ ├── AppSpec.php │ │ ├── Clicks │ │ │ ├── Delegates │ │ │ │ ├── ActionEventsDelegateSpec.php │ │ │ │ └── PostHogDelegateSpec.php │ │ │ └── ManagerSpec.php │ │ ├── Dashboards │ │ │ ├── Filters │ │ │ │ └── FiltersCollectionSpec.php │ │ │ ├── Metrics │ │ │ │ ├── ActiveUsersMetricSpec.php │ │ │ │ ├── MetricsCollectionSpec.php │ │ │ │ ├── SignupsMetricSpec.php │ │ │ │ └── ViewsMetricSpec.php │ │ │ ├── Timespans │ │ │ │ └── TimespansCollectionSpec.php │ │ │ └── TrafficDashboardSpec.php │ │ ├── Graphs │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── Iterators │ │ │ ├── EventsIteratorSpec.php │ │ │ ├── PointsSnapshotIteratorSpec.php │ │ │ ├── SignupsIteratorSpec.php │ │ │ ├── SignupsOffsetIteratorSpec.php │ │ │ └── UsersWithFacebookIteratorSpec.php │ │ ├── ManagerSpec.php │ │ ├── Metrics │ │ │ ├── ActiveSpec.php │ │ │ ├── EngagementSpec.php │ │ │ ├── EventSpec.php │ │ │ ├── ImpressionSpec.php │ │ │ ├── PageviewSpec.php │ │ │ ├── RetentionSpec.php │ │ │ └── SignupSpec.php │ │ ├── PostHog │ │ │ ├── Controllers │ │ │ │ └── PostHogGqlControllerSpec.php │ │ │ ├── PostHogPersonServiceSpec.php │ │ │ └── PostHogServiceSpec.php │ │ ├── TenantAdminAnalytics │ │ │ ├── Controllers │ │ │ │ └── AdminAnalyticsControllerSpec.php │ │ │ ├── RepositorySpec.php │ │ │ └── Services │ │ │ │ └── AdminAnalyticsFetchServiceSpec.php │ │ ├── TimestampsSpec.php │ │ ├── UserSpec.php │ │ ├── UserStates │ │ │ ├── ActiveUsersIteratorSpec.php │ │ │ ├── ManagerSpec.php │ │ │ ├── MockData │ │ │ │ ├── active_users_query.json │ │ │ │ ├── active_users_results.json │ │ │ │ ├── user_state_changes_query.json │ │ │ │ └── user_state_changes_results.json │ │ │ ├── UserActivityBucketsSpec.php │ │ │ ├── UserStateIteratorSpec.php │ │ │ └── UserStateSpec.php │ │ └── Views │ │ │ ├── ManagerSpec.php │ │ │ ├── RepositorySpec.php │ │ │ └── ViewSpec.php │ ├── Authentication │ │ ├── Oidc │ │ │ ├── Controllers │ │ │ │ └── OidcPsr7ControllerSpec.php │ │ │ ├── EventsSpec.php │ │ │ ├── Repositories │ │ │ │ ├── OidcProvidersRepositorySpec.php │ │ │ │ └── OidcUserRepositorySpec.php │ │ │ └── Services │ │ │ │ ├── OidcAuthServiceSpec.php │ │ │ │ ├── OidcProvidersServiceSpec.php │ │ │ │ └── OidcUserServiceSpec.php │ │ └── PersonalApiKeys │ │ │ ├── Repositories │ │ │ └── PersonalApiKeyRepositorySpec.php │ │ │ └── Services │ │ │ ├── PersonalApiKeyAuthServiceSpec.php │ │ │ ├── PersonalApiKeyHashingServiceSpec.php │ │ │ └── PersonalApiKeyManagementServiceSpec.php │ ├── Blockchain │ │ ├── ConfigSpec.php │ │ ├── Contracts │ │ │ ├── MindsBoostSpec.php │ │ │ ├── MindsTokenSaleEventSpec.php │ │ │ ├── MindsWireSpec.php │ │ │ └── MindsWithdrawSpec.php │ │ ├── Events │ │ │ ├── BoostEventSpec.php │ │ │ └── WithdrawEventSpec.php │ │ ├── LiquidityPositions │ │ │ └── ManagerSpec.php │ │ ├── ManagerSpec.php │ │ ├── PendingSpec.php │ │ ├── PreregistrationsSpec.php │ │ ├── Services │ │ │ ├── CoinMarketCapSpec.php │ │ │ ├── EthereumSpec.php │ │ │ └── EtherscanTransactionsByDateSpec.php │ │ ├── TokenDistributionEventSpec.php │ │ ├── TokenPrices │ │ │ └── ManagerSpec.php │ │ ├── TokenSpec.php │ │ ├── Transactions │ │ │ ├── ManagerSpec.php │ │ │ ├── RepositorySpec.php │ │ │ └── TransactionSpec.php │ │ ├── Uniswap │ │ │ └── ClientSpec.php │ │ ├── UnstoppableDomains │ │ │ ├── ClientSpec.php │ │ │ └── ControllerSpec.php │ │ ├── UtilSpec.php │ │ └── Wallets │ │ │ ├── OffChain │ │ │ ├── BalanceSpec.php │ │ │ ├── CapSpec.php │ │ │ ├── SumsSpec.php │ │ │ ├── TransactionsSpec.php │ │ │ └── Withholding │ │ │ │ ├── RepositorySpec.php │ │ │ │ ├── SumsSpec.php │ │ │ │ └── WithholdingSpec.php │ │ │ └── OnChain │ │ │ ├── BalanceSpec.php │ │ │ └── UniqueOnChain │ │ │ ├── ControllerSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ ├── Blogs │ │ ├── BlogSpec.php │ │ ├── Delegates │ │ │ ├── CreateActivitySpec.php │ │ │ ├── FeedsSpec.php │ │ │ ├── PropagatePropertiesSpec.php │ │ │ └── SlugSpec.php │ │ ├── HeaderSpec.php │ │ ├── Legacy │ │ │ ├── EntitySpec.php │ │ │ └── RepositorySpec.php │ │ ├── ManagerSpec.php │ │ ├── RepositorySpec.php │ │ └── TrendingSpec.php │ ├── Boost │ │ ├── ChecksumSpec.php │ │ ├── LiquiditySpot │ │ │ ├── ControllerSpec.php │ │ │ └── ManagerSpec.php │ │ ├── Network │ │ │ └── BoostSpec.php │ │ └── V3 │ │ │ ├── Cache │ │ │ └── BoostFeedCacheSpec.php │ │ │ ├── Delegates │ │ │ └── ActionEventDelegateSpec.php │ │ │ ├── EventStreams │ │ │ ├── BoostClickStreamsSubscriptionSpec.php │ │ │ └── BoostEmailEventStreamSubscriptionSpec.php │ │ │ ├── Events │ │ │ └── EventsSpec.php │ │ │ ├── GraphQL │ │ │ └── Controllers │ │ │ │ └── AdminControllerSpec.php │ │ │ ├── Insights │ │ │ ├── ControllerSpec.php │ │ │ ├── ManagerSpec.php │ │ │ ├── RepositorySpec.php │ │ │ ├── cash_newsfeed_safe.csv │ │ │ └── token_newsfeed_safe.csv │ │ │ ├── ManagerSpec.php │ │ │ ├── Models │ │ │ └── BoostEntityWrapperSpec.php │ │ │ ├── Onchain │ │ │ ├── AdminTransactionProcessorSpec.php │ │ │ └── OnchainBoostBackgroundJobSpec.php │ │ │ ├── PaymentProcessorSpec.php │ │ │ ├── PreApproval │ │ │ └── ManagerSpec.php │ │ │ ├── Ranking │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ │ ├── RepositorySpec.php │ │ │ ├── Summaries │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ │ └── Utils │ │ │ ├── BoostConsoleUrlBuilderSpec.php │ │ │ └── BoostReceiptUrlBuilderSpec.php │ ├── Captcha │ │ ├── ImageGeneratorSpec.php │ │ └── ManagerSpec.php │ ├── Categories │ │ └── RepositorySpec.php │ ├── Channels │ │ ├── AvatarServiceSpec.php │ │ ├── BanSpec.php │ │ ├── BannerServiceSpec.php │ │ ├── Delegates │ │ │ ├── Artifacts │ │ │ │ ├── CommentsDelegateSpec.php │ │ │ │ ├── ElasticsearchDocumentsDelegateSpec.php │ │ │ │ ├── EntityDelegateSpec.php │ │ │ │ ├── FactorySpec.php │ │ │ │ ├── LookupDelegateSpec.php │ │ │ │ ├── MySQL │ │ │ │ │ ├── EntityDelegateSpec.php │ │ │ │ │ └── FriendsDelegateSpec.php │ │ │ │ ├── SubscribersDelegateSpec.php │ │ │ │ ├── SubscriptionsDelegateSpec.php │ │ │ │ ├── UserEntitiesDelegateSpec.php │ │ │ │ └── UserIndexesDelegateSpec.php │ │ │ ├── BanSpec.php │ │ │ ├── LogoutSpec.php │ │ │ └── UnbanSpec.php │ │ ├── ManagerSpec.php │ │ └── Snapshots │ │ │ ├── ManagerSpec.php │ │ │ ├── RepositorySpec.php │ │ │ └── SnapshotSpec.php │ ├── Chat │ │ ├── Controllers │ │ │ ├── ChatControllerSpec.php │ │ │ └── ChatImagePsrControllerSpec.php │ │ ├── Delegates │ │ │ └── AnalyticsDelegateSpec.php │ │ ├── Entities │ │ │ └── ChatMessageSpec.php │ │ ├── Repositories │ │ │ ├── MessageRepositorySpec.php │ │ │ ├── ReceiptRepositorySpec.php │ │ │ └── RoomRepositorySpec.php │ │ ├── Services │ │ │ ├── ChatImageProcessorServiceSpec.php │ │ │ ├── ChatImageStorageServiceSpec.php │ │ │ ├── MessageServiceSpec.php │ │ │ ├── ReceiptServiceSpec.php │ │ │ └── RoomServiceSpec.php │ │ └── Types │ │ │ ├── ChatImageNodeSpec.php │ │ │ └── ChatMessageNodeSpec.php │ ├── Comments │ │ ├── CommentNotificationsEventStreamsSubscriptionSpec.php │ │ ├── CommentOpsEventStreamsSubscriptionSpec.php │ │ ├── CommentSpec.php │ │ ├── Delegates │ │ │ ├── CountCacheSpec.php │ │ │ ├── CreateEventDispatcherSpec.php │ │ │ └── MetricsSpec.php │ │ ├── EmbeddedComments │ │ │ ├── Controllers │ │ │ │ ├── EmbeddedCommentsGqlControllerSpec.php │ │ │ │ └── EmbeddedCommentsPsrControllerSpec.php │ │ │ ├── Repositories │ │ │ │ ├── EmbeddedCommentsRepositorySpec.php │ │ │ │ └── EmbeddedCommentsSettingsRepositorySpec.php │ │ │ └── Services │ │ │ │ ├── EmbeddedCommentsActivityServiceSpec.php │ │ │ │ ├── EmbeddedCommentsCommentServiceSpec.php │ │ │ │ └── EmbeddedCommentsSettingsServiceSpec.php │ │ ├── EventsSpec.php │ │ ├── Legacy │ │ │ ├── EntitySpec.php │ │ │ └── RepositorySpec.php │ │ ├── ManagerSpec.php │ │ ├── RelationalRepositorySpec.php │ │ ├── RepositorySpec.php │ │ ├── SearchRepositorySpec.php │ │ └── Votes │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ ├── Config │ │ └── GraphQL │ │ │ └── Controllers │ │ │ └── ConfigControllerSpec.php │ ├── Custom │ │ └── Navigation │ │ │ ├── Controllers │ │ │ └── NavigationControllerSpec.php │ │ │ ├── CustomNavigationServiceSpec.php │ │ │ └── RepositorySpec.php │ ├── DID │ │ ├── ControllerSpec.php │ │ ├── Keypairs │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── ManagerSpec.php │ │ └── UniResolver │ │ │ ├── ClientSpec.php │ │ │ ├── ControllerSpec.php │ │ │ └── ManagerSpec.php │ ├── Data │ │ ├── BigQuery │ │ │ └── ClientSpec.php │ │ ├── CallSpec.php │ │ ├── Cassandra │ │ │ └── ScrollSpec.php │ │ ├── Locks │ │ │ ├── CassandraSpec.php │ │ │ └── RedisSpec.php │ │ ├── SessionsSpec.php │ │ └── SortedSetSpec.php │ ├── DeepLink │ │ ├── Controllers │ │ │ └── WellKnownPsrControllerSpec.php │ │ └── Services │ │ │ ├── AndroidAssetLinksServiceSpec.php │ │ │ └── AppleAppSiteAssociationServiceSpec.php │ ├── Di │ │ ├── BindingSpec.php │ │ ├── DiSpec.php │ │ └── ProviderSpec.php │ ├── Discovery │ │ ├── ControllersSpec.php │ │ └── ManagerSpec.php │ ├── DismissibleWidgets │ │ ├── ControllersSpec.php │ │ ├── ManagerSpec.php │ │ └── RoutesSpec.php │ ├── Email │ │ ├── CampaignLogs │ │ │ └── RepositorySpec.php │ │ ├── Confirmation │ │ │ ├── ControllerSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── UrlSpec.php │ │ ├── EmailSubscriptionSpec.php │ │ ├── Invites │ │ │ └── Services │ │ │ │ ├── InviteManagementServiceSpec.php │ │ │ │ ├── InviteProcessorServiceSpec.php │ │ │ │ ├── InviteReaderServiceSpec.php │ │ │ │ └── InviteSenderServiceSpec.php │ │ ├── MailerSpec.php │ │ ├── ManagerSpec.php │ │ ├── MessageSpec.php │ │ ├── RepositorySpec.php │ │ ├── RouterHooksSpec.php │ │ ├── SendGrid │ │ │ ├── Lists │ │ │ │ ├── MonetizedUsersListSpec.php │ │ │ │ └── WireUSDUsersListSpec.php │ │ │ ├── ManagerSpec.php │ │ │ ├── SendGridContactSpec.php │ │ │ └── WebhooksSpec.php │ │ ├── Services │ │ │ └── EmailAutoSubscribeServiceSpec.php │ │ ├── V2 │ │ │ ├── Campaigns │ │ │ │ └── Recurring │ │ │ │ │ ├── BoostV3 │ │ │ │ │ └── BoostEmailerSpec.php │ │ │ │ │ ├── Digest │ │ │ │ │ └── DigestSpec.php │ │ │ │ │ ├── ForgotPassword │ │ │ │ │ └── ForgotPasswordEmailerSpec.php │ │ │ │ │ ├── GiftCard │ │ │ │ │ ├── GiftCardProducts │ │ │ │ │ │ ├── PlusCreditSpec.php │ │ │ │ │ │ └── ProCreditSpec.php │ │ │ │ │ └── Issuer │ │ │ │ │ │ └── Emails │ │ │ │ │ │ ├── PlusEmailSpec.php │ │ │ │ │ │ └── ProEmailSpec.php │ │ │ │ │ ├── Supermind │ │ │ │ │ └── SupermindSpec.php │ │ │ │ │ ├── TenantUserWelcome │ │ │ │ │ └── TenantUserWelcomeEmailerSpec.php │ │ │ │ │ ├── TwoFactor │ │ │ │ │ └── TwoFactorSpec.php │ │ │ │ │ └── UnreadMessages │ │ │ │ │ ├── UnreadMessagesDispatcherSpec.php │ │ │ │ │ └── UnreadMessagesSpec.php │ │ │ ├── Common │ │ │ │ ├── TemplateSpec.php │ │ │ │ └── TenantTemplateVariableInjectorSpec.php │ │ │ └── Partials │ │ │ │ └── ActionButton │ │ │ │ └── ActionButtonSpec.php │ │ └── Verify │ │ │ ├── ManagerSpec.php │ │ │ └── Services │ │ │ └── TheCheckerSpec.php │ ├── Entities │ │ ├── Actions │ │ │ └── SaveSpec.php │ │ ├── Delegates │ │ │ └── PropagatePropertiesSpec.php │ │ ├── EventStreams │ │ │ └── MetricChangeStreamsSubscriptionSpec.php │ │ ├── GuidLinkResolverSpec.php │ │ ├── Ops │ │ │ ├── EntitiesOpsEventSpec.php │ │ │ └── EntitiesOpsTopicSpec.php │ │ ├── PropagatePropertiesSpec.php │ │ └── Repositories │ │ │ ├── CassandraRepositorySpec.php │ │ │ └── MySQLRepositorySpec.php │ ├── EventStreams │ │ └── Topics │ │ │ └── ActionEventsTopicSpec.php │ ├── Events │ │ └── DispatcherSpec.php │ ├── Experiments │ │ └── ManagerSpec.php │ ├── Faq │ │ ├── AnswerSpec.php │ │ ├── CategoryFactorySpec.php │ │ ├── CategorySpec.php │ │ ├── ManagerSpec.php │ │ └── QuestionSpec.php │ ├── Features │ │ └── CanarySpec.php │ ├── FeedNotices │ │ ├── ControllerSpec.php │ │ ├── ManagerSpec.php │ │ └── Notices │ │ │ ├── BoostChannelNoticeSpec.php │ │ │ ├── BoostLatestPostNoticeSpec.php │ │ │ ├── ConnectWalletNoticeSpec.php │ │ │ ├── EnablePushNotificationsNoticeSpec.php │ │ │ ├── InAppVerifyUniquenessNoticeSpec.php │ │ │ ├── InviteFriendsNoticeSpec.php │ │ │ ├── NoGroupsNoticeSpec.php │ │ │ ├── PlusUpgradeNoticeSpec.php │ │ │ ├── SetupChannelNoticeSpec.php │ │ │ ├── SupermindPendingNoticeSpec.php │ │ │ ├── UpdateTagsNoticeSpec.php │ │ │ ├── VerifyEmailNoticeSpec.php │ │ │ └── VerifyUniquenessNoticeSpec.php │ ├── Feeds │ │ ├── Activity │ │ │ ├── ControllerSpec.php │ │ │ ├── Delegates │ │ │ │ ├── AttachmentDelegateSpec.php │ │ │ │ ├── ForeignEntityDelegateSpec.php │ │ │ │ └── TimeCreatedDelegateSpec.php │ │ │ ├── InteractionCountersSpec.php │ │ │ ├── ManagerSpec.php │ │ │ ├── OgImagesControllerSpec.php │ │ │ └── RichEmbed │ │ │ │ └── Metascraper │ │ │ │ ├── Cache │ │ │ │ ├── ManagerSpec.php │ │ │ │ └── RepositorySpec.php │ │ │ │ ├── ControllerSpec.php │ │ │ │ ├── MetadataSpec.php │ │ │ │ └── ServiceSpec.php │ │ ├── ClusteredRecommendations │ │ │ ├── ManagerSpec.php │ │ │ └── MySQLRepositorySpec.php │ │ ├── ControllerSpec.php │ │ ├── Delegates │ │ │ └── PropagatePropertiesSpec.php │ │ ├── Elastic │ │ │ ├── EntitiesSpec.php │ │ │ ├── ManagerSpec.php │ │ │ ├── RepositorySpec.php │ │ │ └── ScoredGuidSpec.php │ │ ├── FeedItemSpec.php │ │ ├── Firehose │ │ │ ├── ManagerSpec.php │ │ │ └── ModerationCacheSpec.php │ │ ├── GraphQL │ │ │ └── TagRecommendations │ │ │ │ └── ManagerSpec.php │ │ ├── HideEntities │ │ │ ├── ControllerSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── IteratorSpec.php │ │ ├── Legacy │ │ │ └── RepositorySpec.php │ │ ├── RSS │ │ │ ├── ActivityPatchers │ │ │ │ └── AudioActivityPatcherSpec.php │ │ │ ├── Controllers │ │ │ │ └── ControllerSpec.php │ │ │ ├── Repositories │ │ │ │ └── RssImportsRepositorySpec.php │ │ │ └── Services │ │ │ │ ├── ProcessRssFeedServiceSpec.php │ │ │ │ └── ServiceSpec.php │ │ ├── RepositorySpec.php │ │ ├── Scheduled │ │ │ ├── EntityTimeCreatedSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── Seen │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── Subscribed │ │ │ ├── ControllerSpec.php │ │ │ └── ManagerSpec.php │ │ ├── Supermind │ │ │ ├── ManagerSpec.php │ │ │ └── Validators │ │ │ │ └── SupermindFeedRequestValidatorSpec.php │ │ ├── TwitterSync │ │ │ ├── ControllerSpec.php │ │ │ ├── ImageExtractorSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── UnseenTopFeed │ │ │ ├── ControllerSpec.php │ │ │ └── ManagerSpec.php │ │ └── User │ │ │ └── ManagerSpec.php │ ├── Groups │ │ ├── AdminQueueSpec.php │ │ ├── EventsSpec.php │ │ ├── FeedsSpec.php │ │ ├── InvitationsSpec.php │ │ ├── ManagementSpec.php │ │ ├── NotificationsSpec.php │ │ └── V2 │ │ │ ├── GraphQL │ │ │ └── Controllers │ │ │ │ └── GroupChatControllerSpec.php │ │ │ ├── Membership │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ │ └── Services │ │ │ └── GroupChatServiceSpec.php │ ├── GuidSpec.php │ ├── Hashtags │ │ ├── HashtagEntitySpec.php │ │ ├── Trending │ │ │ ├── CacheSpec.php │ │ │ └── ManagerSpec.php │ │ └── User │ │ │ ├── ManagerSpec.php │ │ │ ├── PseudoHashtagsSpec.php │ │ │ └── RepositorySpec.php │ ├── Helpdesk │ │ ├── Chatwoot │ │ │ └── ManagerSpec.php │ │ └── Zendesk │ │ │ ├── ControllerSpec.php │ │ │ └── ManagerSpec.php │ ├── Http │ │ └── Curl │ │ │ ├── ClientSpec.php │ │ │ ├── CurlWrapperSpec.php │ │ │ ├── Json │ │ │ └── ClientSpec.php │ │ │ └── JsonRpc │ │ │ └── ClientSpec.php │ ├── I18n │ │ └── ManagerSpec.php │ ├── Issues │ │ └── Services │ │ │ └── GitlabSpec.php │ ├── LuidSpec.php │ ├── Matrix │ │ ├── ControllerSpec.php │ │ └── ManagerSpec.php │ ├── Media │ │ ├── Audio │ │ │ ├── AudioAssetStorageServiceSpec.php │ │ │ ├── AudioPsrControllerSpec.php │ │ │ ├── AudioRepositorySpec.php │ │ │ ├── AudioServiceSpec.php │ │ │ └── AudioThumbnailServiceSpec.php │ │ ├── ClientUpload │ │ │ └── ManagerSpec.php │ │ ├── Delegates │ │ │ └── PropagatePropertiesSpec.php │ │ ├── Image │ │ │ └── ManagerSpec.php │ │ ├── Imagick │ │ │ └── ManagerSpec.php │ │ ├── MediaDownloader │ │ │ ├── AudioDownloaderSpec.php │ │ │ └── ImageDownloaderSpec.php │ │ ├── Proxy │ │ │ └── DownloadSpec.php │ │ ├── TranscodingStatusSpec.php │ │ ├── Video │ │ │ ├── CloudflareStreams │ │ │ │ ├── ClientSpec.php │ │ │ │ ├── ManagerSpec.php │ │ │ │ └── WebhooksSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── Transcoder │ │ │ │ ├── Delegates │ │ │ │ ├── NotificationDelegateSpec.php │ │ │ │ └── QueueDelegateSpec.php │ │ │ │ ├── ManagerSpec.php │ │ │ │ ├── RepositorySpec.php │ │ │ │ ├── TranscodeStatesSpec.php │ │ │ │ └── TranscodeStorage │ │ │ │ └── S3StorageSpec.php │ │ └── YouTubeImporter │ │ │ ├── ControllerSpec.php │ │ │ ├── ManagerSpec.php │ │ │ ├── RepositorySpec.php │ │ │ ├── TranscoderBridgeSpec.php │ │ │ ├── YTAuthSpec.php │ │ │ ├── YTClientSpec.php │ │ │ └── YTSubscriptionSpec.php │ ├── Messenger │ │ ├── Encryption │ │ │ └── OpenSSLSpec.php │ │ ├── KeystoreSpec.php │ │ └── MessagesSpec.php │ ├── MindsSpec.php │ ├── Monetization │ │ ├── AdminSpec.php │ │ ├── Demonetization │ │ │ ├── DemonetizationContextSpec.php │ │ │ ├── Strategies │ │ │ │ ├── DemonetizePlusUserStrategySpec.php │ │ │ │ └── DemonetizePostStrategySpec.php │ │ │ └── Validators │ │ │ │ └── DemonetizedPlusValidatorSpec.php │ │ ├── ManagerSpec.php │ │ ├── MerchantsSpec.php │ │ ├── Partners │ │ │ ├── ManagerSpec.php │ │ │ └── RelationalRepositorySpec.php │ │ ├── ServiceCacheSpec.php │ │ └── UsersSpec.php │ ├── MultiTenant │ │ ├── AutoLogin │ │ │ ├── AutoLoginServiceSpec.php │ │ │ └── ControllerSpec.php │ │ ├── Billing │ │ │ ├── BillingServiceSpec.php │ │ │ └── Controllers │ │ │ │ └── BillingPsrControllerSpec.php │ │ ├── Bootstrap │ │ │ ├── Clients │ │ │ │ ├── GoogleFaviconClientSpec.php │ │ │ │ ├── JinaClientSpec.php │ │ │ │ └── ScreenshotOneClientSpec.php │ │ │ ├── Controllers │ │ │ │ └── BootstrapProgressPsrControllerSpec.php │ │ │ ├── Delegates │ │ │ │ ├── ActivityCreationDelegateSpec.php │ │ │ │ ├── ContentGeneratedSocketDelegateSpec.php │ │ │ │ ├── UpdateConfigDelegateSpec.php │ │ │ │ ├── UpdateLogosDelegateSpec.php │ │ │ │ └── UpdateUserAvatarDelegateSpec.php │ │ │ ├── EventStreams │ │ │ │ └── TenantBootstrapRequestSubscriptionSpec.php │ │ │ ├── Models │ │ │ │ ├── BootstrapStepProgressSpec.php │ │ │ │ └── ExtractedMetadataSpec.php │ │ │ ├── Repositories │ │ │ │ └── BootstrapProgressRepositorySpec.php │ │ │ └── Services │ │ │ │ ├── BootstrapProgressServiceSpec.php │ │ │ │ ├── Extractors │ │ │ │ ├── ContentExtractorSpec.php │ │ │ │ ├── HorizontalLogoExtractorSpec.php │ │ │ │ ├── MarkdownExtractorSpec.php │ │ │ │ ├── MetadataExtractorSpec.php │ │ │ │ ├── MobileSplashLogoExtractorSpec.php │ │ │ │ ├── ScreenshotExtractorSpec.php │ │ │ │ ├── ThemeExtractorSpec.php │ │ │ │ └── WebsiteIconExtractorSpec.php │ │ │ │ ├── Handlers │ │ │ │ ├── ConfigGenerationHandlerSpec.php │ │ │ │ ├── ContentGenerationHandlerSpec.php │ │ │ │ └── LogoGenerationHandlerSpec.php │ │ │ │ ├── MultiTenantBootstrapServiceSpec.php │ │ │ │ └── Processors │ │ │ │ └── LogoImageProcessorSpec.php │ │ ├── Configs │ │ │ ├── Image │ │ │ │ └── ManagerSpec.php │ │ │ ├── ManagerSpec.php │ │ │ ├── RepositorySpec.php │ │ │ └── Validators │ │ │ │ └── MultiTenantConfigInputValidatorSpec.php │ │ ├── Controllers │ │ │ ├── TenantPsrControllerSpec.php │ │ │ └── TenantsControllerSpec.php │ │ ├── CustomPages │ │ │ ├── Controllers │ │ │ │ └── ControllerSpec.php │ │ │ ├── RepositorySpec.php │ │ │ ├── Services │ │ │ │ └── ServiceSpec.php │ │ │ └── Validators │ │ │ │ └── CustomPageInputValidatorSpec.php │ │ ├── Delegates │ │ │ └── FeaturedEntityAddedDelegateSpec.php │ │ ├── EventStreams │ │ │ └── FeaturedEntitySyncSubscriptionSpec.php │ │ ├── MobileConfigs │ │ │ ├── Controllers │ │ │ │ └── MobileConfigManagementControllerSpec.php │ │ │ ├── Deployments │ │ │ │ └── Builds │ │ │ │ │ └── MobilePreviewHandlerSpec.php │ │ │ ├── Helpers │ │ │ │ └── GitlabPipelineJwtTokenValidatorSpec.php │ │ │ ├── Repositories │ │ │ │ └── MobileConfigRepositorySpec.php │ │ │ └── Services │ │ │ │ ├── MobileConfigManagementServiceSpec.php │ │ │ │ ├── MobileConfigReaderServiceSpec.php │ │ │ │ └── ProductionAppVersionServiceSpec.php │ │ ├── Models │ │ │ └── TenantSpec.php │ │ ├── Repositories │ │ │ └── FeaturedEntitiesRepositorySpec.php │ │ ├── RepositorySpec.php │ │ └── Services │ │ │ ├── AutoTrialServiceSpec.php │ │ │ ├── DomainServiceSpec.php │ │ │ ├── FeaturedEntityAutoSubscribeServiceSpec.php │ │ │ ├── FeaturedEntityServiceSpec.php │ │ │ ├── MultiTenantBootServiceSpec.php │ │ │ ├── TenantEmailServiceSpec.php │ │ │ ├── TenantLifecyleServiceSpec.php │ │ │ ├── TenantUsersServiceSpec.php │ │ │ └── TenantsServiceSpec.php │ ├── Nostr │ │ ├── ControllerSpec.php │ │ ├── EntityExporterSpec.php │ │ ├── EntityImporterSpec.php │ │ ├── KeysSpec.php │ │ ├── ManagerSpec.php │ │ ├── NostrOpsEventStreamsSubscriptionSpec.php │ │ └── RepositorySpec.php │ ├── Notification │ │ ├── Batches │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── CassandraRepositorySpec.php │ │ ├── CountersSpec.php │ │ ├── ManagerSpec.php │ │ └── Settings │ │ │ └── PushSettingsSpec.php │ ├── Notifications │ │ ├── Delegates │ │ │ └── EmailDigestsDelegateSpec.php │ │ ├── EmailDigests │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── ManagerSpec.php │ │ ├── NotificationsEventStreamsSubscriptionSpec.php │ │ ├── NotificationsListOptsSpec.php │ │ ├── PostSubscriptions │ │ │ ├── Controllers │ │ │ │ └── PostSubscriptionsControllerSpec.php │ │ │ ├── Helpers │ │ │ │ └── PostNotificationDispatchHelperSpec.php │ │ │ ├── Repositories │ │ │ │ └── PostSubscriptionsRepositorySpec.php │ │ │ └── Services │ │ │ │ └── PostSubscriptionsServiceSpec.php │ │ └── Push │ │ │ ├── Config │ │ │ ├── PushNotificationsConfigRepositorySpec.php │ │ │ └── PushNotificationsConfigServiceSpec.php │ │ │ ├── DeviceSubscriptions │ │ │ ├── ControllerSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ │ ├── ManagerSpec.php │ │ │ ├── ManualSend │ │ │ ├── Controllers │ │ │ │ └── ManualSendControllerSpec.php │ │ │ ├── Services │ │ │ │ └── ManualSendServiceSpec.php │ │ │ └── Validators │ │ │ │ └── ManualSendPayloadValidatorSpec.php │ │ │ ├── PushNotificationSpec.php │ │ │ ├── PushNotificationsEventStreamsSubscriptionSpec.php │ │ │ ├── Services │ │ │ ├── ApnsServiceSpec.php │ │ │ └── FcmServiceSpec.php │ │ │ ├── Settings │ │ │ ├── ControllerSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ │ ├── System │ │ │ └── Builders │ │ │ │ └── TopPostPushNotificationBuilderSpec.php │ │ │ └── TopPost │ │ │ └── ManagerSpec.php │ ├── OAuth │ │ ├── ControllerSpec.php │ │ ├── Managers │ │ │ └── AccessTokenManagerSpec.php │ │ └── Repositories │ │ │ ├── AccessTokenRepositorySpec.php │ │ │ ├── AuthCodeRepositorySpec.php │ │ │ ├── ClientRepositorySpec.php │ │ │ ├── IdentityRepositorySpec.php │ │ │ ├── RefreshTokenRepositorySpec.php │ │ │ └── UserRepositorySpec.php │ ├── Onboarding │ │ ├── ControllerSpec.php │ │ ├── ManagerSpec.php │ │ ├── OnboardingGroups │ │ │ ├── InitialOnboardingGroupSpec.php │ │ │ └── OngoingOnboardingGroupSpec.php │ │ ├── Steps │ │ │ ├── AvatarStepSpec.php │ │ │ ├── BriefdescriptionStepSpec.php │ │ │ ├── CreatePostStepSpec.php │ │ │ ├── CreatorFrequencyStepSpec.php │ │ │ ├── DisplayNameStepSpec.php │ │ │ ├── SetupChannelStepSpec.php │ │ │ ├── SuggestedChannelsStepSpec.php │ │ │ ├── SuggestedGroupsStepSpec.php │ │ │ ├── SuggestedHashtagsStepSpec.php │ │ │ ├── TokensVerificationStepSpec.php │ │ │ ├── VerifyEmailStepSpec.php │ │ │ └── VerifyUniquenessStepSpec.php │ │ └── V5 │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ ├── PWA │ │ ├── Controllers │ │ │ └── ManifestControllerSpec.php │ │ └── Models │ │ │ ├── MindsManifestSpec.php │ │ │ └── TenantManifestSpec.php │ ├── Payments │ │ ├── Checkout │ │ │ └── Services │ │ │ │ ├── CheckoutContentServiceSpec.php │ │ │ │ └── CheckoutServiceSpec.php │ │ ├── GiftCards │ │ │ ├── Delegates │ │ │ │ ├── EmailDelegateSpec.php │ │ │ │ └── NotificationDelegateSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── InAppPurchases │ │ │ ├── Apple │ │ │ │ └── AppleInAppPurchasesClientSpec.php │ │ │ ├── ControllerSpec.php │ │ │ ├── Google │ │ │ │ ├── GoogleInAppPurchasesClientSpec.php │ │ │ │ └── GoogleInAppPurchasesPubSubSpec.php │ │ │ └── ManagerSpec.php │ │ ├── ManagerSpec.php │ │ ├── MerchantSpec.php │ │ ├── Models │ │ │ ├── GetPaymentsOptsSpec.php │ │ │ └── PaymentSpec.php │ │ ├── RepositorySpec.php │ │ ├── SaleSpec.php │ │ ├── SiteMemberships │ │ │ ├── Controllers │ │ │ │ └── SiteMembershipBatchPsrControllerSpec.php │ │ │ ├── PaywalledEntities │ │ │ │ ├── PaywalledEntitiesRepositorySpec.php │ │ │ │ └── Services │ │ │ │ │ ├── CreatePaywalledEntityServiceSpec.php │ │ │ │ │ ├── PaywalledEntityGatekeeperServiceSpec.php │ │ │ │ │ └── PaywalledEntityServiceSpec.php │ │ │ ├── Repositories │ │ │ │ ├── SiteMembershipGroupsRepositorySpec.php │ │ │ │ ├── SiteMembershipRolesRepositorySpec.php │ │ │ │ └── SiteMembershipSubscriptionsRepositorySpec.php │ │ │ ├── Services │ │ │ │ ├── HasActiveSiteMembershipCacheServiceSpec.php │ │ │ │ ├── SiteMembershipBatchServiceSpec.php │ │ │ │ ├── SiteMembershipManagementServiceSpec.php │ │ │ │ ├── SiteMembershipReaderServiceSpec.php │ │ │ │ ├── SiteMembershipSubscriptionsManagementServiceSpec.php │ │ │ │ ├── SiteMembershipSubscriptionsServiceSpec.php │ │ │ │ └── SiteMembershipsRenewalsServiceSpec.php │ │ │ └── Webhooks │ │ │ │ └── Controllers │ │ │ │ └── SiteMembershipWebhooksPsrControllerSpec.php │ │ ├── Stripe │ │ │ ├── Checkout │ │ │ │ ├── ControllerSpec.php │ │ │ │ ├── ManagerSpec.php │ │ │ │ └── Products │ │ │ │ │ └── Services │ │ │ │ │ └── ProductServiceSpec.php │ │ │ ├── Connect │ │ │ │ ├── Delegates │ │ │ │ │ └── NotificationDelegateSpec.php │ │ │ │ ├── ManagerSpec.php │ │ │ │ └── ManagerV2Spec.php │ │ │ ├── CustomerPortal │ │ │ │ └── Services │ │ │ │ │ └── CustomerPortalServiceSpec.php │ │ │ ├── Customers │ │ │ │ └── ManagerSpec.php │ │ │ ├── Intents │ │ │ │ ├── ManagerSpec.php │ │ │ │ └── PaymentIntentSpec.php │ │ │ ├── Keys │ │ │ │ ├── Controllers │ │ │ │ │ └── StripeKeysControllerSpec.php │ │ │ │ ├── StripeKeysRepositorySpec.php │ │ │ │ └── StripeKeysServiceSpec.php │ │ │ ├── StripeApiKeyConfigSpec.php │ │ │ ├── StripeClientSpec.php │ │ │ └── Webhooks │ │ │ │ ├── Repositories │ │ │ │ └── WebhooksConfigurationRepositorySpec.php │ │ │ │ └── Services │ │ │ │ └── SubscriptionsWebhookServiceSpec.php │ │ ├── Subscriptions │ │ │ ├── ManagerSpec.php │ │ │ ├── RepositorySpec.php │ │ │ └── SubscriptionsIteratorSpec.php │ │ └── V2 │ │ │ ├── ManagerSpec.php │ │ │ └── PaymentMethods │ │ │ └── ManagerSpec.php │ ├── Plus │ │ ├── ManagerSpec.php │ │ └── SubscriptionSpec.php │ ├── Pro │ │ ├── Delegates │ │ │ ├── InitializeSettingsDelegateSpec.php │ │ │ └── SubscriptionDelegateSpec.php │ │ ├── ManagerSpec.php │ │ └── SettingsSpec.php │ ├── Provisioner │ │ ├── InstallerSpec.php │ │ └── Provisioners │ │ │ └── CassandraProvisionerSpec.php │ ├── Queue │ │ └── Runners │ │ │ └── RegisteredSpec.php │ ├── Recommendations │ │ ├── Algorithms │ │ │ ├── FriendsOfFriend │ │ │ │ └── RepositorySpec.php │ │ │ └── SuggestedChannels │ │ │ │ └── SuggestedChannelsRecommendationsAlgorithmSpec.php │ │ ├── Injectors │ │ │ └── BoostSuggestionInjectorSpec.php │ │ ├── Locations │ │ │ └── FeedSidebarLocationSpec.php │ │ ├── ManagerSpec.php │ │ └── UserRecommendationsClusterSpec.php │ ├── Referrals │ │ ├── Delegates │ │ │ └── NotificationDelegateSpec.php │ │ ├── ManagerSpec.php │ │ ├── ReferralCookieSpec.php │ │ ├── ReferralSpec.php │ │ └── RepositorySpec.php │ ├── Register │ │ └── ControllerSpec.php │ ├── Reports │ │ ├── ActionsSpec.php │ │ ├── Appeals │ │ │ ├── Delegates │ │ │ │ └── SummonDelegateSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── AppealsSpec.php │ │ ├── EventsSpec.php │ │ ├── Jury │ │ │ ├── ElasticRepositorySpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── ManagerSpec.php │ │ ├── PreFeb2019RepositorySpec.php │ │ ├── ReportSpec.php │ │ ├── Strikes │ │ │ ├── Delegates │ │ │ │ └── EmailDelegateSpec.php │ │ │ ├── ManagerSpec.php │ │ │ ├── RepositorySpec.php │ │ │ └── StrikeSpec.php │ │ ├── Summons │ │ │ ├── CohortSpec.php │ │ │ ├── Delegates │ │ │ │ └── SocketDelegateSpec.php │ │ │ ├── ManagerSpec.php │ │ │ ├── PoolSpec.php │ │ │ ├── RepositorySpec.php │ │ │ └── SummonsSpec.php │ │ ├── UserReports │ │ │ ├── Delegates │ │ │ │ └── NotificationDelegateSpec.php │ │ │ ├── ElasticRepositorySpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── V2 │ │ │ ├── Repositories │ │ │ │ └── ReportRepositorySpec.php │ │ │ ├── Services │ │ │ │ ├── ActionServiceSpec.php │ │ │ │ └── ReportServiceSpec.php │ │ │ └── Validators │ │ │ │ └── ReportInputValidatorSpec.php │ │ └── Verdict │ │ │ ├── Delegates │ │ │ ├── ActionDelegateSpec.php │ │ │ ├── EmailDelegateSpec.php │ │ │ ├── MetricsDelegateSpec.php │ │ │ ├── NotificationDelegateSpec.php │ │ │ └── ReleaseSummonsesDelegateSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ ├── Rewards │ │ ├── Contributions │ │ │ ├── DailyCollectionSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── SumsSpec.php │ │ ├── Delegates │ │ │ └── ReferralDelegateSpec.php │ │ ├── Eligibility │ │ │ └── ManagerSpec.php │ │ ├── JoinSpec.php │ │ ├── JoinedValidatorSpec.php │ │ ├── ManagerSpec.php │ │ ├── NotifySpec.php │ │ ├── ReferralValidatorSpec.php │ │ ├── Restrictions │ │ │ └── Blockchain │ │ │ │ ├── ControllerSpec.php │ │ │ │ ├── ManagerSpec.php │ │ │ │ ├── Ofac │ │ │ │ ├── ClientSpec.php │ │ │ │ └── ManagerSpec.php │ │ │ │ ├── RepositorySpec.php │ │ │ │ └── RestrictionSpec.php │ │ └── Withdraw │ │ │ ├── Admin │ │ │ ├── ControllerSpec.php │ │ │ └── ManagerSpec.php │ │ │ ├── Delegates │ │ │ └── NotificationsDelegateSpec.php │ │ │ └── ManagerSpec.php │ ├── Router │ │ ├── DispatcherSpec.php │ │ ├── Middleware │ │ │ ├── AdminMiddlewareSpec.php │ │ │ ├── FederationEnabledMiddlewareSpec.php │ │ │ ├── Kernel │ │ │ │ ├── ContentNegotiationMiddlewareSpec.php │ │ │ │ ├── CorsMiddlewareSpec.php │ │ │ │ ├── EmptyResponseMiddlewareSpec.php │ │ │ │ ├── ErrorHandlerMiddlewareSpec.php │ │ │ │ ├── FrameSecurityMiddlewareSpec.php │ │ │ │ ├── JsonPayloadMiddlewareSpec.php │ │ │ │ ├── OauthMiddlewareSpec.php │ │ │ │ ├── PersonalApiTokenMiddlewareSpec.php │ │ │ │ ├── RegistryEntryMiddlewareSpec.php │ │ │ │ ├── RequestHandlerMiddlewareSpec.php │ │ │ │ ├── RouteResolverMiddlewareSpec.php │ │ │ │ ├── SessionMiddlewareSpec.php │ │ │ │ ├── ValidateScopesMiddlewareSpec.php │ │ │ │ └── XsrfCookieMiddlewareSpec.php │ │ │ ├── LoggedInMiddlewareSpec.php │ │ │ ├── MauticWebhookMiddlewareSpec.php │ │ │ └── PermissionsMiddlewareSpec.php │ │ ├── PrePsr7 │ │ │ └── FallbackSpec.php │ │ ├── RegistryEntrySpec.php │ │ ├── RegistrySpec.php │ │ └── RouteSpec.php │ ├── RouterSpec.php │ ├── SEO │ │ ├── ManagerSpec.php │ │ ├── Robots │ │ │ └── Services │ │ │ │ └── RobotsFileServiceSpec.php │ │ └── Sitemaps │ │ │ ├── ManagerSpec.php │ │ │ └── Resolvers │ │ │ ├── ActivityResolverSpec.php │ │ │ ├── BlogsResolverSpec.php │ │ │ ├── MarketingResolverSpec.php │ │ │ └── UsersResolverSpec.php │ ├── SMS │ │ └── Services │ │ │ ├── SNSSpec.php │ │ │ └── TwilioSpec.php │ ├── Search │ │ ├── DocumentsSpec.php │ │ ├── Helpers │ │ │ └── DirectMatchInjectorSpec.php │ │ ├── IndexSpec.php │ │ ├── Mappings │ │ │ ├── ActivityMappingSpec.php │ │ │ ├── EntityMappingSpec.php │ │ │ ├── FactorySpec.php │ │ │ ├── GroupMappingSpec.php │ │ │ ├── ObjectBlogMappingSpec.php │ │ │ ├── ObjectImageMappingSpec.php │ │ │ ├── ObjectVideoMappingSpec.php │ │ │ └── UserMappingSpec.php │ │ ├── MetricsSync │ │ │ ├── ManagerSpec.php │ │ │ ├── RepositorySpec.php │ │ │ └── Resolvers │ │ │ │ ├── CommentsCountMetricResolverSpec.php │ │ │ │ ├── VotesDownMetricResolverSpec.php │ │ │ │ └── VotesUpMetricResolverSpec.php │ │ ├── ProvisionerSpec.php │ │ ├── SearchIndexerSubscriptionSpec.php │ │ └── SearchSpec.php │ ├── Security │ │ ├── ACL │ │ │ └── BlockSpec.php │ │ ├── ACLSpec.php │ │ ├── Audit │ │ │ └── Services │ │ │ │ └── AuditServiceSpec.php │ │ ├── Block │ │ │ ├── Delegates │ │ │ │ └── AnalyticsDelegateSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── DeferredSecretsSpec.php │ │ ├── ForgotPassword │ │ │ ├── Cache │ │ │ │ └── ForgotPasswordCacheSpec.php │ │ │ └── Services │ │ │ │ └── ForgotPasswordServiceSpec.php │ │ ├── LoginAttemptsSpec.php │ │ ├── Password │ │ │ ├── ManagerSpec.php │ │ │ └── PwnedPasswords │ │ │ │ └── ClientSpec.php │ │ ├── PasswordSpec.php │ │ ├── RateLimits │ │ │ ├── InteractionsLimiterSpec.php │ │ │ └── KeyValueLimiterSpec.php │ │ ├── Rbac │ │ │ ├── Controllers │ │ │ │ ├── PermissionIntentsControllerSpec.php │ │ │ │ └── PermissionsControllerSpec.php │ │ │ ├── Entities │ │ │ │ └── ManagerSpec.php │ │ │ ├── Helpers │ │ │ │ └── PermissionIntentHelpersSpec.php │ │ │ ├── Repositories │ │ │ │ └── PermissionIntentsRepositorySpec.php │ │ │ ├── RepositorySpec.php │ │ │ └── Services │ │ │ │ ├── PermissionIntentsServiceSpec.php │ │ │ │ └── RolesServiceSpec.php │ │ ├── SignedUriSpec.php │ │ ├── SpamBlocks │ │ │ ├── IPHashSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── SpamSpec.php │ │ ├── TOTP │ │ │ ├── ControllerSpec.php │ │ │ ├── Delegates │ │ │ │ └── EmailDelegateSpec.php │ │ │ └── ManagerSpec.php │ │ ├── TwoFactor │ │ │ ├── Bypass │ │ │ │ └── ManagerSpec.php │ │ │ ├── Delegates │ │ │ │ ├── EmailDelegateSpec.php │ │ │ │ ├── SMSDelegateSpec.php │ │ │ │ └── TOTPDelegateSpec.php │ │ │ ├── ManagerSpec.php │ │ │ └── Store │ │ │ │ ├── TwoFactorSecretSpec.php │ │ │ │ └── TwoFactorSecretStoreSpec.php │ │ ├── Vault │ │ │ ├── ClientSpec.php │ │ │ ├── VaultTransitServiceSpec.php │ │ │ └── jwt.txt │ │ ├── XSRFSpec.php │ │ └── XSSSpec.php │ ├── SendWyre │ │ └── RepositorySpec.php │ ├── Sessions │ │ ├── CommonSessions │ │ │ └── ManagerSpec.php │ │ ├── ManagerSpec.php │ │ └── RepositorySpec.php │ ├── Settings │ │ ├── ManagerSpec.php │ │ └── RepositorySpec.php │ ├── SocialCompass │ │ ├── ControllerSpec.php │ │ ├── Delegates │ │ │ └── OpenBoostDelegateSpec.php │ │ ├── ManagerSpec.php │ │ └── RepositorySpec.php │ ├── Sockets │ │ ├── BinarySpec.php │ │ ├── EventsSpec.php │ │ └── MsgPackSpec.php │ ├── Steward │ │ ├── AutoReporterSpec.php │ │ └── ReasonScorerSpec.php │ ├── Subscriptions │ │ ├── Delegates │ │ │ ├── CacheDelegateSpec.php │ │ │ ├── CopyToElasticSearchDelegateSpec.php │ │ │ ├── EventsDelegateSpec.php │ │ │ ├── FeedsDelegateSpec.php │ │ │ └── SendNotificationDelegateSpec.php │ │ ├── ManagerSpec.php │ │ ├── Relational │ │ │ ├── ControllerSpec.php │ │ │ └── RepositorySpec.php │ │ └── RepositorySpec.php │ ├── Suggestions │ │ ├── DefaultTagMapping │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ ├── ManagerSpec.php │ │ ├── Pass │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ └── RepositorySpec.php │ ├── Supermind │ │ ├── Delegates │ │ │ └── EventsDelegateSpec.php │ │ ├── Events │ │ │ └── EventsSpec.php │ │ ├── ExpiringSoonEventsSpec.php │ │ ├── ManagerSpec.php │ │ ├── Models │ │ │ └── SupermindRequestSpec.php │ │ ├── Payments │ │ │ └── SupermindPaymentProcessorSpec.php │ │ ├── RepositorySpec.php │ │ ├── Settings │ │ │ ├── ManagerSpec.php │ │ │ ├── Models │ │ │ │ └── SettingsSpec.php │ │ │ ├── Repositories │ │ │ │ └── UserStorageRepositorySpec.php │ │ │ └── Validators │ │ │ │ └── SupermindUpdateSettingsRequestValidatorSpec.php │ │ ├── SupermindEventStreamsSubscriptionSpec.php │ │ └── Validators │ │ │ ├── SupermindCountRequestsValidatorSpec.php │ │ │ ├── SupermindGetRequestsValidatorSpec.php │ │ │ └── SupermindLiveReplyValidatorSpec.php │ ├── Torrent │ │ ├── TorrentBuilders │ │ │ └── S3Spec.php │ │ └── TorrentMetaSpec.php │ ├── Trending │ │ ├── Aggregates │ │ │ ├── ChannelVotesSpec.php │ │ │ ├── CommentsSpec.php │ │ │ ├── RemindsSpec.php │ │ │ ├── SubscriptionsSpec.php │ │ │ └── VotesSpec.php │ │ └── RepositorySpec.php │ ├── Verification │ │ ├── ManagerSpec.php │ │ └── RepositorySpec.php │ ├── VideoChat │ │ ├── Leases │ │ │ ├── ManagerSpec.php │ │ │ └── RepositorySpec.php │ │ └── ManagerSpec.php │ ├── Votes │ │ ├── CountersSpec.php │ │ ├── IndexesSpec.php │ │ └── ManagerSpec.php │ └── Wire │ │ ├── Delegates │ │ ├── EventsDelegateSpec.php │ │ └── PlusSpec.php │ │ ├── ManagerSpec.php │ │ ├── Paywall │ │ └── ManagerSpec.php │ │ ├── RepositorySpec.php │ │ ├── Subscriptions │ │ └── ManagerSpec.php │ │ ├── SumsSpec.php │ │ ├── SupportTiers │ │ ├── Delegates │ │ │ └── PaymentsDelegateSpec.php │ │ └── ManagerSpec.php │ │ └── WireWebhookServiceSpec.php ├── Entities │ ├── ActivitySpec.php │ ├── ConversationSpec.php │ ├── DenormalizedEntitySpec.php │ ├── NormalizedEntitySpec.php │ ├── PageSpec.php │ └── UserSpec.php ├── Helpers │ ├── .env │ ├── EntitiesSpec.php │ ├── EnvSpec.php │ ├── StringLengthValidators │ │ ├── BriefDescriptionLengthValidatorSpec.php │ │ ├── DescriptionLengthValidatorSpec.php │ │ ├── MessageLengthValidatorSpec.php │ │ ├── TitleLengthValidatorSpec.php │ │ └── UsernameLengthValidatorSpec.php │ ├── TextSpec.php │ └── UrlSpec.php ├── Integrations │ ├── Bloomerang │ │ ├── BloomerangConstituentServiceSpec.php │ │ ├── EventsSpec.php │ │ └── RepositorySpec.php │ └── MemberSpace │ │ ├── EventsSpec.php │ │ └── MemberSpaceServiceSpec.php ├── Mocks │ ├── Cassandra │ │ ├── FutureRow.php │ │ ├── Rows.php │ │ └── Value.php │ ├── Minds │ │ └── Core │ │ │ ├── Entities.php │ │ │ └── Entities │ │ │ └── Factory.php │ └── Redis.php ├── bootstrap.php ├── mocks.php ├── php-test.ini └── pulsar-mocks.php ├── Traits ├── CurrentUser.php ├── DirtyChecking.php ├── Entity.php ├── Exportable.php ├── HttpMethodsInput.php ├── Interval.php ├── MagicAttributes.php ├── RandomGenerators.php └── Snapshotable.php ├── annotatedImage.png ├── classes ├── CallException.php ├── ClassException.php ├── ConfigurationException.php ├── DataFormatException.php ├── ElggData.php ├── ElggDiskFilestore.php ├── ElggEntity.php ├── ElggFile.php ├── ElggFilestore.php ├── ElggObject.php ├── ElggSite.php ├── ElggUser.php ├── Exportable.php ├── GUID.php ├── IOException.php ├── InstallationException.php ├── InvalidParameterException.php ├── NotImplementedException.php ├── RegistrationException.php └── SecurityException.php ├── cli.php ├── composer.json ├── composer.lock ├── containers ├── installer │ ├── Dockerfile │ └── install.sh ├── php-coverage │ ├── Dockerfile │ ├── apcu.ini │ ├── opcache.ini │ ├── php-fpm.conf │ └── php.ini ├── php-fpm │ ├── Dockerfile │ ├── Dockerfile.dev │ ├── apcu.ini │ ├── opcache-dev.ini │ ├── opcache.ini │ ├── php-fpm.conf │ ├── php-fpm.dev.conf │ ├── php.ini │ ├── pull-secrets.sh │ └── xdebug.ini ├── php-guid │ ├── Dockerfile │ ├── guid.conf │ └── supervisord.conf ├── php-rr │ ├── Dockerfile │ ├── Dockerfile.dev │ ├── apcu.ini │ ├── opcache-dev.ini │ ├── opcache.ini │ ├── php.ini │ └── xdebug.ini ├── php-runners │ ├── Dockerfile │ ├── minds.conf │ ├── pull-secrets.sh │ └── supervisord.conf ├── php │ ├── Dockerfile │ ├── opcache.ini │ ├── php.ini │ └── pulsar.ini ├── phpspec │ ├── Dockerfile │ └── phpspec.sh └── transcoder │ ├── Dockerfile │ └── pull-secrets.sh ├── index.php ├── integration_tests ├── .env.local ├── .env.production ├── .env.sandbox ├── README.md ├── codeception.yml ├── composer.json ├── composer.lock ├── setup_and_run.sh └── tests │ ├── Api.suite.yml │ ├── Features │ ├── Activity.feature │ ├── Authentication.feature │ ├── Boost.feature │ ├── Boosts_V3.feature │ ├── Discovery.feature │ ├── Payments.feature │ ├── Referrer.feature │ ├── Registration.feature │ ├── Security.feature │ ├── Supermind.feature │ └── TopNewsFeed.feature │ └── Support │ ├── ApiTester.php │ ├── Data │ └── .gitkeep │ ├── Group │ ├── Boost.php │ ├── Discovery.php │ ├── Login.php │ ├── Newsfeed.php │ ├── Registration.php │ └── Supermind.php │ ├── Helper │ ├── Activities.php │ ├── Api.php │ ├── Authentication.php │ └── Supermind.php │ └── Step │ └── Api │ ├── ActivitySteps.php │ ├── AuthenticationSteps.php │ ├── BoostSteps.php │ ├── CommonSteps.php │ ├── ReferrerSteps.php │ ├── RegistrationSteps.php │ ├── Security.php │ ├── SupermindSteps.php │ └── TopNewsFeedSteps.php ├── lib ├── elgglib.php ├── entities.php ├── input.php ├── mb_wrapper.php ├── sessions.php └── users.php ├── minds_engine.yaml ├── openapi.yaml ├── phpspec-coverage.yml ├── phpspec.yml ├── phpstan.neon ├── ruleset.xml ├── settings.example.php ├── settings.json ├── start.php ├── start.rr.php ├── tools ├── setup-dev.sh └── setup.sh ├── translations ├── messages.af.xliff ├── messages.ar.xliff ├── messages.ca.xliff ├── messages.cs.xliff ├── messages.da.xliff ├── messages.de.xliff ├── messages.el.xliff ├── messages.en.xliff ├── messages.es.xliff ├── messages.fi.xliff ├── messages.fr.xliff ├── messages.he.xliff ├── messages.hu.xliff ├── messages.it.xliff ├── messages.ja.xliff ├── messages.ko.xliff ├── messages.nl.xliff ├── messages.no.xliff ├── messages.pl.xliff ├── messages.pt.xliff ├── messages.ro.xliff ├── messages.ru.xliff ├── messages.sr.xliff ├── messages.sv.xliff ├── messages.th.xliff ├── messages.tr.xliff ├── messages.uk.xliff ├── messages.vi.xliff └── messages.zh.xliff └── welcome_complete.html  /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/.drone.yml -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/agents/oci-sandbox/config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.rr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/.rr.yaml -------------------------------------------------------------------------------- /Api/Exportable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Api/Exportable.php -------------------------------------------------------------------------------- /Api/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Api/Factory.php -------------------------------------------------------------------------------- /Api/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Api/Routes.php -------------------------------------------------------------------------------- /Assets/avatars/default-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/avatars/default-large.png -------------------------------------------------------------------------------- /Assets/avatars/default-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/avatars/default-small.png -------------------------------------------------------------------------------- /Assets/banners/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/banners/0.jpg -------------------------------------------------------------------------------- /Assets/banners/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/banners/1.jpg -------------------------------------------------------------------------------- /Assets/banners/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/banners/2.jpg -------------------------------------------------------------------------------- /Assets/banners/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/banners/3.jpg -------------------------------------------------------------------------------- /Assets/banners/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/banners/4.jpg -------------------------------------------------------------------------------- /Assets/banners/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/banners/5.jpg -------------------------------------------------------------------------------- /Assets/banners/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/banners/6.jpg -------------------------------------------------------------------------------- /Assets/banners/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/banners/7.jpg -------------------------------------------------------------------------------- /Assets/banners/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/banners/8.jpg -------------------------------------------------------------------------------- /Assets/banners/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/banners/9.jpg -------------------------------------------------------------------------------- /Assets/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /Assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Assets/logos/og-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/logos/og-default.png -------------------------------------------------------------------------------- /Assets/logos/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/logos/white.png -------------------------------------------------------------------------------- /Assets/photos/default-audio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/photos/default-audio.jpg -------------------------------------------------------------------------------- /Assets/photos/paywall-blur.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Assets/photos/paywall-blur.jpeg -------------------------------------------------------------------------------- /Behaviors/Actorable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Behaviors/Actorable.php -------------------------------------------------------------------------------- /Cli/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Cli/Controller.php -------------------------------------------------------------------------------- /Cli/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Cli/Factory.php -------------------------------------------------------------------------------- /Cli/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Cli/Routes.php -------------------------------------------------------------------------------- /Common/Access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Common/Access.php -------------------------------------------------------------------------------- /Common/ChannelMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Common/ChannelMode.php -------------------------------------------------------------------------------- /Common/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Common/Cookie.php -------------------------------------------------------------------------------- /Common/EntityMutation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Common/EntityMutation.php -------------------------------------------------------------------------------- /Common/IpAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Common/IpAddress.php -------------------------------------------------------------------------------- /Common/Jwt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Common/Jwt.php -------------------------------------------------------------------------------- /Common/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Common/Regex.php -------------------------------------------------------------------------------- /Common/Repository/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Common/Repository/Response.php -------------------------------------------------------------------------------- /Common/StaticToInstance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Common/StaticToInstance.php -------------------------------------------------------------------------------- /Common/SystemUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Common/SystemUser.php -------------------------------------------------------------------------------- /Common/Urn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Common/Urn.php -------------------------------------------------------------------------------- /Components/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Components/Controller.php -------------------------------------------------------------------------------- /Components/Email/banned.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Components/Email/banned.tpl -------------------------------------------------------------------------------- /Components/Email/default.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Components/Email/default.tpl -------------------------------------------------------------------------------- /Components/Email/welcome.md.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Components/Email/welcome.md.tpl -------------------------------------------------------------------------------- /Components/Email/welcome.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Components/Email/welcome.tpl -------------------------------------------------------------------------------- /Controllers/Cli/ActivityPub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/ActivityPub.php -------------------------------------------------------------------------------- /Controllers/Cli/Ai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Ai.php -------------------------------------------------------------------------------- /Controllers/Cli/Analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Analytics.php -------------------------------------------------------------------------------- /Controllers/Cli/Blockchain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Blockchain.php -------------------------------------------------------------------------------- /Controllers/Cli/Boost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Boost.php -------------------------------------------------------------------------------- /Controllers/Cli/Cloudflare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Cloudflare.php -------------------------------------------------------------------------------- /Controllers/Cli/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Config.php -------------------------------------------------------------------------------- /Controllers/Cli/DWH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/DWH.php -------------------------------------------------------------------------------- /Controllers/Cli/Demonetize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Demonetize.php -------------------------------------------------------------------------------- /Controllers/Cli/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Email.php -------------------------------------------------------------------------------- /Controllers/Cli/EventStreams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/EventStreams.php -------------------------------------------------------------------------------- /Controllers/Cli/GiftCards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/GiftCards.php -------------------------------------------------------------------------------- /Controllers/Cli/GuidServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/GuidServer.php -------------------------------------------------------------------------------- /Controllers/Cli/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Install.php -------------------------------------------------------------------------------- /Controllers/Cli/Matrix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Matrix.php -------------------------------------------------------------------------------- /Controllers/Cli/Moderation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Moderation.php -------------------------------------------------------------------------------- /Controllers/Cli/MySQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/MySQL.php -------------------------------------------------------------------------------- /Controllers/Cli/Nostr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Nostr.php -------------------------------------------------------------------------------- /Controllers/Cli/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Notification.php -------------------------------------------------------------------------------- /Controllers/Cli/PostHog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/PostHog.php -------------------------------------------------------------------------------- /Controllers/Cli/Pulsar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Pulsar.php -------------------------------------------------------------------------------- /Controllers/Cli/QueueRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/QueueRunner.php -------------------------------------------------------------------------------- /Controllers/Cli/Rewards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Rewards.php -------------------------------------------------------------------------------- /Controllers/Cli/Rss/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Rss/Fetch.php -------------------------------------------------------------------------------- /Controllers/Cli/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Search.php -------------------------------------------------------------------------------- /Controllers/Cli/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Setup.php -------------------------------------------------------------------------------- /Controllers/Cli/Sitemaps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Sitemaps.php -------------------------------------------------------------------------------- /Controllers/Cli/Snapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Snapshot.php -------------------------------------------------------------------------------- /Controllers/Cli/Stripe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Stripe.php -------------------------------------------------------------------------------- /Controllers/Cli/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Test.php -------------------------------------------------------------------------------- /Controllers/Cli/Top.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Top.php -------------------------------------------------------------------------------- /Controllers/Cli/Top/All.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Top/All.php -------------------------------------------------------------------------------- /Controllers/Cli/Transcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Transcode.php -------------------------------------------------------------------------------- /Controllers/Cli/TwitterSync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/TwitterSync.php -------------------------------------------------------------------------------- /Controllers/Cli/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/User.php -------------------------------------------------------------------------------- /Controllers/Cli/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Cli/Video.php -------------------------------------------------------------------------------- /Controllers/Legacy/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Legacy/search.php -------------------------------------------------------------------------------- /Controllers/Legacy/wall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/Legacy/wall.php -------------------------------------------------------------------------------- /Controllers/api/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/api.php -------------------------------------------------------------------------------- /Controllers/api/v1/admin/ban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/admin/ban.php -------------------------------------------------------------------------------- /Controllers/api/v1/analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/analytics.php -------------------------------------------------------------------------------- /Controllers/api/v1/block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/block.php -------------------------------------------------------------------------------- /Controllers/api/v1/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/blog.php -------------------------------------------------------------------------------- /Controllers/api/v1/boost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/boost.php -------------------------------------------------------------------------------- /Controllers/api/v1/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/captcha.php -------------------------------------------------------------------------------- /Controllers/api/v1/channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/channel.php -------------------------------------------------------------------------------- /Controllers/api/v1/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/comments.php -------------------------------------------------------------------------------- /Controllers/api/v1/embed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/embed.php -------------------------------------------------------------------------------- /Controllers/api/v1/entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/entities.php -------------------------------------------------------------------------------- /Controllers/api/v1/groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/groups.php -------------------------------------------------------------------------------- /Controllers/api/v1/guid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/guid.php -------------------------------------------------------------------------------- /Controllers/api/v1/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/header.php -------------------------------------------------------------------------------- /Controllers/api/v1/keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/keys.php -------------------------------------------------------------------------------- /Controllers/api/v1/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/logout.php -------------------------------------------------------------------------------- /Controllers/api/v1/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/media.php -------------------------------------------------------------------------------- /Controllers/api/v1/newsfeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/newsfeed.php -------------------------------------------------------------------------------- /Controllers/api/v1/plus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/plus.php -------------------------------------------------------------------------------- /Controllers/api/v1/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/register.php -------------------------------------------------------------------------------- /Controllers/api/v1/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/settings.php -------------------------------------------------------------------------------- /Controllers/api/v1/subscribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/subscribe.php -------------------------------------------------------------------------------- /Controllers/api/v1/thumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/thumbs.php -------------------------------------------------------------------------------- /Controllers/api/v1/twofactor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/twofactor.php -------------------------------------------------------------------------------- /Controllers/api/v1/votes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/votes.php -------------------------------------------------------------------------------- /Controllers/api/v1/wire/sums.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v1/wire/sums.php -------------------------------------------------------------------------------- /Controllers/api/v2/admin/pro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/admin/pro.php -------------------------------------------------------------------------------- /Controllers/api/v2/analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/analytics.php -------------------------------------------------------------------------------- /Controllers/api/v2/boost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/boost.php -------------------------------------------------------------------------------- /Controllers/api/v2/canary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/canary.php -------------------------------------------------------------------------------- /Controllers/api/v2/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/captcha.php -------------------------------------------------------------------------------- /Controllers/api/v2/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/comments.php -------------------------------------------------------------------------------- /Controllers/api/v2/cookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/cookies.php -------------------------------------------------------------------------------- /Controllers/api/v2/entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/entities.php -------------------------------------------------------------------------------- /Controllers/api/v2/faq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/faq.php -------------------------------------------------------------------------------- /Controllers/api/v2/feeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/feeds.php -------------------------------------------------------------------------------- /Controllers/api/v2/issues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/issues.php -------------------------------------------------------------------------------- /Controllers/api/v2/mwa/pv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/mwa/pv.php -------------------------------------------------------------------------------- /Controllers/api/v2/newsfeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/newsfeed.php -------------------------------------------------------------------------------- /Controllers/api/v2/permaweb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/permaweb.php -------------------------------------------------------------------------------- /Controllers/api/v2/pro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/pro.php -------------------------------------------------------------------------------- /Controllers/api/v2/referrals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/referrals.php -------------------------------------------------------------------------------- /Controllers/api/v2/sendwyre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/sendwyre.php -------------------------------------------------------------------------------- /Controllers/api/v2/wire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/api/v2/wire.php -------------------------------------------------------------------------------- /Controllers/fs/fs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/fs/fs.php -------------------------------------------------------------------------------- /Controllers/fs/v1/avatars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/fs/v1/avatars.php -------------------------------------------------------------------------------- /Controllers/fs/v1/banners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/fs/v1/banners.php -------------------------------------------------------------------------------- /Controllers/fs/v1/paywall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/fs/v1/paywall.php -------------------------------------------------------------------------------- /Controllers/icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/icon.php -------------------------------------------------------------------------------- /Controllers/oauth2/token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/oauth2/token.php -------------------------------------------------------------------------------- /Controllers/thumbProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Controllers/thumbProxy.php -------------------------------------------------------------------------------- /Core/AccountQuality/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/AccountQuality/Module.php -------------------------------------------------------------------------------- /Core/AccountQuality/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/AccountQuality/Routes.php -------------------------------------------------------------------------------- /Core/ActivityPub/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/ActivityPub/Client.php -------------------------------------------------------------------------------- /Core/ActivityPub/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/ActivityPub/Manager.php -------------------------------------------------------------------------------- /Core/ActivityPub/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/ActivityPub/Module.php -------------------------------------------------------------------------------- /Core/ActivityPub/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/ActivityPub/Provider.php -------------------------------------------------------------------------------- /Core/ActivityPub/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/ActivityPub/Routes.php -------------------------------------------------------------------------------- /Core/Admin/GraphQLMappings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Admin/GraphQLMappings.php -------------------------------------------------------------------------------- /Core/Admin/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Admin/Manager.php -------------------------------------------------------------------------------- /Core/Admin/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Admin/Module.php -------------------------------------------------------------------------------- /Core/Admin/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Admin/Provider.php -------------------------------------------------------------------------------- /Core/Admin/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Admin/Routes.php -------------------------------------------------------------------------------- /Core/Ai/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Ai/Module.php -------------------------------------------------------------------------------- /Core/Ai/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Ai/Provider.php -------------------------------------------------------------------------------- /Core/Analytics/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Analytics/App.php -------------------------------------------------------------------------------- /Core/Analytics/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Analytics/Controller.php -------------------------------------------------------------------------------- /Core/Analytics/Dashboards/Engagement.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Analytics/Dashboards/Filters/FilterGroup.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Analytics/Dashboards/Filters/FilterInterface.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Analytics/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Analytics/Manager.php -------------------------------------------------------------------------------- /Core/Analytics/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Analytics/Module.php -------------------------------------------------------------------------------- /Core/Analytics/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Analytics/Routes.php -------------------------------------------------------------------------------- /Core/Analytics/Timestamps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Analytics/Timestamps.php -------------------------------------------------------------------------------- /Core/Analytics/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Analytics/User.php -------------------------------------------------------------------------------- /Core/Analytics/Views/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Analytics/Views/View.php -------------------------------------------------------------------------------- /Core/Authentication/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Authentication/Module.php -------------------------------------------------------------------------------- /Core/Authentication/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Authentication/Routes.php -------------------------------------------------------------------------------- /Core/Blockchain/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blockchain/Config.php -------------------------------------------------------------------------------- /Core/Blockchain/EthPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blockchain/EthPrice.php -------------------------------------------------------------------------------- /Core/Blockchain/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blockchain/Events.php -------------------------------------------------------------------------------- /Core/Blockchain/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blockchain/Manager.php -------------------------------------------------------------------------------- /Core/Blockchain/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blockchain/Module.php -------------------------------------------------------------------------------- /Core/Blockchain/Pending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blockchain/Pending.php -------------------------------------------------------------------------------- /Core/Blockchain/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blockchain/Token.php -------------------------------------------------------------------------------- /Core/Blockchain/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blockchain/Util.php -------------------------------------------------------------------------------- /Core/Blogs/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/Blog.php -------------------------------------------------------------------------------- /Core/Blogs/BlogsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/BlogsProvider.php -------------------------------------------------------------------------------- /Core/Blogs/Delegates/Feeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/Delegates/Feeds.php -------------------------------------------------------------------------------- /Core/Blogs/Delegates/Slug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/Delegates/Slug.php -------------------------------------------------------------------------------- /Core/Blogs/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/Events.php -------------------------------------------------------------------------------- /Core/Blogs/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/Header.php -------------------------------------------------------------------------------- /Core/Blogs/Legacy/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/Legacy/Entity.php -------------------------------------------------------------------------------- /Core/Blogs/Lite/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/Lite/View.php -------------------------------------------------------------------------------- /Core/Blogs/Lite/lite.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/Lite/lite.tpl -------------------------------------------------------------------------------- /Core/Blogs/Lite/view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/Lite/view.tpl -------------------------------------------------------------------------------- /Core/Blogs/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/Manager.php -------------------------------------------------------------------------------- /Core/Blogs/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/Repository.php -------------------------------------------------------------------------------- /Core/Blogs/Trending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Blogs/Trending.php -------------------------------------------------------------------------------- /Core/Boost/Checksum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Boost/Checksum.php -------------------------------------------------------------------------------- /Core/Boost/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Boost/Module.php -------------------------------------------------------------------------------- /Core/Boost/Network/Boost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Boost/Network/Boost.php -------------------------------------------------------------------------------- /Core/Boost/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Boost/Provider.php -------------------------------------------------------------------------------- /Core/Boost/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Boost/Routes.php -------------------------------------------------------------------------------- /Core/Boost/V3/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Boost/V3/Controller.php -------------------------------------------------------------------------------- /Core/Boost/V3/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Boost/V3/Manager.php -------------------------------------------------------------------------------- /Core/Boost/V3/Models/Boost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Boost/V3/Models/Boost.php -------------------------------------------------------------------------------- /Core/Boost/V3/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Boost/V3/Module.php -------------------------------------------------------------------------------- /Core/Boost/V3/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Boost/V3/Provider.php -------------------------------------------------------------------------------- /Core/Boost/V3/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Boost/V3/Repository.php -------------------------------------------------------------------------------- /Core/Boost/V3/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Boost/V3/Routes.php -------------------------------------------------------------------------------- /Core/Captcha/BypassManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Captcha/BypassManager.php -------------------------------------------------------------------------------- /Core/Captcha/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Captcha/Captcha.php -------------------------------------------------------------------------------- /Core/Captcha/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Captcha/Manager.php -------------------------------------------------------------------------------- /Core/Captcha/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Captcha/Module.php -------------------------------------------------------------------------------- /Core/Captcha/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Captcha/Provider.php -------------------------------------------------------------------------------- /Core/Categories/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Categories/Repository.php -------------------------------------------------------------------------------- /Core/Channels/Ban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Channels/Ban.php -------------------------------------------------------------------------------- /Core/Channels/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Channels/Events.php -------------------------------------------------------------------------------- /Core/Channels/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Channels/Manager.php -------------------------------------------------------------------------------- /Core/Chat/Events/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Chat/Events/Events.php -------------------------------------------------------------------------------- /Core/Chat/GraphQLMappings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Chat/GraphQLMappings.php -------------------------------------------------------------------------------- /Core/Chat/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Chat/Module.php -------------------------------------------------------------------------------- /Core/Chat/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Chat/Provider.php -------------------------------------------------------------------------------- /Core/Chat/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Chat/Routes.php -------------------------------------------------------------------------------- /Core/Comments/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Comments/Comment.php -------------------------------------------------------------------------------- /Core/Comments/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Comments/Events.php -------------------------------------------------------------------------------- /Core/Comments/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Comments/Manager.php -------------------------------------------------------------------------------- /Core/Comments/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Comments/Provider.php -------------------------------------------------------------------------------- /Core/Comments/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Comments/Repository.php -------------------------------------------------------------------------------- /Core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Config.php -------------------------------------------------------------------------------- /Core/Config/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Config/Config.php -------------------------------------------------------------------------------- /Core/Config/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Config/ConfigProvider.php -------------------------------------------------------------------------------- /Core/Config/Exported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Config/Exported.php -------------------------------------------------------------------------------- /Core/Counters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Counters.php -------------------------------------------------------------------------------- /Core/DID/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/DID/Controller.php -------------------------------------------------------------------------------- /Core/DID/DIDDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/DID/DIDDocument.php -------------------------------------------------------------------------------- /Core/DID/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/DID/Events.php -------------------------------------------------------------------------------- /Core/DID/Keypairs/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/DID/Keypairs/Manager.php -------------------------------------------------------------------------------- /Core/DID/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/DID/Manager.php -------------------------------------------------------------------------------- /Core/DID/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/DID/Module.php -------------------------------------------------------------------------------- /Core/DID/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/DID/Provider.php -------------------------------------------------------------------------------- /Core/DID/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/DID/Routes.php -------------------------------------------------------------------------------- /Core/Data/BigQuery/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/BigQuery/Client.php -------------------------------------------------------------------------------- /Core/Data/Call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/Call.php -------------------------------------------------------------------------------- /Core/Data/Cassandra/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/Cassandra/Client.php -------------------------------------------------------------------------------- /Core/Data/Cassandra/Scroll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/Cassandra/Scroll.php -------------------------------------------------------------------------------- /Core/Data/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/Client.php -------------------------------------------------------------------------------- /Core/Data/DataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/DataProvider.php -------------------------------------------------------------------------------- /Core/Data/Locks/Cassandra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/Locks/Cassandra.php -------------------------------------------------------------------------------- /Core/Data/Locks/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/Locks/Redis.php -------------------------------------------------------------------------------- /Core/Data/MySQL/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/MySQL/Client.php -------------------------------------------------------------------------------- /Core/Data/Redis/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/Redis/Client.php -------------------------------------------------------------------------------- /Core/Data/Relationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/Relationships.php -------------------------------------------------------------------------------- /Core/Data/Sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/Sessions.php -------------------------------------------------------------------------------- /Core/Data/SortedSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/SortedSet.php -------------------------------------------------------------------------------- /Core/Data/cache/APCuCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/cache/APCuCache.php -------------------------------------------------------------------------------- /Core/Data/cache/Cassandra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/cache/Cassandra.php -------------------------------------------------------------------------------- /Core/Data/cache/PsrWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/cache/PsrWrapper.php -------------------------------------------------------------------------------- /Core/Data/cache/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/cache/Redis.php -------------------------------------------------------------------------------- /Core/Data/cache/apcu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/cache/apcu.php -------------------------------------------------------------------------------- /Core/Data/cache/factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/cache/factory.php -------------------------------------------------------------------------------- /Core/Data/indexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/indexes.php -------------------------------------------------------------------------------- /Core/Data/lookup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Data/lookup.php -------------------------------------------------------------------------------- /Core/DeepLink/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/DeepLink/Module.php -------------------------------------------------------------------------------- /Core/DeepLink/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/DeepLink/Provider.php -------------------------------------------------------------------------------- /Core/DeepLink/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/DeepLink/Routes.php -------------------------------------------------------------------------------- /Core/Di/Binding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Di/Binding.php -------------------------------------------------------------------------------- /Core/Di/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Di/Container.php -------------------------------------------------------------------------------- /Core/Di/Di.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Di/Di.php -------------------------------------------------------------------------------- /Core/Di/ImmutableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Di/ImmutableException.php -------------------------------------------------------------------------------- /Core/Di/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Di/Provider.php -------------------------------------------------------------------------------- /Core/Di/Ref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Di/Ref.php -------------------------------------------------------------------------------- /Core/Di/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Di/Registry.php -------------------------------------------------------------------------------- /Core/Discovery/Controllers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Discovery/Controllers.php -------------------------------------------------------------------------------- /Core/Discovery/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Discovery/Manager.php -------------------------------------------------------------------------------- /Core/Discovery/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Discovery/Module.php -------------------------------------------------------------------------------- /Core/Discovery/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Discovery/Provider.php -------------------------------------------------------------------------------- /Core/Discovery/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Discovery/Routes.php -------------------------------------------------------------------------------- /Core/Discovery/Trend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Discovery/Trend.php -------------------------------------------------------------------------------- /Core/Email/EmailStyles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/EmailStyles.php -------------------------------------------------------------------------------- /Core/Email/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Events.php -------------------------------------------------------------------------------- /Core/Email/Invites/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Invites/Module.php -------------------------------------------------------------------------------- /Core/Email/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Mailer.php -------------------------------------------------------------------------------- /Core/Email/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Manager.php -------------------------------------------------------------------------------- /Core/Email/Mautic/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Mautic/Client.php -------------------------------------------------------------------------------- /Core/Email/Mautic/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Mautic/Manager.php -------------------------------------------------------------------------------- /Core/Email/Mautic/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Mautic/Module.php -------------------------------------------------------------------------------- /Core/Email/Mautic/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Mautic/Provider.php -------------------------------------------------------------------------------- /Core/Email/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Message.php -------------------------------------------------------------------------------- /Core/Email/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Module.php -------------------------------------------------------------------------------- /Core/Email/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Provider.php -------------------------------------------------------------------------------- /Core/Email/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Repository.php -------------------------------------------------------------------------------- /Core/Email/RouterHooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/RouterHooks.php -------------------------------------------------------------------------------- /Core/Email/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Routes.php -------------------------------------------------------------------------------- /Core/Email/SpamFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/SpamFilter.php -------------------------------------------------------------------------------- /Core/Email/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Template.php -------------------------------------------------------------------------------- /Core/Email/V2/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/V2/Module.php -------------------------------------------------------------------------------- /Core/Email/V2/Partials/MarketingHero/MarketingHero.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Email/V2/Partials/MarketingHero/template.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Email/V2/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/V2/Provider.php -------------------------------------------------------------------------------- /Core/Email/Verify/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/Verify/Manager.php -------------------------------------------------------------------------------- /Core/Email/blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Email/blacklist.txt -------------------------------------------------------------------------------- /Core/Entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Entities.php -------------------------------------------------------------------------------- /Core/Entities/Actions/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Entities/Actions/Save.php -------------------------------------------------------------------------------- /Core/Entities/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Entities/Controller.php -------------------------------------------------------------------------------- /Core/Entities/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Entities/Events.php -------------------------------------------------------------------------------- /Core/Entities/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Entities/Module.php -------------------------------------------------------------------------------- /Core/Entities/Ops/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Entities/Ops/Events.php -------------------------------------------------------------------------------- /Core/Entities/Ops/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Entities/Ops/Module.php -------------------------------------------------------------------------------- /Core/Entities/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Entities/Provider.php -------------------------------------------------------------------------------- /Core/Entities/Resolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Entities/Resolver.php -------------------------------------------------------------------------------- /Core/Entities/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Entities/Routes.php -------------------------------------------------------------------------------- /Core/EntitiesBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/EntitiesBuilder.php -------------------------------------------------------------------------------- /Core/EventStreams/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/EventStreams/Module.php -------------------------------------------------------------------------------- /Core/EventStreams/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/EventStreams/Provider.php -------------------------------------------------------------------------------- /Core/Events/Defaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Events/Defaults.php -------------------------------------------------------------------------------- /Core/Events/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Events/Dispatcher.php -------------------------------------------------------------------------------- /Core/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Events/Event.php -------------------------------------------------------------------------------- /Core/Events/Hooks/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Events/Hooks/Register.php -------------------------------------------------------------------------------- /Core/Events/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Events/Module.php -------------------------------------------------------------------------------- /Core/Events/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Events/Provider.php -------------------------------------------------------------------------------- /Core/Experiments/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Experiments/Manager.php -------------------------------------------------------------------------------- /Core/Experiments/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Experiments/Module.php -------------------------------------------------------------------------------- /Core/Experiments/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Experiments/Provider.php -------------------------------------------------------------------------------- /Core/Experiments/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Experiments/Routes.php -------------------------------------------------------------------------------- /Core/Faq/Answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Faq/Answer.php -------------------------------------------------------------------------------- /Core/Faq/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Faq/Category.php -------------------------------------------------------------------------------- /Core/Faq/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Faq/CategoryFactory.php -------------------------------------------------------------------------------- /Core/Faq/FaqProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Faq/FaqProvider.php -------------------------------------------------------------------------------- /Core/Faq/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Faq/Manager.php -------------------------------------------------------------------------------- /Core/Faq/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Faq/Question.php -------------------------------------------------------------------------------- /Core/Faq/faq.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Faq/faq.csv -------------------------------------------------------------------------------- /Core/Features/Canary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Features/Canary.php -------------------------------------------------------------------------------- /Core/Features/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Features/Module.php -------------------------------------------------------------------------------- /Core/Features/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Features/Provider.php -------------------------------------------------------------------------------- /Core/FeedNotices/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/FeedNotices/Manager.php -------------------------------------------------------------------------------- /Core/FeedNotices/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/FeedNotices/Module.php -------------------------------------------------------------------------------- /Core/FeedNotices/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/FeedNotices/Provider.php -------------------------------------------------------------------------------- /Core/FeedNotices/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/FeedNotices/Routes.php -------------------------------------------------------------------------------- /Core/Feeds/Activity/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/Activity/Events.php -------------------------------------------------------------------------------- /Core/Feeds/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/Controller.php -------------------------------------------------------------------------------- /Core/Feeds/Elastic/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/Elastic/Manager.php -------------------------------------------------------------------------------- /Core/Feeds/Elastic/Maps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/Elastic/Maps.php -------------------------------------------------------------------------------- /Core/Feeds/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/Events.php -------------------------------------------------------------------------------- /Core/Feeds/FeedItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/FeedItem.php -------------------------------------------------------------------------------- /Core/Feeds/FeedSyncEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/FeedSyncEntity.php -------------------------------------------------------------------------------- /Core/Feeds/FeedsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/FeedsProvider.php -------------------------------------------------------------------------------- /Core/Feeds/GraphQL/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/GraphQL/Module.php -------------------------------------------------------------------------------- /Core/Feeds/Iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/Iterator.php -------------------------------------------------------------------------------- /Core/Feeds/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/Module.php -------------------------------------------------------------------------------- /Core/Feeds/RSS/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/RSS/Module.php -------------------------------------------------------------------------------- /Core/Feeds/RSS/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/RSS/Provider.php -------------------------------------------------------------------------------- /Core/Feeds/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/Repository.php -------------------------------------------------------------------------------- /Core/Feeds/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/Routes.php -------------------------------------------------------------------------------- /Core/Feeds/Seen/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/Seen/Manager.php -------------------------------------------------------------------------------- /Core/Feeds/Seen/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/Seen/Repository.php -------------------------------------------------------------------------------- /Core/Feeds/Seen/SeenEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/Seen/SeenEntity.php -------------------------------------------------------------------------------- /Core/Feeds/User/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Feeds/User/Manager.php -------------------------------------------------------------------------------- /Core/GraphQL/Client/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/GraphQL/Client/Client.php -------------------------------------------------------------------------------- /Core/GraphQL/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/GraphQL/Controller.php -------------------------------------------------------------------------------- /Core/GraphQL/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/GraphQL/Module.php -------------------------------------------------------------------------------- /Core/GraphQL/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/GraphQL/Provider.php -------------------------------------------------------------------------------- /Core/GraphQL/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/GraphQL/Routes.php -------------------------------------------------------------------------------- /Core/Groups/AdminQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Groups/AdminQueue.php -------------------------------------------------------------------------------- /Core/Groups/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Groups/Events.php -------------------------------------------------------------------------------- /Core/Groups/Feeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Groups/Feeds.php -------------------------------------------------------------------------------- /Core/Groups/GroupsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Groups/GroupsProvider.php -------------------------------------------------------------------------------- /Core/Groups/Invitations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Groups/Invitations.php -------------------------------------------------------------------------------- /Core/Groups/Management.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Groups/Management.php -------------------------------------------------------------------------------- /Core/Groups/Notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Groups/Notifications.php -------------------------------------------------------------------------------- /Core/Groups/SEO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Groups/SEO.php -------------------------------------------------------------------------------- /Core/Groups/V2/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Groups/V2/Module.php -------------------------------------------------------------------------------- /Core/Groups/V2/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Groups/V2/Provider.php -------------------------------------------------------------------------------- /Core/Guid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Guid.php -------------------------------------------------------------------------------- /Core/GuidBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/GuidBuilder.php -------------------------------------------------------------------------------- /Core/Hashtags/User/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Hashtags/User/Manager.php -------------------------------------------------------------------------------- /Core/Helpdesk/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Helpdesk/Module.php -------------------------------------------------------------------------------- /Core/Http/Curl/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Http/Curl/Client.php -------------------------------------------------------------------------------- /Core/Http/Curl/CurlWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Http/Curl/CurlWrapper.php -------------------------------------------------------------------------------- /Core/Http/Curl/Json/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Http/Curl/Json/Client.php -------------------------------------------------------------------------------- /Core/Http/HttpProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Http/HttpProvider.php -------------------------------------------------------------------------------- /Core/I18n/Locales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/I18n/Locales.php -------------------------------------------------------------------------------- /Core/I18n/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/I18n/Manager.php -------------------------------------------------------------------------------- /Core/I18n/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/I18n/Module.php -------------------------------------------------------------------------------- /Core/I18n/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/I18n/Provider.php -------------------------------------------------------------------------------- /Core/I18n/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/I18n/Translator.php -------------------------------------------------------------------------------- /Core/Issues/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Issues/Issue.php -------------------------------------------------------------------------------- /Core/Issues/IssuesProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Issues/IssuesProvider.php -------------------------------------------------------------------------------- /Core/Issues/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Issues/Manager.php -------------------------------------------------------------------------------- /Core/Log/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Log/Logger.php -------------------------------------------------------------------------------- /Core/Log/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Log/Module.php -------------------------------------------------------------------------------- /Core/Log/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Log/Provider.php -------------------------------------------------------------------------------- /Core/Luid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Luid.php -------------------------------------------------------------------------------- /Core/Markdown/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Markdown/Markdown.php -------------------------------------------------------------------------------- /Core/Matrix/BlockListSync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Matrix/BlockListSync.php -------------------------------------------------------------------------------- /Core/Matrix/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Matrix/Client.php -------------------------------------------------------------------------------- /Core/Matrix/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Matrix/Controller.php -------------------------------------------------------------------------------- /Core/Matrix/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Matrix/Events.php -------------------------------------------------------------------------------- /Core/Matrix/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Matrix/Manager.php -------------------------------------------------------------------------------- /Core/Matrix/MatrixAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Matrix/MatrixAccount.php -------------------------------------------------------------------------------- /Core/Matrix/MatrixConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Matrix/MatrixConfig.php -------------------------------------------------------------------------------- /Core/Matrix/MatrixRoom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Matrix/MatrixRoom.php -------------------------------------------------------------------------------- /Core/Matrix/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Matrix/Module.php -------------------------------------------------------------------------------- /Core/Matrix/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Matrix/Provider.php -------------------------------------------------------------------------------- /Core/Matrix/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Matrix/Routes.php -------------------------------------------------------------------------------- /Core/Media/Albums.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Albums.php -------------------------------------------------------------------------------- /Core/Media/Assets/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Assets/Image.php -------------------------------------------------------------------------------- /Core/Media/Assets/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Assets/Video.php -------------------------------------------------------------------------------- /Core/Media/AssetsFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/AssetsFactory.php -------------------------------------------------------------------------------- /Core/Media/Audio/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Audio/Events.php -------------------------------------------------------------------------------- /Core/Media/Audio/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Audio/Module.php -------------------------------------------------------------------------------- /Core/Media/Audio/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Audio/Provider.php -------------------------------------------------------------------------------- /Core/Media/Audio/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Audio/Routes.php -------------------------------------------------------------------------------- /Core/Media/BlurHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/BlurHash.php -------------------------------------------------------------------------------- /Core/Media/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Events.php -------------------------------------------------------------------------------- /Core/Media/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Factory.php -------------------------------------------------------------------------------- /Core/Media/Feeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Feeds.php -------------------------------------------------------------------------------- /Core/Media/Image/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Image/Manager.php -------------------------------------------------------------------------------- /Core/Media/Imagick/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Imagick/Manager.php -------------------------------------------------------------------------------- /Core/Media/Imagick/Resize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Imagick/Resize.php -------------------------------------------------------------------------------- /Core/Media/MediaProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/MediaProvider.php -------------------------------------------------------------------------------- /Core/Media/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Module.php -------------------------------------------------------------------------------- /Core/Media/Proxy/Download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Proxy/Download.php -------------------------------------------------------------------------------- /Core/Media/Proxy/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Proxy/Module.php -------------------------------------------------------------------------------- /Core/Media/Proxy/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Proxy/Provider.php -------------------------------------------------------------------------------- /Core/Media/Proxy/Resize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Proxy/Resize.php -------------------------------------------------------------------------------- /Core/Media/Proxy/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Proxy/Routes.php -------------------------------------------------------------------------------- /Core/Media/Recommended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Recommended.php -------------------------------------------------------------------------------- /Core/Media/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Repository.php -------------------------------------------------------------------------------- /Core/Media/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Routes.php -------------------------------------------------------------------------------- /Core/Media/SEO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/SEO.php -------------------------------------------------------------------------------- /Core/Media/Services/AWS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Services/AWS.php -------------------------------------------------------------------------------- /Core/Media/Thumbnails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Thumbnails.php -------------------------------------------------------------------------------- /Core/Media/Video/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Video/Manager.php -------------------------------------------------------------------------------- /Core/Media/Video/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Media/Video/Source.php -------------------------------------------------------------------------------- /Core/Messenger/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Messenger/Events.php -------------------------------------------------------------------------------- /Core/Messenger/Keystore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Messenger/Keystore.php -------------------------------------------------------------------------------- /Core/Messenger/Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Messenger/Messages.php -------------------------------------------------------------------------------- /Core/Metrics/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Metrics/Controller.php -------------------------------------------------------------------------------- /Core/Metrics/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Metrics/Manager.php -------------------------------------------------------------------------------- /Core/Metrics/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Metrics/Module.php -------------------------------------------------------------------------------- /Core/Metrics/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Metrics/Provider.php -------------------------------------------------------------------------------- /Core/Metrics/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Metrics/Routes.php -------------------------------------------------------------------------------- /Core/Minds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Minds.php -------------------------------------------------------------------------------- /Core/Monetization/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Monetization/Admin.php -------------------------------------------------------------------------------- /Core/Monetization/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Monetization/Manager.php -------------------------------------------------------------------------------- /Core/Monetization/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Monetization/Module.php -------------------------------------------------------------------------------- /Core/Monetization/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Monetization/Users.php -------------------------------------------------------------------------------- /Core/MultiTenant/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/MultiTenant/Module.php -------------------------------------------------------------------------------- /Core/MultiTenant/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/MultiTenant/Provider.php -------------------------------------------------------------------------------- /Core/MultiTenant/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/MultiTenant/Routes.php -------------------------------------------------------------------------------- /Core/Nostr/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Nostr/Controller.php -------------------------------------------------------------------------------- /Core/Nostr/EntityExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Nostr/EntityExporter.php -------------------------------------------------------------------------------- /Core/Nostr/EntityImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Nostr/EntityImporter.php -------------------------------------------------------------------------------- /Core/Nostr/Keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Nostr/Keys.php -------------------------------------------------------------------------------- /Core/Nostr/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Nostr/Manager.php -------------------------------------------------------------------------------- /Core/Nostr/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Nostr/Module.php -------------------------------------------------------------------------------- /Core/Nostr/NostrEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Nostr/NostrEvent.php -------------------------------------------------------------------------------- /Core/Nostr/PocSync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Nostr/PocSync.php -------------------------------------------------------------------------------- /Core/Nostr/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Nostr/Provider.php -------------------------------------------------------------------------------- /Core/Nostr/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Nostr/Repository.php -------------------------------------------------------------------------------- /Core/Nostr/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Nostr/Routes.php -------------------------------------------------------------------------------- /Core/Nostr/table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Nostr/table.sql -------------------------------------------------------------------------------- /Core/Notification/Counters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Notification/Counters.php -------------------------------------------------------------------------------- /Core/Notification/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Notification/Entity.php -------------------------------------------------------------------------------- /Core/Notification/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Notification/Events.php -------------------------------------------------------------------------------- /Core/Notification/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Notification/Manager.php -------------------------------------------------------------------------------- /Core/Notifications/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Notifications/Manager.php -------------------------------------------------------------------------------- /Core/Notifications/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Notifications/Module.php -------------------------------------------------------------------------------- /Core/Notifications/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Notifications/Routes.php -------------------------------------------------------------------------------- /Core/OAuth/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/OAuth/Controller.php -------------------------------------------------------------------------------- /Core/OAuth/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/OAuth/Module.php -------------------------------------------------------------------------------- /Core/OAuth/NonceHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/OAuth/NonceHelper.php -------------------------------------------------------------------------------- /Core/OAuth/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/OAuth/Provider.php -------------------------------------------------------------------------------- /Core/OAuth/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/OAuth/Routes.php -------------------------------------------------------------------------------- /Core/OEmbed/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/OEmbed/Controller.php -------------------------------------------------------------------------------- /Core/OEmbed/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/OEmbed/Module.php -------------------------------------------------------------------------------- /Core/OEmbed/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/OEmbed/Provider.php -------------------------------------------------------------------------------- /Core/OEmbed/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/OEmbed/Routes.php -------------------------------------------------------------------------------- /Core/Onboarding/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Onboarding/Controller.php -------------------------------------------------------------------------------- /Core/Onboarding/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Onboarding/Manager.php -------------------------------------------------------------------------------- /Core/Onboarding/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Onboarding/Module.php -------------------------------------------------------------------------------- /Core/Onboarding/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Onboarding/Provider.php -------------------------------------------------------------------------------- /Core/Onboarding/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Onboarding/Routes.php -------------------------------------------------------------------------------- /Core/Onboarding/V5/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Onboarding/V5/Manager.php -------------------------------------------------------------------------------- /Core/Onboarding/V5/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Onboarding/V5/Module.php -------------------------------------------------------------------------------- /Core/PWA/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/PWA/Module.php -------------------------------------------------------------------------------- /Core/PWA/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/PWA/Provider.php -------------------------------------------------------------------------------- /Core/PWA/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/PWA/Routes.php -------------------------------------------------------------------------------- /Core/Payments/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/Controller.php -------------------------------------------------------------------------------- /Core/Payments/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/Customer.php -------------------------------------------------------------------------------- /Core/Payments/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/Events.php -------------------------------------------------------------------------------- /Core/Payments/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/Factory.php -------------------------------------------------------------------------------- /Core/Payments/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/Manager.php -------------------------------------------------------------------------------- /Core/Payments/Merchant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/Merchant.php -------------------------------------------------------------------------------- /Core/Payments/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/Module.php -------------------------------------------------------------------------------- /Core/Payments/Plans/Events.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Payments/Plans/Manager.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Payments/Plans/Plan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/Plans/Plan.php -------------------------------------------------------------------------------- /Core/Payments/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/Provider.php -------------------------------------------------------------------------------- /Core/Payments/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/Repository.php -------------------------------------------------------------------------------- /Core/Payments/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/Routes.php -------------------------------------------------------------------------------- /Core/Payments/Sale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/Sale.php -------------------------------------------------------------------------------- /Core/Payments/V2/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/V2/Manager.php -------------------------------------------------------------------------------- /Core/Payments/V2/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/V2/Module.php -------------------------------------------------------------------------------- /Core/Payments/V2/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Payments/V2/Provider.php -------------------------------------------------------------------------------- /Core/Permaweb/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Permaweb/Manager.php -------------------------------------------------------------------------------- /Core/Permaweb/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Permaweb/Module.php -------------------------------------------------------------------------------- /Core/Plus/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Plus/Manager.php -------------------------------------------------------------------------------- /Core/Plus/PlusProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Plus/PlusProvider.php -------------------------------------------------------------------------------- /Core/Plus/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Plus/Subscription.php -------------------------------------------------------------------------------- /Core/Pro/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Pro/Manager.php -------------------------------------------------------------------------------- /Core/Pro/ProProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Pro/ProProvider.php -------------------------------------------------------------------------------- /Core/Pro/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Pro/Repository.php -------------------------------------------------------------------------------- /Core/Pro/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Pro/Settings.php -------------------------------------------------------------------------------- /Core/Provisioner/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Provisioner/Installer.php -------------------------------------------------------------------------------- /Core/Queue/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Queue/Client.php -------------------------------------------------------------------------------- /Core/Queue/LegacyClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Queue/LegacyClient.php -------------------------------------------------------------------------------- /Core/Queue/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Queue/Message.php -------------------------------------------------------------------------------- /Core/Queue/QueueProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Queue/QueueProvider.php -------------------------------------------------------------------------------- /Core/Queue/Runners/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Queue/Runners/Email.php -------------------------------------------------------------------------------- /Core/Queue/Runners/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Queue/Runners/Factory.php -------------------------------------------------------------------------------- /Core/Referrals/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Referrals/Controller.php -------------------------------------------------------------------------------- /Core/Referrals/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Referrals/Manager.php -------------------------------------------------------------------------------- /Core/Referrals/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Referrals/Module.php -------------------------------------------------------------------------------- /Core/Referrals/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Referrals/Provider.php -------------------------------------------------------------------------------- /Core/Referrals/Referral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Referrals/Referral.php -------------------------------------------------------------------------------- /Core/Referrals/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Referrals/Repository.php -------------------------------------------------------------------------------- /Core/Referrals/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Referrals/Routes.php -------------------------------------------------------------------------------- /Core/Register/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Register/Controller.php -------------------------------------------------------------------------------- /Core/Register/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Register/Manager.php -------------------------------------------------------------------------------- /Core/Register/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Register/Module.php -------------------------------------------------------------------------------- /Core/Register/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Register/Provider.php -------------------------------------------------------------------------------- /Core/Register/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Register/Routes.php -------------------------------------------------------------------------------- /Core/Reports/Actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/Actions.php -------------------------------------------------------------------------------- /Core/Reports/Appeals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/Appeals.php -------------------------------------------------------------------------------- /Core/Reports/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/Events.php -------------------------------------------------------------------------------- /Core/Reports/Jury/Decision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/Jury/Decision.php -------------------------------------------------------------------------------- /Core/Reports/Jury/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/Jury/Manager.php -------------------------------------------------------------------------------- /Core/Reports/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/Manager.php -------------------------------------------------------------------------------- /Core/Reports/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/Module.php -------------------------------------------------------------------------------- /Core/Reports/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/Provider.php -------------------------------------------------------------------------------- /Core/Reports/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/Report.php -------------------------------------------------------------------------------- /Core/Reports/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/Repository.php -------------------------------------------------------------------------------- /Core/Reports/Stats/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/Stats/Manager.php -------------------------------------------------------------------------------- /Core/Reports/Summons/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/Summons/Pool.php -------------------------------------------------------------------------------- /Core/Reports/V2/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/V2/Module.php -------------------------------------------------------------------------------- /Core/Reports/V2/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/V2/Provider.php -------------------------------------------------------------------------------- /Core/Reports/mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Reports/mappings.json -------------------------------------------------------------------------------- /Core/Rewards/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Rewards/Controller.php -------------------------------------------------------------------------------- /Core/Rewards/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Rewards/Events.php -------------------------------------------------------------------------------- /Core/Rewards/Join.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Rewards/Join.php -------------------------------------------------------------------------------- /Core/Rewards/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Rewards/Manager.php -------------------------------------------------------------------------------- /Core/Rewards/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Rewards/Module.php -------------------------------------------------------------------------------- /Core/Rewards/Notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Rewards/Notify.php -------------------------------------------------------------------------------- /Core/Rewards/OfacBlacklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Rewards/OfacBlacklist.php -------------------------------------------------------------------------------- /Core/Rewards/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Rewards/Provider.php -------------------------------------------------------------------------------- /Core/Rewards/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Rewards/Repository.php -------------------------------------------------------------------------------- /Core/Rewards/RewardEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Rewards/RewardEntry.php -------------------------------------------------------------------------------- /Core/Rewards/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Rewards/Routes.php -------------------------------------------------------------------------------- /Core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Router.php -------------------------------------------------------------------------------- /Core/Router/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Router/Dispatcher.php -------------------------------------------------------------------------------- /Core/Router/ModuleRoutes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Router/ModuleRoutes.php -------------------------------------------------------------------------------- /Core/Router/PrePsr7/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Router/PrePsr7/Router.php -------------------------------------------------------------------------------- /Core/Router/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Router/Registry.php -------------------------------------------------------------------------------- /Core/Router/RegistryEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Router/RegistryEntry.php -------------------------------------------------------------------------------- /Core/Router/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Router/Route.php -------------------------------------------------------------------------------- /Core/Router/RouterProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Router/RouterProvider.php -------------------------------------------------------------------------------- /Core/SEO/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SEO/Manager.php -------------------------------------------------------------------------------- /Core/SEO/Robots/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SEO/Robots/Module.php -------------------------------------------------------------------------------- /Core/SEO/Robots/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SEO/Robots/Provider.php -------------------------------------------------------------------------------- /Core/SEO/Robots/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SEO/Robots/Routes.php -------------------------------------------------------------------------------- /Core/SEO/Sitemaps/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SEO/Sitemaps/Manager.php -------------------------------------------------------------------------------- /Core/SEO/Sitemaps/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SEO/Sitemaps/Module.php -------------------------------------------------------------------------------- /Core/SEO/Sitemaps/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SEO/Sitemaps/Provider.php -------------------------------------------------------------------------------- /Core/SMS/SMSProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SMS/SMSProvider.php -------------------------------------------------------------------------------- /Core/SMS/Services/SNS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SMS/Services/SNS.php -------------------------------------------------------------------------------- /Core/SMS/Services/Twilio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SMS/Services/Twilio.php -------------------------------------------------------------------------------- /Core/Sandbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Sandbox.php -------------------------------------------------------------------------------- /Core/Search/Documents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Search/Documents.php -------------------------------------------------------------------------------- /Core/Search/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Search/Index.php -------------------------------------------------------------------------------- /Core/Search/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Search/Module.php -------------------------------------------------------------------------------- /Core/Search/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Search/Provider.php -------------------------------------------------------------------------------- /Core/Search/Provisioner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Search/Provisioner.php -------------------------------------------------------------------------------- /Core/Search/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Search/Search.php -------------------------------------------------------------------------------- /Core/Search/Tagcloud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Search/Tagcloud.php -------------------------------------------------------------------------------- /Core/Security/ACL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/ACL.php -------------------------------------------------------------------------------- /Core/Security/ACL/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/ACL/Block.php -------------------------------------------------------------------------------- /Core/Security/Audit/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/Audit/Module.php -------------------------------------------------------------------------------- /Core/Security/Audit/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/Audit/Routes.php -------------------------------------------------------------------------------- /Core/Security/Block/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/Block/Events.php -------------------------------------------------------------------------------- /Core/Security/Block/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/Block/Module.php -------------------------------------------------------------------------------- /Core/Security/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/Captcha.php -------------------------------------------------------------------------------- /Core/Security/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/Events.php -------------------------------------------------------------------------------- /Core/Security/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/Module.php -------------------------------------------------------------------------------- /Core/Security/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/Password.php -------------------------------------------------------------------------------- /Core/Security/Rbac/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/Rbac/Module.php -------------------------------------------------------------------------------- /Core/Security/ReCaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/ReCaptcha.php -------------------------------------------------------------------------------- /Core/Security/SignedUri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/SignedUri.php -------------------------------------------------------------------------------- /Core/Security/Spam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/Spam.php -------------------------------------------------------------------------------- /Core/Security/TOTP/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/TOTP/Manager.php -------------------------------------------------------------------------------- /Core/Security/TOTP/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/TOTP/Module.php -------------------------------------------------------------------------------- /Core/Security/TOTP/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/TOTP/Routes.php -------------------------------------------------------------------------------- /Core/Security/TwoFactor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/TwoFactor.php -------------------------------------------------------------------------------- /Core/Security/Vault/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/Vault/Client.php -------------------------------------------------------------------------------- /Core/Security/Vault/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/Vault/Module.php -------------------------------------------------------------------------------- /Core/Security/XSRF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/XSRF.php -------------------------------------------------------------------------------- /Core/Security/XSS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/XSS.php -------------------------------------------------------------------------------- /Core/Security/XSS/TagsRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Security/XSS/TagsRule.php -------------------------------------------------------------------------------- /Core/SendWyre/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SendWyre/Manager.php -------------------------------------------------------------------------------- /Core/SendWyre/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SendWyre/Module.php -------------------------------------------------------------------------------- /Core/SendWyre/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SendWyre/Provider.php -------------------------------------------------------------------------------- /Core/SendWyre/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SendWyre/Repository.php -------------------------------------------------------------------------------- /Core/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Session.php -------------------------------------------------------------------------------- /Core/Sessions/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Sessions/Manager.php -------------------------------------------------------------------------------- /Core/Sessions/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Sessions/Module.php -------------------------------------------------------------------------------- /Core/Sessions/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Sessions/Repository.php -------------------------------------------------------------------------------- /Core/Sessions/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Sessions/Session.php -------------------------------------------------------------------------------- /Core/Settings/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Settings/Controller.php -------------------------------------------------------------------------------- /Core/Settings/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Settings/Manager.php -------------------------------------------------------------------------------- /Core/Settings/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Settings/Module.php -------------------------------------------------------------------------------- /Core/Settings/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Settings/Provider.php -------------------------------------------------------------------------------- /Core/Settings/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Settings/Repository.php -------------------------------------------------------------------------------- /Core/Settings/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Settings/Routes.php -------------------------------------------------------------------------------- /Core/SocialCompass/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SocialCompass/Manager.php -------------------------------------------------------------------------------- /Core/SocialCompass/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SocialCompass/Module.php -------------------------------------------------------------------------------- /Core/SocialCompass/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/SocialCompass/Routes.php -------------------------------------------------------------------------------- /Core/Sockets/Binary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Sockets/Binary.php -------------------------------------------------------------------------------- /Core/Sockets/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Sockets/Events.php -------------------------------------------------------------------------------- /Core/Sockets/MsgPack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Sockets/MsgPack.php -------------------------------------------------------------------------------- /Core/Steward/AutoReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Steward/AutoReporter.php -------------------------------------------------------------------------------- /Core/Steward/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Steward/Events.php -------------------------------------------------------------------------------- /Core/Steward/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Steward/Module.php -------------------------------------------------------------------------------- /Core/Steward/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Steward/Provider.php -------------------------------------------------------------------------------- /Core/Steward/Reason.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Steward/Reason.php -------------------------------------------------------------------------------- /Core/Steward/ReasonScorer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Steward/ReasonScorer.php -------------------------------------------------------------------------------- /Core/Storage/Quotas/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Storage/Quotas/Module.php -------------------------------------------------------------------------------- /Core/Storage/Services/Disk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Storage/Services/Disk.php -------------------------------------------------------------------------------- /Core/Storage/Services/S3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Storage/Services/S3.php -------------------------------------------------------------------------------- /Core/Strapi/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Strapi/Module.php -------------------------------------------------------------------------------- /Core/Strapi/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Strapi/Provider.php -------------------------------------------------------------------------------- /Core/Subscriptions/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Subscriptions/Manager.php -------------------------------------------------------------------------------- /Core/Subscriptions/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Subscriptions/Module.php -------------------------------------------------------------------------------- /Core/Subscriptions/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Subscriptions/Routes.php -------------------------------------------------------------------------------- /Core/Suggestions/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Suggestions/Manager.php -------------------------------------------------------------------------------- /Core/Suggestions/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Suggestions/Module.php -------------------------------------------------------------------------------- /Core/Suggestions/Pass/Pass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Suggestions/Pass/Pass.php -------------------------------------------------------------------------------- /Core/Suggestions/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Suggestions/Provider.php -------------------------------------------------------------------------------- /Core/Supermind/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Supermind/Controller.php -------------------------------------------------------------------------------- /Core/Supermind/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Supermind/Manager.php -------------------------------------------------------------------------------- /Core/Supermind/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Supermind/Module.php -------------------------------------------------------------------------------- /Core/Supermind/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Supermind/Provider.php -------------------------------------------------------------------------------- /Core/Supermind/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Supermind/Repository.php -------------------------------------------------------------------------------- /Core/Supermind/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Supermind/Routes.php -------------------------------------------------------------------------------- /Core/Torrent/TorrentFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Torrent/TorrentFile.php -------------------------------------------------------------------------------- /Core/Torrent/TorrentMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Torrent/TorrentMeta.php -------------------------------------------------------------------------------- /Core/Translation/Languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Translation/Languages.php -------------------------------------------------------------------------------- /Core/Translation/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Translation/Storage.php -------------------------------------------------------------------------------- /Core/Trending/Maps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Trending/Maps.php -------------------------------------------------------------------------------- /Core/Trending/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Trending/Repository.php -------------------------------------------------------------------------------- /Core/Twitter/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Twitter/Controller.php -------------------------------------------------------------------------------- /Core/Twitter/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Twitter/Manager.php -------------------------------------------------------------------------------- /Core/Twitter/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Twitter/Module.php -------------------------------------------------------------------------------- /Core/Twitter/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Twitter/Provider.php -------------------------------------------------------------------------------- /Core/Twitter/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Twitter/Repository.php -------------------------------------------------------------------------------- /Core/Twitter/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Twitter/Routes.php -------------------------------------------------------------------------------- /Core/Util/BigNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Util/BigNumber.php -------------------------------------------------------------------------------- /Core/Util/CsvExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Util/CsvExporter.php -------------------------------------------------------------------------------- /Core/Util/StringValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Util/StringValidator.php -------------------------------------------------------------------------------- /Core/Util/UUIDGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Util/UUIDGenerator.php -------------------------------------------------------------------------------- /Core/Verification/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Verification/Manager.php -------------------------------------------------------------------------------- /Core/Verification/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Verification/Module.php -------------------------------------------------------------------------------- /Core/Verification/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Verification/Provider.php -------------------------------------------------------------------------------- /Core/Verification/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Verification/Routes.php -------------------------------------------------------------------------------- /Core/VideoChat/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/VideoChat/Manager.php -------------------------------------------------------------------------------- /Core/VideoChat/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/VideoChat/Module.php -------------------------------------------------------------------------------- /Core/VideoChat/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/VideoChat/Provider.php -------------------------------------------------------------------------------- /Core/Votes/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/Controller.php -------------------------------------------------------------------------------- /Core/Votes/Counters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/Counters.php -------------------------------------------------------------------------------- /Core/Votes/Enums/VoteEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/Enums/VoteEnum.php -------------------------------------------------------------------------------- /Core/Votes/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/Events.php -------------------------------------------------------------------------------- /Core/Votes/Indexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/Indexes.php -------------------------------------------------------------------------------- /Core/Votes/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/Manager.php -------------------------------------------------------------------------------- /Core/Votes/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/Module.php -------------------------------------------------------------------------------- /Core/Votes/MySqlRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/MySqlRepository.php -------------------------------------------------------------------------------- /Core/Votes/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/Provider.php -------------------------------------------------------------------------------- /Core/Votes/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/Routes.php -------------------------------------------------------------------------------- /Core/Votes/Vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/Vote.php -------------------------------------------------------------------------------- /Core/Votes/VoteListOpts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/VoteListOpts.php -------------------------------------------------------------------------------- /Core/Votes/VoteOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Votes/VoteOptions.php -------------------------------------------------------------------------------- /Core/Webfinger/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Webfinger/Client.php -------------------------------------------------------------------------------- /Core/Webfinger/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Webfinger/Controller.php -------------------------------------------------------------------------------- /Core/Webfinger/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Webfinger/Module.php -------------------------------------------------------------------------------- /Core/Webfinger/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Webfinger/Provider.php -------------------------------------------------------------------------------- /Core/Webfinger/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Webfinger/Routes.php -------------------------------------------------------------------------------- /Core/Wire/Counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Counter.php -------------------------------------------------------------------------------- /Core/Wire/Delegates/Plus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Delegates/Plus.php -------------------------------------------------------------------------------- /Core/Wire/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Events.php -------------------------------------------------------------------------------- /Core/Wire/Leaderboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Leaderboard.php -------------------------------------------------------------------------------- /Core/Wire/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Manager.php -------------------------------------------------------------------------------- /Core/Wire/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Module.php -------------------------------------------------------------------------------- /Core/Wire/Paywall/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Paywall/Events.php -------------------------------------------------------------------------------- /Core/Wire/Paywall/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Paywall/Manager.php -------------------------------------------------------------------------------- /Core/Wire/Paywall/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Paywall/Module.php -------------------------------------------------------------------------------- /Core/Wire/Paywall/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Paywall/Provider.php -------------------------------------------------------------------------------- /Core/Wire/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Repository.php -------------------------------------------------------------------------------- /Core/Wire/Sums.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Sums.php -------------------------------------------------------------------------------- /Core/Wire/Thresholds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Thresholds.php -------------------------------------------------------------------------------- /Core/Wire/Wire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/Wire.php -------------------------------------------------------------------------------- /Core/Wire/WireProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/Wire/WireProvider.php -------------------------------------------------------------------------------- /Core/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/base.php -------------------------------------------------------------------------------- /Core/encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/encrypt.php -------------------------------------------------------------------------------- /Core/multisite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/multisite.php -------------------------------------------------------------------------------- /Core/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/page.php -------------------------------------------------------------------------------- /Core/token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Core/token.php -------------------------------------------------------------------------------- /Entities/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Activity.php -------------------------------------------------------------------------------- /Entities/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Album.php -------------------------------------------------------------------------------- /Entities/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Audio.php -------------------------------------------------------------------------------- /Entities/Boost/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Boost/Factory.php -------------------------------------------------------------------------------- /Entities/Conversation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Conversation.php -------------------------------------------------------------------------------- /Entities/EntitiesFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/EntitiesFactory.php -------------------------------------------------------------------------------- /Entities/EntitiesProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/EntitiesProvider.php -------------------------------------------------------------------------------- /Entities/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Entity.php -------------------------------------------------------------------------------- /Entities/EntityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/EntityInterface.php -------------------------------------------------------------------------------- /Entities/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Factory.php -------------------------------------------------------------------------------- /Entities/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/File.php -------------------------------------------------------------------------------- /Entities/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Group.php -------------------------------------------------------------------------------- /Entities/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Image.php -------------------------------------------------------------------------------- /Entities/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Message.php -------------------------------------------------------------------------------- /Entities/MindsObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/MindsObject.php -------------------------------------------------------------------------------- /Entities/NormalizedEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/NormalizedEntity.php -------------------------------------------------------------------------------- /Entities/Object/Carousel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Object/Carousel.php -------------------------------------------------------------------------------- /Entities/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Page.php -------------------------------------------------------------------------------- /Entities/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Report.php -------------------------------------------------------------------------------- /Entities/RepositoryEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/RepositoryEntity.php -------------------------------------------------------------------------------- /Entities/Site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Site.php -------------------------------------------------------------------------------- /Entities/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/User.php -------------------------------------------------------------------------------- /Entities/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/UserFactory.php -------------------------------------------------------------------------------- /Entities/ValidationError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/ValidationError.php -------------------------------------------------------------------------------- /Entities/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Video.php -------------------------------------------------------------------------------- /Entities/Wire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Entities/Wire.php -------------------------------------------------------------------------------- /Exceptions/BannedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Exceptions/BannedException.php -------------------------------------------------------------------------------- /Exceptions/CliException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Exceptions/CliException.php -------------------------------------------------------------------------------- /Fs/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Fs/Factory.php -------------------------------------------------------------------------------- /Fs/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Fs/Routes.php -------------------------------------------------------------------------------- /Helpers/Analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Analytics.php -------------------------------------------------------------------------------- /Helpers/Counters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Counters.php -------------------------------------------------------------------------------- /Helpers/Cql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Cql.php -------------------------------------------------------------------------------- /Helpers/Entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Entities.php -------------------------------------------------------------------------------- /Helpers/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Env.php -------------------------------------------------------------------------------- /Helpers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Export.php -------------------------------------------------------------------------------- /Helpers/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/File.php -------------------------------------------------------------------------------- /Helpers/Flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Flags.php -------------------------------------------------------------------------------- /Helpers/FormatPhoneNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/FormatPhoneNumber.php -------------------------------------------------------------------------------- /Helpers/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Image.php -------------------------------------------------------------------------------- /Helpers/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Log.php -------------------------------------------------------------------------------- /Helpers/MagicAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/MagicAttributes.php -------------------------------------------------------------------------------- /Helpers/OpenSSL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/OpenSSL.php -------------------------------------------------------------------------------- /Helpers/RequestMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/RequestMetrics.php -------------------------------------------------------------------------------- /Helpers/Subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Subscriptions.php -------------------------------------------------------------------------------- /Helpers/SuggestCompleter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/SuggestCompleter.php -------------------------------------------------------------------------------- /Helpers/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Text.php -------------------------------------------------------------------------------- /Helpers/Unknown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Unknown.php -------------------------------------------------------------------------------- /Helpers/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Upload.php -------------------------------------------------------------------------------- /Helpers/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Url.php -------------------------------------------------------------------------------- /Helpers/Urn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Urn.php -------------------------------------------------------------------------------- /Helpers/UserValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/UserValidator.php -------------------------------------------------------------------------------- /Helpers/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Helpers/Validation.php -------------------------------------------------------------------------------- /Integrations/Seco/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Integrations/Seco/Module.php -------------------------------------------------------------------------------- /Integrations/Seco/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Integrations/Seco/Provider.php -------------------------------------------------------------------------------- /Integrations/Seco/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Integrations/Seco/Routes.php -------------------------------------------------------------------------------- /Interfaces/AnalyticsMetric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Interfaces/AnalyticsMetric.php -------------------------------------------------------------------------------- /Interfaces/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Interfaces/Api.php -------------------------------------------------------------------------------- /Interfaces/ApiAdminPam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Interfaces/ApiAdminPam.php -------------------------------------------------------------------------------- /Interfaces/ApiIgnorePam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Interfaces/ApiIgnorePam.php -------------------------------------------------------------------------------- /Interfaces/Flaggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Interfaces/Flaggable.php -------------------------------------------------------------------------------- /Interfaces/Fs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Interfaces/Fs.php -------------------------------------------------------------------------------- /Interfaces/ModuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Interfaces/ModuleInterface.php -------------------------------------------------------------------------------- /Interfaces/SenderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Interfaces/SenderInterface.php -------------------------------------------------------------------------------- /Interfaces/XSSRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Interfaces/XSSRule.php -------------------------------------------------------------------------------- /Interfaces/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Interfaces/page.php -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/LICENSE -------------------------------------------------------------------------------- /OK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/README.md -------------------------------------------------------------------------------- /Spec/Common/AccessSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Common/AccessSpec.php -------------------------------------------------------------------------------- /Spec/Common/CookieSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Common/CookieSpec.php -------------------------------------------------------------------------------- /Spec/Common/IpAddressSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Common/IpAddressSpec.php -------------------------------------------------------------------------------- /Spec/Common/RegexSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Common/RegexSpec.php -------------------------------------------------------------------------------- /Spec/Common/spec-priv-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Common/spec-priv-key.pem -------------------------------------------------------------------------------- /Spec/Core/Blogs/BlogSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Blogs/BlogSpec.php -------------------------------------------------------------------------------- /Spec/Core/Blogs/HeaderSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Blogs/HeaderSpec.php -------------------------------------------------------------------------------- /Spec/Core/Channels/BanSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Channels/BanSpec.php -------------------------------------------------------------------------------- /Spec/Core/DID/ManagerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/DID/ManagerSpec.php -------------------------------------------------------------------------------- /Spec/Core/Data/CallSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Data/CallSpec.php -------------------------------------------------------------------------------- /Spec/Core/Di/BindingSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Di/BindingSpec.php -------------------------------------------------------------------------------- /Spec/Core/Di/DiSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Di/DiSpec.php -------------------------------------------------------------------------------- /Spec/Core/Di/ProviderSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Di/ProviderSpec.php -------------------------------------------------------------------------------- /Spec/Core/Email/MailerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Email/MailerSpec.php -------------------------------------------------------------------------------- /Spec/Core/Faq/AnswerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Faq/AnswerSpec.php -------------------------------------------------------------------------------- /Spec/Core/Faq/CategorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Faq/CategorySpec.php -------------------------------------------------------------------------------- /Spec/Core/Faq/ManagerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Faq/ManagerSpec.php -------------------------------------------------------------------------------- /Spec/Core/Faq/QuestionSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Faq/QuestionSpec.php -------------------------------------------------------------------------------- /Spec/Core/Groups/FeedsSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Groups/FeedsSpec.php -------------------------------------------------------------------------------- /Spec/Core/GuidSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/GuidSpec.php -------------------------------------------------------------------------------- /Spec/Core/I18n/ManagerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/I18n/ManagerSpec.php -------------------------------------------------------------------------------- /Spec/Core/LuidSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/LuidSpec.php -------------------------------------------------------------------------------- /Spec/Core/MindsSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/MindsSpec.php -------------------------------------------------------------------------------- /Spec/Core/Nostr/KeysSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Nostr/KeysSpec.php -------------------------------------------------------------------------------- /Spec/Core/Plus/ManagerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Plus/ManagerSpec.php -------------------------------------------------------------------------------- /Spec/Core/Pro/ManagerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Pro/ManagerSpec.php -------------------------------------------------------------------------------- /Spec/Core/Pro/SettingsSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Pro/SettingsSpec.php -------------------------------------------------------------------------------- /Spec/Core/Rewards/JoinSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Rewards/JoinSpec.php -------------------------------------------------------------------------------- /Spec/Core/Router/RouteSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Router/RouteSpec.php -------------------------------------------------------------------------------- /Spec/Core/RouterSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/RouterSpec.php -------------------------------------------------------------------------------- /Spec/Core/SEO/ManagerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/SEO/ManagerSpec.php -------------------------------------------------------------------------------- /Spec/Core/Search/IndexSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Search/IndexSpec.php -------------------------------------------------------------------------------- /Spec/Core/Security/ACLSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Security/ACLSpec.php -------------------------------------------------------------------------------- /Spec/Core/Security/Vault/jwt.txt: -------------------------------------------------------------------------------- 1 | test-jwt-token -------------------------------------------------------------------------------- /Spec/Core/Security/XSSSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Security/XSSSpec.php -------------------------------------------------------------------------------- /Spec/Core/Wire/ManagerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Wire/ManagerSpec.php -------------------------------------------------------------------------------- /Spec/Core/Wire/SumsSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Core/Wire/SumsSpec.php -------------------------------------------------------------------------------- /Spec/Entities/ActivitySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Entities/ActivitySpec.php -------------------------------------------------------------------------------- /Spec/Entities/PageSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Entities/PageSpec.php -------------------------------------------------------------------------------- /Spec/Entities/UserSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Entities/UserSpec.php -------------------------------------------------------------------------------- /Spec/Helpers/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Helpers/.env -------------------------------------------------------------------------------- /Spec/Helpers/EntitiesSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Helpers/EntitiesSpec.php -------------------------------------------------------------------------------- /Spec/Helpers/EnvSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Helpers/EnvSpec.php -------------------------------------------------------------------------------- /Spec/Helpers/TextSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Helpers/TextSpec.php -------------------------------------------------------------------------------- /Spec/Helpers/UrlSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Helpers/UrlSpec.php -------------------------------------------------------------------------------- /Spec/Mocks/Cassandra/Rows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Mocks/Cassandra/Rows.php -------------------------------------------------------------------------------- /Spec/Mocks/Cassandra/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Mocks/Cassandra/Value.php -------------------------------------------------------------------------------- /Spec/Mocks/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/Mocks/Redis.php -------------------------------------------------------------------------------- /Spec/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/bootstrap.php -------------------------------------------------------------------------------- /Spec/mocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/mocks.php -------------------------------------------------------------------------------- /Spec/php-test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/php-test.ini -------------------------------------------------------------------------------- /Spec/pulsar-mocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Spec/pulsar-mocks.php -------------------------------------------------------------------------------- /Traits/CurrentUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Traits/CurrentUser.php -------------------------------------------------------------------------------- /Traits/DirtyChecking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Traits/DirtyChecking.php -------------------------------------------------------------------------------- /Traits/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Traits/Entity.php -------------------------------------------------------------------------------- /Traits/Exportable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Traits/Exportable.php -------------------------------------------------------------------------------- /Traits/HttpMethodsInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Traits/HttpMethodsInput.php -------------------------------------------------------------------------------- /Traits/Interval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Traits/Interval.php -------------------------------------------------------------------------------- /Traits/MagicAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Traits/MagicAttributes.php -------------------------------------------------------------------------------- /Traits/RandomGenerators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Traits/RandomGenerators.php -------------------------------------------------------------------------------- /Traits/Snapshotable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/Traits/Snapshotable.php -------------------------------------------------------------------------------- /annotatedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/annotatedImage.png -------------------------------------------------------------------------------- /classes/CallException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/CallException.php -------------------------------------------------------------------------------- /classes/ClassException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/ClassException.php -------------------------------------------------------------------------------- /classes/ElggData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/ElggData.php -------------------------------------------------------------------------------- /classes/ElggDiskFilestore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/ElggDiskFilestore.php -------------------------------------------------------------------------------- /classes/ElggEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/ElggEntity.php -------------------------------------------------------------------------------- /classes/ElggFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/ElggFile.php -------------------------------------------------------------------------------- /classes/ElggFilestore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/ElggFilestore.php -------------------------------------------------------------------------------- /classes/ElggObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/ElggObject.php -------------------------------------------------------------------------------- /classes/ElggSite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/ElggSite.php -------------------------------------------------------------------------------- /classes/ElggUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/ElggUser.php -------------------------------------------------------------------------------- /classes/Exportable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/Exportable.php -------------------------------------------------------------------------------- /classes/GUID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/GUID.php -------------------------------------------------------------------------------- /classes/IOException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/IOException.php -------------------------------------------------------------------------------- /classes/SecurityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/classes/SecurityException.php -------------------------------------------------------------------------------- /cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/cli.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/composer.lock -------------------------------------------------------------------------------- /containers/php-coverage/apcu.ini: -------------------------------------------------------------------------------- 1 | extension=apcu.so 2 | apc.enabled=1 -------------------------------------------------------------------------------- /containers/php-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php-fpm/Dockerfile -------------------------------------------------------------------------------- /containers/php-fpm/apcu.ini: -------------------------------------------------------------------------------- 1 | extension=apcu.so 2 | apc.enabled=1 -------------------------------------------------------------------------------- /containers/php-fpm/opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php-fpm/opcache.ini -------------------------------------------------------------------------------- /containers/php-fpm/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php-fpm/php.ini -------------------------------------------------------------------------------- /containers/php-fpm/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php-fpm/xdebug.ini -------------------------------------------------------------------------------- /containers/php-guid/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php-guid/Dockerfile -------------------------------------------------------------------------------- /containers/php-guid/guid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php-guid/guid.conf -------------------------------------------------------------------------------- /containers/php-rr/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php-rr/Dockerfile -------------------------------------------------------------------------------- /containers/php-rr/apcu.ini: -------------------------------------------------------------------------------- 1 | extension=apcu.so 2 | apc.enabled=1 -------------------------------------------------------------------------------- /containers/php-rr/opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php-rr/opcache.ini -------------------------------------------------------------------------------- /containers/php-rr/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php-rr/php.ini -------------------------------------------------------------------------------- /containers/php-rr/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php-rr/xdebug.ini -------------------------------------------------------------------------------- /containers/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php/Dockerfile -------------------------------------------------------------------------------- /containers/php/opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php/opcache.ini -------------------------------------------------------------------------------- /containers/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/php/php.ini -------------------------------------------------------------------------------- /containers/php/pulsar.ini: -------------------------------------------------------------------------------- 1 | extension=pulsar.so -------------------------------------------------------------------------------- /containers/phpspec/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/phpspec/Dockerfile -------------------------------------------------------------------------------- /containers/phpspec/phpspec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/containers/phpspec/phpspec.sh -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/index.php -------------------------------------------------------------------------------- /integration_tests/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/integration_tests/.env.local -------------------------------------------------------------------------------- /integration_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/integration_tests/README.md -------------------------------------------------------------------------------- /integration_tests/tests/Support/Data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/elgglib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/lib/elgglib.php -------------------------------------------------------------------------------- /lib/entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/lib/entities.php -------------------------------------------------------------------------------- /lib/input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/lib/input.php -------------------------------------------------------------------------------- /lib/mb_wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/lib/mb_wrapper.php -------------------------------------------------------------------------------- /lib/sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/lib/sessions.php -------------------------------------------------------------------------------- /lib/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/lib/users.php -------------------------------------------------------------------------------- /minds_engine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/minds_engine.yaml -------------------------------------------------------------------------------- /openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/openapi.yaml -------------------------------------------------------------------------------- /phpspec-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/phpspec-coverage.yml -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/phpspec.yml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/phpstan.neon -------------------------------------------------------------------------------- /ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/ruleset.xml -------------------------------------------------------------------------------- /settings.example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/settings.example.php -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/settings.json -------------------------------------------------------------------------------- /start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/start.php -------------------------------------------------------------------------------- /start.rr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/start.rr.php -------------------------------------------------------------------------------- /tools/setup-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/tools/setup-dev.sh -------------------------------------------------------------------------------- /tools/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/tools/setup.sh -------------------------------------------------------------------------------- /translations/messages.af.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.af.xliff -------------------------------------------------------------------------------- /translations/messages.ar.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.ar.xliff -------------------------------------------------------------------------------- /translations/messages.ca.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.ca.xliff -------------------------------------------------------------------------------- /translations/messages.cs.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.cs.xliff -------------------------------------------------------------------------------- /translations/messages.da.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.da.xliff -------------------------------------------------------------------------------- /translations/messages.de.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.de.xliff -------------------------------------------------------------------------------- /translations/messages.el.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.el.xliff -------------------------------------------------------------------------------- /translations/messages.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.en.xliff -------------------------------------------------------------------------------- /translations/messages.es.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.es.xliff -------------------------------------------------------------------------------- /translations/messages.fi.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.fi.xliff -------------------------------------------------------------------------------- /translations/messages.fr.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.fr.xliff -------------------------------------------------------------------------------- /translations/messages.he.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.he.xliff -------------------------------------------------------------------------------- /translations/messages.hu.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.hu.xliff -------------------------------------------------------------------------------- /translations/messages.it.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.it.xliff -------------------------------------------------------------------------------- /translations/messages.ja.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.ja.xliff -------------------------------------------------------------------------------- /translations/messages.ko.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.ko.xliff -------------------------------------------------------------------------------- /translations/messages.nl.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.nl.xliff -------------------------------------------------------------------------------- /translations/messages.no.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.no.xliff -------------------------------------------------------------------------------- /translations/messages.pl.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.pl.xliff -------------------------------------------------------------------------------- /translations/messages.pt.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.pt.xliff -------------------------------------------------------------------------------- /translations/messages.ro.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.ro.xliff -------------------------------------------------------------------------------- /translations/messages.ru.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.ru.xliff -------------------------------------------------------------------------------- /translations/messages.sr.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.sr.xliff -------------------------------------------------------------------------------- /translations/messages.sv.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.sv.xliff -------------------------------------------------------------------------------- /translations/messages.th.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.th.xliff -------------------------------------------------------------------------------- /translations/messages.tr.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.tr.xliff -------------------------------------------------------------------------------- /translations/messages.uk.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.uk.xliff -------------------------------------------------------------------------------- /translations/messages.vi.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.vi.xliff -------------------------------------------------------------------------------- /translations/messages.zh.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/translations/messages.zh.xliff -------------------------------------------------------------------------------- /welcome_complete.html : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/engine/HEAD/welcome_complete.html  --------------------------------------------------------------------------------