├── .config ├── .php-cs-fixer.dist.php └── rector.php ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── phpcpd.yml │ ├── phpcsfixer.yml │ ├── phpunit.yml │ └── rector.yml ├── .gitignore ├── .nvmrc ├── .postcssrc ├── LICENSE ├── README.md ├── _docs ├── alerts.md ├── discussions.md ├── emails.md ├── filesystems.md ├── images.md ├── index.md ├── notifications.md ├── policies.md ├── start.md ├── themes.md ├── trust_levels.md └── users.md ├── app ├── .htaccess ├── AdminRoutes.php ├── Cells │ ├── ActionBarCell.php │ ├── CategoryListCell.php │ ├── Moderation │ │ ├── SubMenuCell.php │ │ └── sub_menu_cell.php │ ├── MuteThreadCell.php │ ├── action_bar_cell.php │ ├── category_list_cell.php │ └── mute_thread_cell.php ├── Commands │ ├── AccountsDelete.php │ ├── AccountsDeleteReminder.php │ ├── CleanupImages.php │ ├── DailyModerationSummary.php │ ├── SetTrustLevels.php │ └── UpdateVisits.php ├── Common.php ├── Concerns │ ├── HasAuthorsAndEditors.php │ ├── HasImages.php │ ├── HasReactions.php │ ├── HasStats.php │ ├── HasThreadsAndPosts.php │ ├── ImpactsCategoryCounts.php │ ├── ImpactsUserActivity.php │ ├── RendersContent.php │ ├── RestoreEntry.php │ ├── Sluggable.php │ └── ThemeRenderer.php ├── Config │ ├── App.php │ ├── Auth.php │ ├── AuthGroups.php │ ├── AuthToken.php │ ├── Autoload.php │ ├── Boot │ │ ├── development.php │ │ ├── production.php │ │ └── testing.php │ ├── CURLRequest.php │ ├── Cache.php │ ├── Constants.php │ ├── ContentSecurityPolicy.php │ ├── Cookie.php │ ├── Cors.php │ ├── Database.php │ ├── DocTypes.php │ ├── Email.php │ ├── Encryption.php │ ├── Events.php │ ├── Exceptions.php │ ├── Feature.php │ ├── Filesystems.php │ ├── Filters.php │ ├── ForeignCharacters.php │ ├── Format.php │ ├── Forum.php │ ├── Generators.php │ ├── Honeypot.php │ ├── Htmx.php │ ├── ImageUpload.php │ ├── Images.php │ ├── Kint.php │ ├── Logger.php │ ├── Migrations.php │ ├── Mimes.php │ ├── Modules.php │ ├── Optimize.php │ ├── Pager.php │ ├── Paths.php │ ├── Publisher.php │ ├── Queue.php │ ├── Routes.php │ ├── Routing.php │ ├── Security.php │ ├── Services.php │ ├── Session.php │ ├── SignedUrl.php │ ├── Tasks.php │ ├── Toolbar.php │ ├── TrustLevels.php │ ├── UserAgents.php │ ├── Users.php │ ├── Validation.php │ └── View.php ├── Controllers │ ├── Account │ │ ├── AccountController.php │ │ └── SecurityController.php │ ├── ActionsController.php │ ├── Admin │ │ ├── DashboardController.php │ │ └── Settings │ │ │ ├── TrustLevelsController.php │ │ │ └── UsersController.php │ ├── AdminController.php │ ├── Auth │ │ ├── ActionController.php │ │ ├── LoginController.php │ │ ├── MagicLinkController.php │ │ └── RegisterController.php │ ├── BaseController.php │ ├── Discussions │ │ ├── DiscussionController.php │ │ ├── ImageController.php │ │ ├── PostController.php │ │ ├── ReactionController.php │ │ ├── ReportController.php │ │ └── ThreadController.php │ ├── ErrorController.php │ ├── HelpController.php │ ├── Home.php │ ├── LegalController.php │ ├── Members │ │ └── MemberController.php │ └── Moderation │ │ └── ReportsController.php ├── Database │ ├── Migrations │ │ ├── .gitkeep │ │ ├── 2023-02-25-061719_CreateForumTables.php │ │ ├── 2023-08-30-040430_AddHandedToUsers.php │ │ ├── 2023-08-30-152359_AddCountFieldsToUsers.php │ │ ├── 2023-09-22-191657_CreateImageTable.php │ │ ├── 2023-09-23-045715_AdditionalUserFields.php │ │ ├── 2023-10-03-122331_AddNotificationSettingsTable.php │ │ ├── 2023-10-07-152738_AddNotificationMutedTable.php │ │ ├── 2023-10-23-162758_AddUsersDeleteTable.php │ │ ├── 2023-11-18-083816_AddModerationTables.php │ │ ├── 2024-01-12-060647_CreateReactionsTable.php │ │ ├── 2024-02-05-052646_AddTrustLevelsToUsers.php │ │ └── 2024-04-17-042151_CreateUserVisitsTable.php │ └── Seeds │ │ ├── .gitkeep │ │ └── SampleDataSeeder.php ├── Entities │ ├── Category.php │ ├── Image.php │ ├── ModerationIgnored.php │ ├── ModerationLog.php │ ├── ModerationReport.php │ ├── NotificationMuted.php │ ├── NotificationSetting.php │ ├── Post.php │ ├── Tag.php │ ├── Thread.php │ ├── User.php │ └── UserDelete.php ├── Enums │ └── ModerationLogStatus.php ├── Events │ ├── AccountDeletedEvent.php │ └── NewPostEvent.php ├── Filters │ ├── .gitkeep │ └── AlertsFilter.php ├── Helpers │ ├── .gitkeep │ ├── alerts_helper.php │ ├── form_helper.php │ └── number_helper.php ├── Jobs │ └── EmailSimpleMessage.php ├── Language │ ├── .gitkeep │ └── en │ │ ├── Pager.php │ │ └── Validation.php ├── Libraries │ ├── .gitkeep │ ├── Alerts.php │ ├── Authentication │ │ └── Actions │ │ │ ├── Email2FA.php │ │ │ └── TwoFactorAuthEmail.php │ ├── CacheUtils.php │ ├── CountryHelper.php │ ├── Policies │ │ ├── Policy.php │ │ └── PolicyInterface.php │ ├── Storage.php │ ├── TableHelper.php │ ├── TextFormatter.php │ ├── Theme.php │ ├── TrustLevels │ │ └── Assigner.php │ ├── View.php │ └── Vite.php ├── Managers │ └── CategoryManager.php ├── Models │ ├── .gitkeep │ ├── CategoryModel.php │ ├── Factories │ │ ├── CategoryFactory.php │ │ ├── ImageFactory.php │ │ ├── ModerationReportFactory.php │ │ ├── NotificationSettingFactory.php │ │ ├── PostFactory.php │ │ ├── ThreadFactory.php │ │ └── UserFactory.php │ ├── GroupModel.php │ ├── ImageModel.php │ ├── ModerationIgnoredModel.php │ ├── ModerationLogModel.php │ ├── ModerationReportModel.php │ ├── NotificationMutedModel.php │ ├── NotificationSettingModel.php │ ├── PostModel.php │ ├── ReactionModel.php │ ├── ThreadModel.php │ ├── UserDeleteModel.php │ └── UserModel.php ├── Policies │ ├── ContentPolicy.php │ ├── PostPolicy.php │ ├── ThreadPolicy.php │ └── UserPolicy.php ├── Routes.php ├── ThirdParty │ └── .gitkeep ├── Validation │ └── DiscussionRules.php ├── Views │ ├── _alerts │ │ ├── alerts.php │ │ ├── container.php │ │ ├── inline.php │ │ └── session.php │ ├── _emails │ │ ├── account_delete_reminder.php │ │ ├── account_delete_scheduled.php │ │ ├── account_deleted.php │ │ ├── daily_moderation_summary.php │ │ └── email_post_notification.php │ ├── _privacy.php │ ├── _terms.php │ ├── admin │ │ ├── dashboard.php │ │ └── settings │ │ │ ├── _trust_levels_form.php │ │ │ ├── _users_form.php │ │ │ ├── trust_levels.php │ │ │ └── users.php │ ├── auth │ │ ├── Email │ │ │ ├── email_2fa_email.php │ │ │ ├── email_activate_email.php │ │ │ └── magic_link_email.php │ │ ├── email_2fa_show.php │ │ ├── email_2fa_verify.php │ │ ├── email_activate_show.php │ │ ├── layout.php │ │ ├── login.php │ │ ├── magic_link_form.php │ │ ├── magic_link_message.php │ │ └── register.php │ ├── components │ │ ├── password_input.php │ │ ├── validation_list.php │ │ └── validation_single.php │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ │ └── html │ │ │ ├── debug.css │ │ │ ├── debug.js │ │ │ ├── error_400.php │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ ├── icons │ │ ├── bell-slash.php │ │ ├── bell.php │ │ ├── chat-bubble.php │ │ ├── chat-bubbles.php │ │ ├── check-badge-solid.php │ │ ├── check-badge.php │ │ ├── eye-slash.php │ │ ├── eye.php │ │ ├── flag.php │ │ ├── gear.php │ │ ├── heart.php │ │ ├── heart_solid.php │ │ ├── pencil.php │ │ ├── reply.php │ │ ├── shield.php │ │ └── trash.php │ ├── moderation │ │ └── reports │ │ │ ├── _sidebar.php │ │ │ ├── list.php │ │ │ └── logs.php │ ├── pager │ │ ├── default_full.php │ │ ├── default_head.php │ │ └── default_simple.php │ └── users │ │ └── _avatar.php └── index.html ├── composer.json ├── composer.lock ├── env.example ├── help ├── 1_user-account │ ├── registering-account.md │ └── removing-account.md └── sample │ └── sample-file.md ├── package.json ├── phpunit.xml.dist ├── postcss.config.js ├── preload.php ├── public ├── .htaccess ├── css │ └── .gitkeep ├── favicon.ico ├── index.php ├── js │ └── .gitkeep └── robots.txt ├── spark ├── tailwind.config.js ├── tests ├── Cells │ └── ActionBarTest.php ├── Controllers │ ├── AccountControllerTest.php │ ├── ActionControllerTest.php │ ├── Admin │ │ ├── DashboardTest.php │ │ ├── TrustLevelsSettingsTest.php │ │ └── UserSettingsTest.php │ ├── DiscussionControllerTest.php │ ├── HelpControllerTest.php │ ├── ImageControllerTest.php │ ├── MemberControllerTest.php │ ├── Moderation │ │ └── ReportsControllerTest.php │ ├── PostControllerTest.php │ ├── ReactionControllerTest.php │ ├── ReportControllerTest.php │ ├── SecurityControllerTest.php │ └── ThreadControllerTest.php ├── Entities │ └── UserTest.php ├── Events │ ├── AccountDeleteEventTest.php │ └── NewPostEventTest.php ├── Helpers │ └── NumberHelperTest.php ├── Libraries │ ├── AlertsTest.php │ └── TrustLevels │ │ ├── AssignerTest.php │ │ ├── SetTrustLevelsTest.php │ │ └── UserVisitsTest.php ├── Policies │ ├── PolicyTest.php │ ├── PostPolicyTest.php │ └── ThreadPolicyTest.php ├── README.md └── _support │ ├── Concerns │ └── SupportsTrustLevels.php │ ├── Database │ └── Seeds │ │ └── TestDataSeeder.php │ ├── Images │ └── ci-logo.jpeg │ ├── Policies │ └── TestPolicy.php │ └── TestCase.php ├── themes ├── admin │ ├── _footer.php │ ├── _sidebar.php │ ├── _top_nav.php │ ├── css │ │ └── admin.scss │ ├── js │ │ ├── admin.js │ │ ├── components │ │ │ ├── alerts.js │ │ │ └── themeSwitch.js │ │ └── htmx.js │ └── master.php └── default │ ├── _app_nav.php │ ├── _footer.php │ ├── account │ ├── _header.php │ ├── _nav.php │ ├── _notifications.php │ ├── _post-head.php │ ├── _post.php │ ├── _profile.php │ ├── _sidebar.php │ ├── _thread.php │ ├── index.php │ ├── notifications.php │ ├── posts.php │ ├── profile.php │ ├── security.php │ ├── security │ │ ├── _change_password.php │ │ ├── _delete.php │ │ ├── _logins.php │ │ └── _two_factor_auth_email.php │ └── threads.php │ ├── auth.php │ ├── css │ └── app.scss │ ├── discussion_layout.php │ ├── discussions │ ├── _list_item.php │ ├── _list_items.php │ ├── _reactions.php │ ├── _sidebar.php │ ├── _signature.php │ ├── _thread_items.php │ ├── categories │ │ ├── _thread.php │ │ └── get.php │ ├── category.php │ ├── create.php │ ├── list.php │ ├── posts │ │ ├── _create.php │ │ ├── _edit.php │ │ ├── _post.php │ │ ├── _post_preview.php │ │ └── _post_with_replies.php │ ├── report │ │ ├── modal.php │ │ └── modal_content.php │ ├── tag.php │ ├── tags │ │ └── _thread.php │ ├── thread.php │ └── threads │ │ ├── _edit.php │ │ ├── _thread.php │ │ └── _thread_preview.php │ ├── help │ ├── _header.php │ ├── _index.php │ ├── _search_results.php │ ├── _sidebar.php │ ├── index.php │ └── show.php │ ├── js │ ├── app.js │ ├── components │ │ ├── alerts.js │ │ ├── dateRangePicker.js │ │ ├── markdownEditor.js │ │ ├── tags.js │ │ └── themeSwitch.js │ ├── events.js │ └── htmx.js │ ├── master.php │ ├── members │ └── list.php │ ├── privacy.php │ └── terms.php ├── vite.config.js └── writable ├── .htaccess ├── cache └── index.html ├── debugbar └── .gitkeep ├── logs └── index.html ├── session └── index.html └── uploads └── index.html /.config/.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/.config/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.config/rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/.config/rector.php -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/phpcpd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/.github/workflows/phpcpd.yml -------------------------------------------------------------------------------- /.github/workflows/phpcsfixer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/.github/workflows/phpcsfixer.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/.github/workflows/phpunit.yml -------------------------------------------------------------------------------- /.github/workflows/rector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/.github/workflows/rector.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18.12.1 2 | -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/.postcssrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/README.md -------------------------------------------------------------------------------- /_docs/alerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/_docs/alerts.md -------------------------------------------------------------------------------- /_docs/discussions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/_docs/discussions.md -------------------------------------------------------------------------------- /_docs/emails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/_docs/emails.md -------------------------------------------------------------------------------- /_docs/filesystems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/_docs/filesystems.md -------------------------------------------------------------------------------- /_docs/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/_docs/images.md -------------------------------------------------------------------------------- /_docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/_docs/index.md -------------------------------------------------------------------------------- /_docs/notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/_docs/notifications.md -------------------------------------------------------------------------------- /_docs/policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/_docs/policies.md -------------------------------------------------------------------------------- /_docs/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/_docs/start.md -------------------------------------------------------------------------------- /_docs/themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/_docs/themes.md -------------------------------------------------------------------------------- /_docs/trust_levels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/_docs/trust_levels.md -------------------------------------------------------------------------------- /_docs/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/_docs/users.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/AdminRoutes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/AdminRoutes.php -------------------------------------------------------------------------------- /app/Cells/ActionBarCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Cells/ActionBarCell.php -------------------------------------------------------------------------------- /app/Cells/CategoryListCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Cells/CategoryListCell.php -------------------------------------------------------------------------------- /app/Cells/Moderation/SubMenuCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Cells/Moderation/SubMenuCell.php -------------------------------------------------------------------------------- /app/Cells/Moderation/sub_menu_cell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Cells/Moderation/sub_menu_cell.php -------------------------------------------------------------------------------- /app/Cells/MuteThreadCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Cells/MuteThreadCell.php -------------------------------------------------------------------------------- /app/Cells/action_bar_cell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Cells/action_bar_cell.php -------------------------------------------------------------------------------- /app/Cells/category_list_cell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Cells/category_list_cell.php -------------------------------------------------------------------------------- /app/Cells/mute_thread_cell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Cells/mute_thread_cell.php -------------------------------------------------------------------------------- /app/Commands/AccountsDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Commands/AccountsDelete.php -------------------------------------------------------------------------------- /app/Commands/AccountsDeleteReminder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Commands/AccountsDeleteReminder.php -------------------------------------------------------------------------------- /app/Commands/CleanupImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Commands/CleanupImages.php -------------------------------------------------------------------------------- /app/Commands/DailyModerationSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Commands/DailyModerationSummary.php -------------------------------------------------------------------------------- /app/Commands/SetTrustLevels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Commands/SetTrustLevels.php -------------------------------------------------------------------------------- /app/Commands/UpdateVisits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Commands/UpdateVisits.php -------------------------------------------------------------------------------- /app/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Common.php -------------------------------------------------------------------------------- /app/Concerns/HasAuthorsAndEditors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Concerns/HasAuthorsAndEditors.php -------------------------------------------------------------------------------- /app/Concerns/HasImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Concerns/HasImages.php -------------------------------------------------------------------------------- /app/Concerns/HasReactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Concerns/HasReactions.php -------------------------------------------------------------------------------- /app/Concerns/HasStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Concerns/HasStats.php -------------------------------------------------------------------------------- /app/Concerns/HasThreadsAndPosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Concerns/HasThreadsAndPosts.php -------------------------------------------------------------------------------- /app/Concerns/ImpactsCategoryCounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Concerns/ImpactsCategoryCounts.php -------------------------------------------------------------------------------- /app/Concerns/ImpactsUserActivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Concerns/ImpactsUserActivity.php -------------------------------------------------------------------------------- /app/Concerns/RendersContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Concerns/RendersContent.php -------------------------------------------------------------------------------- /app/Concerns/RestoreEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Concerns/RestoreEntry.php -------------------------------------------------------------------------------- /app/Concerns/Sluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Concerns/Sluggable.php -------------------------------------------------------------------------------- /app/Concerns/ThemeRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Concerns/ThemeRenderer.php -------------------------------------------------------------------------------- /app/Config/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/App.php -------------------------------------------------------------------------------- /app/Config/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Auth.php -------------------------------------------------------------------------------- /app/Config/AuthGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/AuthGroups.php -------------------------------------------------------------------------------- /app/Config/AuthToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/AuthToken.php -------------------------------------------------------------------------------- /app/Config/Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Autoload.php -------------------------------------------------------------------------------- /app/Config/Boot/development.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Boot/development.php -------------------------------------------------------------------------------- /app/Config/Boot/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Boot/production.php -------------------------------------------------------------------------------- /app/Config/Boot/testing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Boot/testing.php -------------------------------------------------------------------------------- /app/Config/CURLRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/CURLRequest.php -------------------------------------------------------------------------------- /app/Config/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Cache.php -------------------------------------------------------------------------------- /app/Config/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Constants.php -------------------------------------------------------------------------------- /app/Config/ContentSecurityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/ContentSecurityPolicy.php -------------------------------------------------------------------------------- /app/Config/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Cookie.php -------------------------------------------------------------------------------- /app/Config/Cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Cors.php -------------------------------------------------------------------------------- /app/Config/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Database.php -------------------------------------------------------------------------------- /app/Config/DocTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/DocTypes.php -------------------------------------------------------------------------------- /app/Config/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Email.php -------------------------------------------------------------------------------- /app/Config/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Encryption.php -------------------------------------------------------------------------------- /app/Config/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Events.php -------------------------------------------------------------------------------- /app/Config/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Exceptions.php -------------------------------------------------------------------------------- /app/Config/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Feature.php -------------------------------------------------------------------------------- /app/Config/Filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Filesystems.php -------------------------------------------------------------------------------- /app/Config/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Filters.php -------------------------------------------------------------------------------- /app/Config/ForeignCharacters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/ForeignCharacters.php -------------------------------------------------------------------------------- /app/Config/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Format.php -------------------------------------------------------------------------------- /app/Config/Forum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Forum.php -------------------------------------------------------------------------------- /app/Config/Generators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Generators.php -------------------------------------------------------------------------------- /app/Config/Honeypot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Honeypot.php -------------------------------------------------------------------------------- /app/Config/Htmx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Htmx.php -------------------------------------------------------------------------------- /app/Config/ImageUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/ImageUpload.php -------------------------------------------------------------------------------- /app/Config/Images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Images.php -------------------------------------------------------------------------------- /app/Config/Kint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Kint.php -------------------------------------------------------------------------------- /app/Config/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Logger.php -------------------------------------------------------------------------------- /app/Config/Migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Migrations.php -------------------------------------------------------------------------------- /app/Config/Mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Mimes.php -------------------------------------------------------------------------------- /app/Config/Modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Modules.php -------------------------------------------------------------------------------- /app/Config/Optimize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Optimize.php -------------------------------------------------------------------------------- /app/Config/Pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Pager.php -------------------------------------------------------------------------------- /app/Config/Paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Paths.php -------------------------------------------------------------------------------- /app/Config/Publisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Publisher.php -------------------------------------------------------------------------------- /app/Config/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/forum-example/HEAD/app/Config/Queue.php -------------------------------------------------------------------------------- /app/Config/Routes.php: -------------------------------------------------------------------------------- 1 |