├── .editorconfig ├── .env ├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── .php-cs-fixer.cache ├── .php-cs-fixer.php ├── .styleci.yml ├── CODE_OF_CONDUCT.md ├── README.md ├── app ├── Console │ ├── Kernel.php │ ├── UpdateSitemap.php │ ├── UpdateUserLevel.php │ ├── UpdateUserMembershipYearsBadge.php │ └── devstore.php ├── Events │ ├── Favorite │ │ ├── Event.php │ │ ├── Favorited.php │ │ └── Unfavorited.php │ ├── Follow │ │ ├── Event.php │ │ ├── Followed.php │ │ └── Unfollowed.php │ └── Vote │ │ ├── Event.php │ │ ├── VoteCancelled.php │ │ └── Voted.php ├── Exceptions │ ├── Handler.php │ ├── InvalidReportUser.php │ └── ThemeBasePathNotDefined.php ├── Filament │ ├── Pages │ │ ├── AdditionalScripts.php │ │ ├── Ads.php │ │ ├── CacheManager.php │ │ ├── General.php │ │ ├── Mail.php │ │ ├── PWA.php │ │ ├── Recaptcha.php │ │ ├── Seo.php │ │ ├── Sitemap.php │ │ ├── SocialLogin.php │ │ └── Storage.php │ ├── Resources │ │ ├── CommentResource.php │ │ ├── CommentResource │ │ │ └── Pages │ │ │ │ └── ListComments.php │ │ ├── CommunityResource.php │ │ ├── CommunityResource │ │ │ └── Pages │ │ │ │ ├── CreateCommunity.php │ │ │ │ ├── EditCommunity.php │ │ │ │ └── ListCommunities.php │ │ ├── ContactResource.php │ │ ├── ContactResource │ │ │ └── Pages │ │ │ │ ├── ListContacts.php │ │ │ │ └── ViewContacts.php │ │ ├── PageResource.php │ │ ├── PageResource │ │ │ └── Pages │ │ │ │ ├── CreatePage.php │ │ │ │ ├── EditPage.php │ │ │ │ └── ListPages.php │ │ ├── ReportedCommentResource.php │ │ ├── ReportedCommentResource │ │ │ └── Pages │ │ │ │ └── ListReportedComments.php │ │ ├── ReportedStoryResource.php │ │ ├── ReportedStoryResource │ │ │ └── Pages │ │ │ │ └── ListReportedStories.php │ │ ├── StoryResource.php │ │ ├── StoryResource │ │ │ ├── Pages │ │ │ │ ├── ListStories.php │ │ │ │ └── ViewStory.php │ │ │ └── RelationManagers │ │ │ │ └── CommentsRelationManager.php │ │ ├── TagResource.php │ │ ├── TagResource │ │ │ └── Pages │ │ │ │ └── ListTags.php │ │ ├── UserResource.php │ │ └── UserResource │ │ │ ├── Pages │ │ │ ├── CreateUser.php │ │ │ ├── EditUser.php │ │ │ └── ListUsers.php │ │ │ └── RelationManagers │ │ │ ├── CommentsRelationManager.php │ │ │ └── StoriesRelationManager.php │ └── Widgets │ │ ├── CommentsChart.php │ │ ├── LatestUsers.php │ │ ├── MediaChart.php │ │ ├── StatsApp.php │ │ ├── StoriesChart.php │ │ └── UsersChart.php ├── Helpers │ ├── helpers.php │ └── numberForHumans.php ├── Http │ ├── Controllers │ │ ├── Api │ │ │ ├── CommunityController.php │ │ │ ├── TagsListController.php │ │ │ └── UserController.php │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── CreateNewAdminController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── CommunityController.php │ │ ├── ContactController.php │ │ ├── Controller.php │ │ ├── DashboardController.php │ │ ├── HomeController.php │ │ ├── InstallController.php │ │ ├── PageController.php │ │ ├── Setup │ │ │ ├── AccountController.php │ │ │ ├── DatabaseController.php │ │ │ ├── InitWizardController.php │ │ │ └── RequirementsController.php │ │ ├── SocialController.php │ │ ├── StoryController.php │ │ ├── TagsController.php │ │ └── UserController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CheckSetupMiddleware.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── RedirectIfBanned.php │ │ ├── ThemeMiddleware.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── UserActivity.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── Auth │ │ │ └── LoginRequest.php │ │ └── SetupDatabaseRequest.php │ └── Traits │ │ └── HasUploadWithEditorJs.php ├── Listeners │ └── NewFollowerListener.php ├── Livewire │ ├── AbstractComponent.php │ ├── Admin │ │ └── Settings │ │ │ ├── AdditionalScripts.php │ │ │ ├── Ads.php │ │ │ ├── CacheManager.php │ │ │ ├── General.php │ │ │ ├── Mail.php │ │ │ ├── PWA.php │ │ │ ├── Recaptcha.php │ │ │ ├── Seo.php │ │ │ ├── SitemapManager.php │ │ │ ├── SocialLogin.php │ │ │ └── Storage.php │ └── Front │ │ ├── Comments │ │ ├── Comment.php │ │ └── Comments.php │ │ ├── Community │ │ ├── Avatar.php │ │ ├── CoverImage.php │ │ ├── Create.php │ │ ├── Settings.php │ │ └── Show.php │ │ ├── ContactForm.php │ │ ├── Favorite.php │ │ ├── Follow.php │ │ ├── Home │ │ ├── Featured.php │ │ ├── Index.php │ │ ├── Latest.php │ │ ├── MyFeed.php │ │ ├── SavedComments.php │ │ ├── SavedStories.php │ │ └── TopCommunities.php │ │ ├── Notifications.php │ │ ├── Poll │ │ ├── Form.php │ │ └── Show.php │ │ ├── ReportComment.php │ │ ├── ReportStory.php │ │ ├── SearchBar.php │ │ ├── Story │ │ ├── Create.php │ │ ├── Edit.php │ │ └── Show.php │ │ ├── StoryCard.php │ │ ├── Tags │ │ ├── Index.php │ │ └── Show.php │ │ ├── User │ │ ├── Avatar.php │ │ ├── CoverImage.php │ │ ├── Dashboard │ │ │ ├── Followers.php │ │ │ ├── Following │ │ │ │ ├── Communities.php │ │ │ │ └── Users.php │ │ │ └── Index.php │ │ ├── Settings.php │ │ └── Show.php │ │ └── Vote.php ├── Managers │ └── EditorJS │ │ └── BlocksManager.php ├── Models │ ├── Comment.php │ ├── Community.php │ ├── Contact.php │ ├── Favorite.php │ ├── Followable.php │ ├── Notification.php │ ├── Page.php │ ├── Permission.php │ ├── Poll.php │ ├── PollChoice.php │ ├── PollVote.php │ ├── Profile.php │ ├── ReportedComment.php │ ├── ReportedStory.php │ ├── Story.php │ ├── Traits │ │ ├── Favoriteable.php │ │ ├── Favoriter.php │ │ ├── Followable.php │ │ ├── Follower.php │ │ ├── Votable.php │ │ └── Voter.php │ ├── User.php │ └── Vote.php ├── Notifications │ ├── Auth │ │ ├── ResetPasswordQueued.php │ │ └── VerifyEmailQueued.php │ ├── CommentAdded.php │ ├── NewUserFollowNotification.php │ └── ReplyAdded.php ├── Observers │ └── Admin │ │ ├── CommunityObserver.php │ │ └── UserObserver.php ├── Policies │ ├── CommentPolicy.php │ ├── StoryPolicy.php │ └── UserPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BladeServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── Filament │ │ └── AdminPanelProvider.php │ └── RouteServiceProvider.php ├── Repositories │ ├── BaseRepository.php │ ├── CommunityRepository.php │ ├── PageRepository.php │ ├── TagRepository.php │ └── UserRepository.php ├── Rules │ └── Recaptcha.php ├── Services │ ├── PWAManifestService.php │ └── SMLCustomPathGenerator.php ├── Settings │ ├── AdvancedSettings.php │ ├── GeneralSettings.php │ ├── SeoSettings.php │ └── ThemeSettings.php └── View │ └── Components │ ├── AppLayout.php │ ├── EditorLayout.php │ ├── ErrorLayout.php │ ├── GuestLayout.php │ ├── Menu │ ├── Footer.php │ └── Main.php │ ├── SetupLayout.php │ └── Widgets │ ├── FeaturedStories.php │ ├── PopularTags.php │ └── TopAuthors.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── bianity.php ├── blade-icons.php ├── broadcasting.php ├── cache.php ├── cookie-consent.php ├── cors.php ├── database.php ├── debugbar.php ├── eloquent-viewable.php ├── favorite.php ├── feed.php ├── filament.php ├── filesystems.php ├── follow.php ├── google2fa.php ├── hashing.php ├── like.php ├── livewire.php ├── logging.php ├── mail.php ├── media-library.php ├── permission.php ├── points.php ├── purifier.php ├── pwa.php ├── queue.php ├── sanctum.php ├── seotools.php ├── services.php ├── session.php ├── settings.php ├── sitemap.php ├── sluggable.php ├── taggable.php ├── view.php ├── vote.php └── wireui.php ├── database ├── .gitignore ├── factories │ ├── ProfileFactory.php │ ├── StoryFactory.php │ ├── TagFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_10_12_000000_create_users_table.php │ ├── 2022_04_29_152022_create_profiles_table.php │ ├── 2022_05_14_155822_create_followables_table.php │ ├── 2022_05_17_103631_create_comments_table.php │ ├── 2022_05_28_114920_create_notifications_table.php │ ├── 2022_07_11_075649_create_taggable_table.php │ ├── 2022_07_12_163512_create_media_table.php │ ├── 2022_07_28_090101_create_communities_table.php │ ├── 2022_07_29_123049_create_favorites_table.php │ ├── 2022_08_02_142456_create_stories_table.php │ ├── 2022_08_14_052301_create_pages_table.php │ ├── 2022_08_25_141617_create_jobs_table.php │ ├── 2022_09_21_104639_create_contacts_table.php │ ├── 2022_10_12_100000_create_password_resets_table.php │ ├── 2022_11_21_083329_add_comment_visibility_on_stories_to_tablename.php │ ├── 2022_12_12_114417_update_stories_remove_canonical_url_add_meta.php │ ├── 2022_12_20_133154_add_soft_delete_to_users_table.php │ ├── 2022_12_21_101250_remove_old_reports_table.php │ ├── 2023_05_09_114253_create_polls_table.php │ ├── 2023_05_09_114322_create_poll_choices_table.php │ ├── 2023_05_09_114336_create_poll_votes_table.php │ ├── 2023_10_05_135425_add_show_on_footer_menu_to_pages_table.php │ ├── 2023_10_05_142935_add_is_viewed_to_contacts_table.php │ ├── 2023_10_08_115631_change_user_banned_column_table.php │ ├── 2023_10_12_110458_create_reported_stories_table.php │ ├── 2023_10_12_110515_create_reported_comments_table.php │ ├── 2023_10_12_144221_delete_old_repors_table.php │ ├── 2023_11_11_084629_add_content_visibility_to_story_table.php │ ├── 2024_02_07_103931_create_reported_users_table.php │ ├── 2024_02_11_181918_add_pinned_at_to_stories_table.php │ ├── 2024_02_14_099440_create_widgets_table.php │ ├── 2024_08_21_110533_upgrade_v3.php │ ├── 2024_08_26_091130_create_permission_tables.php │ ├── 2024_08_26_134232_create_settings_table.php │ ├── 2024_09_01_160211_upgrade_users_table.php │ ├── 2024_09_26_082949_upgrade_stories_table.php │ ├── 2024_10_17_094901_add_media_fields_comments.php │ ├── 2024_10_19_103002_create_comment_mentions_table.php │ ├── 2024_10_24_088857_create_points_table.php │ ├── 2024_10_28_083447_add_original_story_id_to_table_stories.php │ ├── 2024_10_29_101614_create_blocks_table.php │ ├── 2024_10_30_115336_add_suspended_to_user_table.php │ ├── 2024_10_31_101806_create_levels_table.php │ ├── 2024_10_31_101814_create_badges_table.php │ ├── 2024_10_31_101831_create_user_badges_table.php │ ├── 2024_11_04_105344_create_ads_table.php │ └── 2024_11_04_122622_create_likes_table.php ├── seeders │ ├── CommunitySeeder.php │ ├── DatabaseSeeder.php │ ├── PageSeeder.php │ ├── PermissionsSeeder.php │ ├── RolesSeeder.php │ ├── StorySeeder.php │ ├── TagSeeder.php │ └── UserSeeder.php └── settings │ ├── 2024_04_19_145044_create_general_settings.php │ ├── 2024_05_21_120030_create_seo_settings.php │ ├── 2024_06_01_134920_sitemap_seo_settings.php │ ├── 2024_07_22_071431_create_advanced_settings.php │ ├── 2024_08_23_082604_create_points_settings.php │ └── 2024_08_23_082604_create_theme_settings.php ├── lang ├── en.json ├── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── id.json └── id │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── license.txt ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── build │ ├── assets │ │ ├── _commonjsHelpers-725317a4.js │ │ ├── app-080ec996.js │ │ ├── app-bfd509e2.css │ │ ├── cropper-73bdf4d6.js │ │ ├── cropper-94fbf099.css │ │ ├── editor-9e9bb1d1.js │ │ ├── livewire.esm-fe689d8d.js │ │ ├── tagify-6c63a037.css │ │ ├── tagify-c2d7ae9b.js │ │ └── theme-9f9b664f.css │ └── manifest.json ├── css │ ├── archilex │ │ └── filament-toggle-icon-column │ │ │ └── filament-toggle-icon-column.css │ └── filament │ │ ├── filament │ │ └── app.css │ │ ├── forms │ │ └── forms.css │ │ └── support │ │ └── support.css ├── images │ ├── 11.png │ ├── 20240617_094030.png │ ├── 20240629_042909.png │ ├── 22.png │ ├── 33.png │ ├── 44.png │ ├── 55.png │ ├── 66.png │ ├── 77.png │ ├── 88.png │ ├── 99.png │ ├── Screenshot-Cover-HaiLovers.png │ ├── Screenshot-HaiLovers-2.png │ ├── Screenshot-HaiLovers-3.png │ ├── Screenshot-HaiLovers-4.png │ ├── Screenshot-HaiLovers-5.png │ ├── Screenshot-HaiLovers-6.png │ ├── Screenshot-HaiLovers-7.png │ ├── Screenshot-HaiLovers-8.png │ ├── Screenshot-Thumbnail-HaiLovers.png │ ├── cover_default.jpg │ ├── default-avatar.png │ ├── download.svg │ ├── error-page.jpg │ ├── favicon.png │ ├── google-search.svg │ ├── license-mit.svg │ ├── loading_image_dark_mode.svg │ ├── loading_image_light_mode.svg │ ├── logo-dark.png │ ├── logo-dark.svg │ ├── logo.png │ ├── logo.svg │ ├── maintenance.jpg │ ├── mylogo-3.png │ ├── mylogo-4.png │ ├── nopreview.jpg │ ├── official-site.svg │ ├── watermark.png │ └── website-hailovers.com.svg ├── index.php ├── js │ └── filament │ │ ├── filament │ │ ├── app.js │ │ └── echo.js │ │ ├── forms │ │ └── components │ │ │ ├── color-picker.js │ │ │ ├── date-time-picker.js │ │ │ ├── file-upload.js │ │ │ ├── key-value.js │ │ │ ├── markdown-editor.js │ │ │ ├── rich-editor.js │ │ │ ├── select.js │ │ │ ├── tags-input.js │ │ │ └── textarea.js │ │ ├── notifications │ │ └── notifications.js │ │ ├── support │ │ ├── async-alpine.js │ │ └── support.js │ │ ├── tables │ │ └── components │ │ │ └── table.js │ │ └── widgets │ │ └── components │ │ ├── chart.js │ │ └── stats-overview │ │ └── stat │ │ └── chart.js ├── robots.txt └── vendor │ └── livewire │ ├── livewire.js │ ├── livewire.js.map │ └── manifest.json ├── resources ├── css │ ├── app.css │ ├── filament │ │ └── cp │ │ │ ├── tailwind.config.js │ │ │ └── theme.css │ ├── reset.css │ └── tagify.css ├── js │ ├── app.js │ ├── cropper.js │ ├── editor.js │ └── tagify.js └── views │ ├── auth │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ └── verify-email.blade.php │ ├── blocks │ ├── code.blade.php │ ├── delimiter.blade.php │ ├── header.blade.php │ ├── list.blade.php │ ├── not-found.blade.php │ ├── paragraph.blade.php │ ├── quote.blade.php │ ├── raw.blade.php │ └── table.blade.php │ ├── community │ ├── create.blade.php │ ├── settings.blade.php │ └── show.blade.php │ ├── components │ ├── action-message.blade.php │ ├── alert.blade.php │ ├── auth-session-status.blade.php │ ├── auth-validation-errors.blade.php │ ├── buttons │ │ ├── default-button.blade.php │ │ ├── default.blade.php │ │ ├── full-primary.blade.php │ │ ├── primary-button.blade.php │ │ ├── primary.blade.php │ │ ├── secondary-button.blade.php │ │ ├── secondary.blade.php │ │ └── share.blade.php │ ├── checkbox.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── editorjs │ │ ├── block-delimiter.blade.php │ │ ├── block-embed.blade.php │ │ ├── block-header.blade.php │ │ ├── block-image.blade.php │ │ ├── block-link-tool.blade.php │ │ ├── block-list.blade.php │ │ ├── block-paragraph-first.blade.php │ │ ├── block-paragraph.blade.php │ │ └── block-quote.blade.php │ ├── empty-state.blade.php │ ├── flash-message.blade.php │ ├── form-section.blade.php │ ├── forms │ │ ├── auth-card.blade.php │ │ ├── checkbox.blade.php │ │ ├── error.blade.php │ │ ├── errors.blade.php │ │ ├── input-constrained.blade.php │ │ ├── input.blade.php │ │ ├── label.blade.php │ │ ├── textarea-constrained.blade.php │ │ ├── textarea-full-constrained.blade.php │ │ └── textarea.blade.php │ ├── heading.blade.php │ ├── icons │ │ ├── additional-scripts.blade.php │ │ ├── ads.blade.php │ │ ├── arrow-left.blade.php │ │ ├── arrows │ │ │ ├── arrow-down.blade.php │ │ │ ├── arrow-square-left.blade.php │ │ │ └── arrow-up.blade.php │ │ ├── aws.blade.php │ │ ├── captcha.blade.php │ │ ├── check.blade.php │ │ ├── chevron-down.blade.php │ │ ├── clock.blade.php │ │ ├── close-square.blade.php │ │ ├── comment-reply.blade.php │ │ ├── comments.blade.php │ │ ├── custom-code.blade.php │ │ ├── dos.blade.php │ │ ├── emoji │ │ │ └── sad.blade.php │ │ ├── eye.blade.php │ │ ├── facebook.blade.php │ │ ├── fire.blade.php │ │ ├── flash.blade.php │ │ ├── gallery │ │ │ ├── audio.blade.php │ │ │ ├── image-add.blade.php │ │ │ └── image.blade.php │ │ ├── general.blade.php │ │ ├── google-analytics.blade.php │ │ ├── google.blade.php │ │ ├── home.blade.php │ │ ├── is-uploading.blade.php │ │ ├── link.blade.php │ │ ├── mail.blade.php │ │ ├── menu-hamburger.blade.php │ │ ├── moon.blade.php │ │ ├── pinned-fill.blade.php │ │ ├── plus.blade.php │ │ ├── recaptcha.blade.php │ │ ├── search-mobile.blade.php │ │ ├── search.blade.php │ │ ├── seo-goal.blade.php │ │ ├── seo-og.blade.php │ │ ├── seo.blade.php │ │ ├── share.blade.php │ │ ├── social-login.blade.php │ │ ├── social │ │ │ ├── facebook-login.blade.php │ │ │ ├── facebook.blade.php │ │ │ ├── google-login.blade.php │ │ │ ├── telegram.blade.php │ │ │ ├── twitter.blade.php │ │ │ └── whatsapp.blade.php │ │ ├── staff │ │ │ ├── no-bookmarked.blade.php │ │ │ ├── no-found.blade.php │ │ │ ├── no-notifications.blade.php │ │ │ └── no-publications.blade.php │ │ ├── star-featured.blade.php │ │ ├── star.blade.php │ │ ├── storage.blade.php │ │ ├── sun.blade.php │ │ ├── three-dots-horizontal.blade.php │ │ ├── top-communities.blade.php │ │ ├── upload-file.blade.php │ │ ├── user │ │ │ ├── admin-dashboard.blade.php │ │ │ ├── ban.blade.php │ │ │ ├── calendar.blade.php │ │ │ ├── camera.blade.php │ │ │ ├── community.blade.php │ │ │ ├── crown-pro.blade.php │ │ │ ├── dashboard.blade.php │ │ │ ├── draft.blade.php │ │ │ ├── feed.blade.php │ │ │ ├── location.blade.php │ │ │ ├── login.blade.php │ │ │ ├── logout.blade.php │ │ │ ├── notification.blade.php │ │ │ ├── profile.blade.php │ │ │ ├── saved-active.blade.php │ │ │ ├── saved.blade.php │ │ │ ├── security.blade.php │ │ │ ├── settings.blade.php │ │ │ ├── social-profiles.blade.php │ │ │ ├── unban.blade.php │ │ │ └── user-add.blade.php │ │ ├── warning.blade.php │ │ └── wasabi.blade.php │ ├── input │ │ ├── group.blade.php │ │ ├── label.blade.php │ │ ├── option-category.blade.php │ │ ├── select.blade.php │ │ ├── text.blade.php │ │ └── textarea.blade.php │ ├── inputs.blade.php │ ├── label.blade.php │ ├── loader.blade.php │ ├── m-editor.blade.php │ ├── menu │ │ ├── dashboard.blade.php │ │ ├── footer.blade.php │ │ ├── main.blade.php │ │ └── saved.blade.php │ ├── nav-link.blade.php │ ├── responsive-nav-link.blade.php │ ├── section-title.blade.php │ ├── share-links.blade.php │ ├── sidebar-l.blade.php │ ├── sidebar-link.blade.php │ ├── sidebar-sub-link.blade.php │ ├── table-actions │ │ ├── comments.blade.php │ │ ├── communities.blade.php │ │ ├── community-url.blade.php │ │ ├── contacts.blade.php │ │ ├── page-url.blade.php │ │ ├── pages.blade.php │ │ ├── reports.blade.php │ │ ├── stories.blade.php │ │ ├── story-url.blade.php │ │ ├── tag-url.blade.php │ │ ├── tags.blade.php │ │ ├── user-url.blade.php │ │ ├── users-total-stories.blade.php │ │ └── users.blade.php │ ├── ui │ │ ├── dropdown-link.blade.php │ │ ├── dropdown.blade.php │ │ ├── popup.blade.php │ │ └── skeleton.blade.php │ ├── uploader-indicator.blade.php │ ├── users │ │ ├── avatar-circle-card.blade.php │ │ ├── avatar-circle-comment.blade.php │ │ └── avatar-circle.blade.php │ └── widgets │ │ ├── featured-stories.blade.php │ │ ├── popular-tags.blade.php │ │ └── top-authors.blade.php │ ├── emails │ └── comment-added.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 500.blade.php │ └── 503.blade.php │ ├── filament │ ├── forms │ │ └── components │ │ │ └── maintenance_message.blade.php │ ├── pages │ │ ├── additional-scripts.blade.php │ │ ├── ads.blade.php │ │ ├── appearance.blade.php │ │ ├── cache-manager.blade.php │ │ ├── dashboard.blade.php │ │ ├── general.blade.php │ │ ├── mail.blade.php │ │ ├── p-w-a.blade.php │ │ ├── points.blade.php │ │ ├── recaptcha.blade.php │ │ ├── seo.blade.php │ │ ├── sitemap.blade.php │ │ ├── social-login.blade.php │ │ └── storage.blade.php │ └── tables │ │ └── columns │ │ ├── community-link.blade.php │ │ ├── page-link.blade.php │ │ └── story-link.blade.php │ ├── home │ ├── contact-form.blade.php │ ├── featured.blade.php │ ├── latest.blade.php │ ├── myfeed.blade.php │ ├── popular.blade.php │ ├── saved-comments.blade.php │ ├── saved-stories.blade.php │ └── top-communities.blade.php │ ├── layouts │ ├── app.blade.php │ ├── editor.blade.php │ ├── error.blade.php │ ├── guest.blade.php │ ├── partials │ │ ├── head.blade.php │ │ ├── header.blade.php │ │ ├── mobilebar.blade.php │ │ ├── pwa.blade.php │ │ └── sidebar.blade.php │ └── setup.blade.php │ ├── livewire │ ├── admin │ │ └── settings │ │ │ ├── additional-scripts.blade.php │ │ │ ├── ads.blade.php │ │ │ ├── cache-manager.blade.php │ │ │ ├── general.blade.php │ │ │ ├── mail.blade.php │ │ │ ├── p-w-a.blade.php │ │ │ ├── recaptcha.blade.php │ │ │ ├── seo.blade.php │ │ │ ├── sitemap-manager.blade.php │ │ │ ├── social-login.blade.php │ │ │ └── storage.blade.php │ └── front │ │ ├── comments │ │ └── comment.blade.php │ │ ├── community │ │ ├── avatar.blade.php │ │ ├── cover-image.blade.php │ │ ├── settings.blade.php │ │ └── show.blade.php │ │ ├── contact-form.blade.php │ │ ├── favorite.blade.php │ │ ├── follow.blade.php │ │ ├── home │ │ ├── featured.blade.php │ │ ├── index.blade.php │ │ ├── latest.blade.php │ │ ├── saved-comments.blade.php │ │ ├── saved-stories.blade.php │ │ └── top-communities.blade.php │ │ ├── notifications.blade.php │ │ ├── poll │ │ ├── form.blade.php │ │ └── show.blade.php │ │ ├── report-comment.blade.php │ │ ├── report-story.blade.php │ │ ├── search-bar.blade.php │ │ ├── story-card.blade.php │ │ ├── story │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── partials │ │ │ ├── content-body.blade.php │ │ │ ├── content-header.blade.php │ │ │ ├── non-auth.blade.php │ │ │ └── top.blade.php │ │ ├── settings │ │ │ ├── audio-file-create.blade.php │ │ │ ├── audio-file-edit.blade.php │ │ │ ├── comments.blade.php │ │ │ ├── featured-image-edit.blade.php │ │ │ ├── seo.blade.php │ │ │ ├── story-create.blade.php │ │ │ └── story-edit.blade.php │ │ └── show.blade.php │ │ ├── tags │ │ └── index.blade.php │ │ ├── user │ │ ├── avatar.blade.php │ │ ├── cover-image.blade.php │ │ ├── dashboard │ │ │ ├── followers.blade.php │ │ │ ├── following │ │ │ │ ├── communities.blade.php │ │ │ │ └── users.blade.php │ │ │ └── index.blade.php │ │ └── settings.blade.php │ │ └── vote.blade.php │ ├── notifications │ ├── new_comment.blade.php │ ├── new_follow.blade.php │ └── new_reply.blade.php │ ├── page │ └── show.blade.php │ ├── setup │ ├── account.blade.php │ ├── complete.blade.php │ ├── database.blade.php │ ├── requirements.blade.php │ └── welcome.blade.php │ ├── story │ ├── create.blade.php │ ├── edit.blade.php │ └── show.blade.php │ ├── tags │ ├── index.blade.php │ └── show.blade.php │ ├── user │ ├── dashboard │ │ ├── followers.blade.php │ │ ├── following │ │ │ ├── communities.blade.php │ │ │ └── users.blade.php │ │ └── index.blade.php │ ├── settings.blade.php │ └── show.blade.php │ └── vendor │ ├── cookie-consent │ ├── dialogContents.blade.php │ └── index.blade.php │ ├── filament-panels │ └── components │ │ └── logo.blade.php │ ├── livewire │ ├── bootstrap.blade.php │ ├── simple-bootstrap.blade.php │ ├── simple-tailwind.blade.php │ └── tailwind.blade.php │ ├── media-library │ ├── image.blade.php │ ├── placeholderSvg.blade.php │ ├── responsiveImage.blade.php │ └── responsiveImageWithPlaceholder.blade.php │ └── pagination │ ├── simple-tailwind.blade.php │ └── tailwind.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php ├── installer.php ├── online.php ├── points.php ├── pwa.php ├── setup.php └── web.php ├── storage ├── app │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ └── RegistrationTest.php │ └── ExampleTest.php ├── Pest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── vendor ├── archilex │ └── filament-toggle-icon-column │ │ ├── .prettierrc │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ └── filament-toggle-icon-column.php │ │ ├── database │ │ ├── factories │ │ │ └── ModelFactory.php │ │ └── migrations │ │ │ └── create_filament-toggle-icon-column_table.php.stub │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── resources │ │ ├── css │ │ │ └── plugin.css │ │ ├── dist │ │ │ ├── .gitkeep │ │ │ └── filament-toggle-icon-column.css │ │ └── views │ │ │ ├── .gitkeep │ │ │ └── columns │ │ │ └── toggle-icon-column.blade.php │ │ ├── src │ │ ├── Columns │ │ │ └── ToggleIconColumn.php │ │ └── ToggleIconColumnServiceProvider.php │ │ └── tailwind.config.js ├── archtechx │ └── enums │ │ ├── .php-cs-fixer.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── extension.neon │ │ └── src │ │ ├── Exceptions │ │ └── UndefinedCaseError.php │ │ ├── From.php │ │ ├── InvokableCases.php │ │ ├── Meta │ │ ├── Meta.php │ │ ├── MetaProperty.php │ │ └── Reflection.php │ │ ├── Metadata.php │ │ ├── Names.php │ │ ├── Options.php │ │ ├── PHPStan │ │ └── InvokableCases │ │ │ ├── ReflectionExtension.php │ │ │ ├── StaticInvokableCaseMethodReflection.php │ │ │ └── extension.neon │ │ └── Values.php ├── artesaos │ └── seotools │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── SEOTools │ │ ├── Contracts │ │ │ ├── JsonLd.php │ │ │ ├── JsonLdMulti.php │ │ │ ├── MetaTags.php │ │ │ ├── OpenGraph.php │ │ │ ├── SEOFriendly.php │ │ │ ├── SEOTools.php │ │ │ └── TwitterCards.php │ │ ├── Facades │ │ │ ├── JsonLd.php │ │ │ ├── JsonLdMulti.php │ │ │ ├── OpenGraph.php │ │ │ ├── SEOMeta.php │ │ │ ├── SEOTools.php │ │ │ └── TwitterCard.php │ │ ├── JsonLd.php │ │ ├── JsonLdMulti.php │ │ ├── OpenGraph.php │ │ ├── Providers │ │ │ └── SEOToolsServiceProvider.php │ │ ├── SEOMeta.php │ │ ├── SEOTools.php │ │ ├── Traits │ │ │ └── SEOTools.php │ │ └── TwitterCards.php │ │ └── resources │ │ └── config │ │ └── seotools.php ├── autoload.php ├── aws │ ├── aws-crt-php │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── AWS │ │ │ └── CRT │ │ │ ├── Auth │ │ │ ├── AwsCredentials.php │ │ │ ├── CredentialsProvider.php │ │ │ ├── Signable.php │ │ │ ├── SignatureType.php │ │ │ ├── SignedBodyHeaderType.php │ │ │ ├── Signing.php │ │ │ ├── SigningAlgorithm.php │ │ │ ├── SigningConfigAWS.php │ │ │ ├── SigningResult.php │ │ │ └── StaticCredentialsProvider.php │ │ │ ├── CRT.php │ │ │ ├── HTTP │ │ │ ├── Headers.php │ │ │ ├── Message.php │ │ │ ├── Request.php │ │ │ └── Response.php │ │ │ ├── IO │ │ │ ├── EventLoopGroup.php │ │ │ └── InputStream.php │ │ │ ├── Internal │ │ │ ├── Encoding.php │ │ │ └── Extension.php │ │ │ ├── Log.php │ │ │ ├── NativeResource.php │ │ │ └── Options.php │ └── aws-sdk-php │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CRT_INSTRUCTIONS.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── THIRD-PARTY-LICENSES │ │ ├── composer.json │ │ └── src │ │ ├── ACMPCA │ │ ├── ACMPCAClient.php │ │ └── Exception │ │ │ └── ACMPCAException.php │ │ ├── ARCZonalShift │ │ ├── ARCZonalShiftClient.php │ │ └── Exception │ │ │ └── ARCZonalShiftException.php │ │ ├── AbstractConfigurationProvider.php │ │ ├── AccessAnalyzer │ │ ├── AccessAnalyzerClient.php │ │ └── Exception │ │ │ └── AccessAnalyzerException.php │ │ ├── Account │ │ ├── AccountClient.php │ │ └── Exception │ │ │ └── AccountException.php │ │ ├── Acm │ │ ├── AcmClient.php │ │ └── Exception │ │ │ └── AcmException.php │ │ ├── AlexaForBusiness │ │ ├── AlexaForBusinessClient.php │ │ └── Exception │ │ │ └── AlexaForBusinessException.php │ │ ├── Amplify │ │ ├── AmplifyClient.php │ │ └── Exception │ │ │ └── AmplifyException.php │ │ ├── AmplifyBackend │ │ ├── AmplifyBackendClient.php │ │ └── Exception │ │ │ └── AmplifyBackendException.php │ │ ├── AmplifyUIBuilder │ │ ├── AmplifyUIBuilderClient.php │ │ └── Exception │ │ │ └── AmplifyUIBuilderException.php │ │ ├── Api │ │ ├── AbstractModel.php │ │ ├── ApiProvider.php │ │ ├── DateTimeResult.php │ │ ├── DocModel.php │ │ ├── ErrorParser │ │ │ ├── AbstractErrorParser.php │ │ │ ├── JsonParserTrait.php │ │ │ ├── JsonRpcErrorParser.php │ │ │ ├── RestJsonErrorParser.php │ │ │ └── XmlErrorParser.php │ │ ├── ListShape.php │ │ ├── MapShape.php │ │ ├── Operation.php │ │ ├── Parser │ │ │ ├── AbstractParser.php │ │ │ ├── AbstractRestParser.php │ │ │ ├── Crc32ValidatingParser.php │ │ │ ├── DecodingEventStreamIterator.php │ │ │ ├── EventParsingIterator.php │ │ │ ├── Exception │ │ │ │ └── ParserException.php │ │ │ ├── JsonParser.php │ │ │ ├── JsonRpcParser.php │ │ │ ├── MetadataParserTrait.php │ │ │ ├── PayloadParserTrait.php │ │ │ ├── QueryParser.php │ │ │ ├── RestJsonParser.php │ │ │ ├── RestXmlParser.php │ │ │ └── XmlParser.php │ │ ├── Serializer │ │ │ ├── Ec2ParamBuilder.php │ │ │ ├── JsonBody.php │ │ │ ├── JsonRpcSerializer.php │ │ │ ├── QueryParamBuilder.php │ │ │ ├── QuerySerializer.php │ │ │ ├── RestJsonSerializer.php │ │ │ ├── RestSerializer.php │ │ │ ├── RestXmlSerializer.php │ │ │ └── XmlBody.php │ │ ├── Service.php │ │ ├── Shape.php │ │ ├── ShapeMap.php │ │ ├── StructureShape.php │ │ ├── TimestampShape.php │ │ └── Validator.php │ │ ├── ApiGateway │ │ ├── ApiGatewayClient.php │ │ └── Exception │ │ │ └── ApiGatewayException.php │ │ ├── ApiGatewayManagementApi │ │ ├── ApiGatewayManagementApiClient.php │ │ └── Exception │ │ │ └── ApiGatewayManagementApiException.php │ │ ├── ApiGatewayV2 │ │ ├── ApiGatewayV2Client.php │ │ └── Exception │ │ │ └── ApiGatewayV2Exception.php │ │ ├── AppConfig │ │ ├── AppConfigClient.php │ │ └── Exception │ │ │ └── AppConfigException.php │ │ ├── AppConfigData │ │ ├── AppConfigDataClient.php │ │ └── Exception │ │ │ └── AppConfigDataException.php │ │ ├── AppFabric │ │ ├── AppFabricClient.php │ │ └── Exception │ │ │ └── AppFabricException.php │ │ ├── AppIntegrationsService │ │ ├── AppIntegrationsServiceClient.php │ │ └── Exception │ │ │ └── AppIntegrationsServiceException.php │ │ ├── AppMesh │ │ ├── AppMeshClient.php │ │ └── Exception │ │ │ └── AppMeshException.php │ │ ├── AppRegistry │ │ ├── AppRegistryClient.php │ │ └── Exception │ │ │ └── AppRegistryException.php │ │ ├── AppRunner │ │ ├── AppRunnerClient.php │ │ └── Exception │ │ │ └── AppRunnerException.php │ │ ├── AppSync │ │ ├── AppSyncClient.php │ │ └── Exception │ │ │ └── AppSyncException.php │ │ ├── Appflow │ │ ├── AppflowClient.php │ │ └── Exception │ │ │ └── AppflowException.php │ │ ├── ApplicationAutoScaling │ │ ├── ApplicationAutoScalingClient.php │ │ └── Exception │ │ │ └── ApplicationAutoScalingException.php │ │ ├── ApplicationCostProfiler │ │ ├── ApplicationCostProfilerClient.php │ │ └── Exception │ │ │ └── ApplicationCostProfilerException.php │ │ ├── ApplicationDiscoveryService │ │ ├── ApplicationDiscoveryServiceClient.php │ │ └── Exception │ │ │ └── ApplicationDiscoveryServiceException.php │ │ ├── ApplicationInsights │ │ ├── ApplicationInsightsClient.php │ │ └── Exception │ │ │ └── ApplicationInsightsException.php │ │ ├── Appstream │ │ ├── AppstreamClient.php │ │ └── Exception │ │ │ └── AppstreamException.php │ │ ├── Arn │ │ ├── AccessPointArn.php │ │ ├── AccessPointArnInterface.php │ │ ├── Arn.php │ │ ├── ArnInterface.php │ │ ├── ArnParser.php │ │ ├── Exception │ │ │ └── InvalidArnException.php │ │ ├── ObjectLambdaAccessPointArn.php │ │ ├── ResourceTypeAndIdTrait.php │ │ └── S3 │ │ │ ├── AccessPointArn.php │ │ │ ├── BucketArnInterface.php │ │ │ ├── MultiRegionAccessPointArn.php │ │ │ ├── OutpostsAccessPointArn.php │ │ │ ├── OutpostsArnInterface.php │ │ │ └── OutpostsBucketArn.php │ │ ├── Athena │ │ ├── AthenaClient.php │ │ └── Exception │ │ │ └── AthenaException.php │ │ ├── AuditManager │ │ ├── AuditManagerClient.php │ │ └── Exception │ │ │ └── AuditManagerException.php │ │ ├── AugmentedAIRuntime │ │ ├── AugmentedAIRuntimeClient.php │ │ └── Exception │ │ │ └── AugmentedAIRuntimeException.php │ │ ├── AutoScaling │ │ ├── AutoScalingClient.php │ │ └── Exception │ │ │ └── AutoScalingException.php │ │ ├── AutoScalingPlans │ │ ├── AutoScalingPlansClient.php │ │ └── Exception │ │ │ └── AutoScalingPlansException.php │ │ ├── AwsClient.php │ │ ├── AwsClientInterface.php │ │ ├── AwsClientTrait.php │ │ ├── Backup │ │ ├── BackupClient.php │ │ └── Exception │ │ │ └── BackupException.php │ │ ├── BackupGateway │ │ ├── BackupGatewayClient.php │ │ └── Exception │ │ │ └── BackupGatewayException.php │ │ ├── BackupStorage │ │ ├── BackupStorageClient.php │ │ └── Exception │ │ │ └── BackupStorageException.php │ │ ├── Batch │ │ ├── BatchClient.php │ │ └── Exception │ │ │ └── BatchException.php │ │ ├── Bedrock │ │ ├── BedrockClient.php │ │ └── Exception │ │ │ └── BedrockException.php │ │ ├── BedrockRuntime │ │ ├── BedrockRuntimeClient.php │ │ └── Exception │ │ │ └── BedrockRuntimeException.php │ │ ├── BillingConductor │ │ ├── BillingConductorClient.php │ │ └── Exception │ │ │ └── BillingConductorException.php │ │ ├── Braket │ │ ├── BraketClient.php │ │ └── Exception │ │ │ └── BraketException.php │ │ ├── Budgets │ │ ├── BudgetsClient.php │ │ └── Exception │ │ │ └── BudgetsException.php │ │ ├── CacheInterface.php │ │ ├── Chime │ │ ├── ChimeClient.php │ │ └── Exception │ │ │ └── ChimeException.php │ │ ├── ChimeSDKIdentity │ │ ├── ChimeSDKIdentityClient.php │ │ └── Exception │ │ │ └── ChimeSDKIdentityException.php │ │ ├── ChimeSDKMediaPipelines │ │ ├── ChimeSDKMediaPipelinesClient.php │ │ └── Exception │ │ │ └── ChimeSDKMediaPipelinesException.php │ │ ├── ChimeSDKMeetings │ │ ├── ChimeSDKMeetingsClient.php │ │ └── Exception │ │ │ └── ChimeSDKMeetingsException.php │ │ ├── ChimeSDKMessaging │ │ ├── ChimeSDKMessagingClient.php │ │ └── Exception │ │ │ └── ChimeSDKMessagingException.php │ │ ├── ChimeSDKVoice │ │ ├── ChimeSDKVoiceClient.php │ │ └── Exception │ │ │ └── ChimeSDKVoiceException.php │ │ ├── CleanRooms │ │ ├── CleanRoomsClient.php │ │ └── Exception │ │ │ └── CleanRoomsException.php │ │ ├── ClientResolver.php │ │ ├── ClientSideMonitoring │ │ ├── AbstractMonitoringMiddleware.php │ │ ├── ApiCallAttemptMonitoringMiddleware.php │ │ ├── ApiCallMonitoringMiddleware.php │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ ├── Exception │ │ │ └── ConfigurationException.php │ │ └── MonitoringMiddlewareInterface.php │ │ ├── Cloud9 │ │ ├── Cloud9Client.php │ │ └── Exception │ │ │ └── Cloud9Exception.php │ │ ├── CloudControlApi │ │ ├── CloudControlApiClient.php │ │ └── Exception │ │ │ └── CloudControlApiException.php │ │ ├── CloudDirectory │ │ ├── CloudDirectoryClient.php │ │ └── Exception │ │ │ └── CloudDirectoryException.php │ │ ├── CloudFormation │ │ ├── CloudFormationClient.php │ │ └── Exception │ │ │ └── CloudFormationException.php │ │ ├── CloudFront │ │ ├── CloudFrontClient.php │ │ ├── CookieSigner.php │ │ ├── Exception │ │ │ └── CloudFrontException.php │ │ ├── Signer.php │ │ └── UrlSigner.php │ │ ├── CloudHSMV2 │ │ ├── CloudHSMV2Client.php │ │ └── Exception │ │ │ └── CloudHSMV2Exception.php │ │ ├── CloudHsm │ │ ├── CloudHsmClient.php │ │ └── Exception │ │ │ └── CloudHsmException.php │ │ ├── CloudSearch │ │ ├── CloudSearchClient.php │ │ └── Exception │ │ │ └── CloudSearchException.php │ │ ├── CloudSearchDomain │ │ ├── CloudSearchDomainClient.php │ │ └── Exception │ │ │ └── CloudSearchDomainException.php │ │ ├── CloudTrail │ │ ├── CloudTrailClient.php │ │ ├── Exception │ │ │ └── CloudTrailException.php │ │ ├── LogFileIterator.php │ │ ├── LogFileReader.php │ │ └── LogRecordIterator.php │ │ ├── CloudTrailData │ │ ├── CloudTrailDataClient.php │ │ └── Exception │ │ │ └── CloudTrailDataException.php │ │ ├── CloudWatch │ │ ├── CloudWatchClient.php │ │ └── Exception │ │ │ └── CloudWatchException.php │ │ ├── CloudWatchEvents │ │ ├── CloudWatchEventsClient.php │ │ └── Exception │ │ │ └── CloudWatchEventsException.php │ │ ├── CloudWatchEvidently │ │ ├── CloudWatchEvidentlyClient.php │ │ └── Exception │ │ │ └── CloudWatchEvidentlyException.php │ │ ├── CloudWatchLogs │ │ ├── CloudWatchLogsClient.php │ │ └── Exception │ │ │ └── CloudWatchLogsException.php │ │ ├── CloudWatchRUM │ │ ├── CloudWatchRUMClient.php │ │ └── Exception │ │ │ └── CloudWatchRUMException.php │ │ ├── CodeArtifact │ │ ├── CodeArtifactClient.php │ │ └── Exception │ │ │ └── CodeArtifactException.php │ │ ├── CodeBuild │ │ ├── CodeBuildClient.php │ │ └── Exception │ │ │ └── CodeBuildException.php │ │ ├── CodeCatalyst │ │ ├── CodeCatalystClient.php │ │ └── Exception │ │ │ └── CodeCatalystException.php │ │ ├── CodeCommit │ │ ├── CodeCommitClient.php │ │ └── Exception │ │ │ └── CodeCommitException.php │ │ ├── CodeDeploy │ │ ├── CodeDeployClient.php │ │ └── Exception │ │ │ └── CodeDeployException.php │ │ ├── CodeGuruProfiler │ │ ├── CodeGuruProfilerClient.php │ │ └── Exception │ │ │ └── CodeGuruProfilerException.php │ │ ├── CodeGuruReviewer │ │ ├── CodeGuruReviewerClient.php │ │ └── Exception │ │ │ └── CodeGuruReviewerException.php │ │ ├── CodeGuruSecurity │ │ ├── CodeGuruSecurityClient.php │ │ └── Exception │ │ │ └── CodeGuruSecurityException.php │ │ ├── CodePipeline │ │ ├── CodePipelineClient.php │ │ └── Exception │ │ │ └── CodePipelineException.php │ │ ├── CodeStar │ │ ├── CodeStarClient.php │ │ └── Exception │ │ │ └── CodeStarException.php │ │ ├── CodeStarNotifications │ │ ├── CodeStarNotificationsClient.php │ │ └── Exception │ │ │ └── CodeStarNotificationsException.php │ │ ├── CodeStarconnections │ │ ├── CodeStarconnectionsClient.php │ │ └── Exception │ │ │ └── CodeStarconnectionsException.php │ │ ├── CognitoIdentity │ │ ├── CognitoIdentityClient.php │ │ ├── CognitoIdentityProvider.php │ │ └── Exception │ │ │ └── CognitoIdentityException.php │ │ ├── CognitoIdentityProvider │ │ ├── CognitoIdentityProviderClient.php │ │ └── Exception │ │ │ └── CognitoIdentityProviderException.php │ │ ├── CognitoSync │ │ ├── CognitoSyncClient.php │ │ └── Exception │ │ │ └── CognitoSyncException.php │ │ ├── Command.php │ │ ├── CommandInterface.php │ │ ├── CommandPool.php │ │ ├── Comprehend │ │ ├── ComprehendClient.php │ │ └── Exception │ │ │ └── ComprehendException.php │ │ ├── ComprehendMedical │ │ ├── ComprehendMedicalClient.php │ │ └── Exception │ │ │ └── ComprehendMedicalException.php │ │ ├── ComputeOptimizer │ │ ├── ComputeOptimizerClient.php │ │ └── Exception │ │ │ └── ComputeOptimizerException.php │ │ ├── ConfigService │ │ ├── ConfigServiceClient.php │ │ └── Exception │ │ │ └── ConfigServiceException.php │ │ ├── Configuration │ │ └── ConfigurationResolver.php │ │ ├── ConfigurationProviderInterface.php │ │ ├── Connect │ │ ├── ConnectClient.php │ │ └── Exception │ │ │ └── ConnectException.php │ │ ├── ConnectCampaignService │ │ ├── ConnectCampaignServiceClient.php │ │ └── Exception │ │ │ └── ConnectCampaignServiceException.php │ │ ├── ConnectCases │ │ ├── ConnectCasesClient.php │ │ └── Exception │ │ │ └── ConnectCasesException.php │ │ ├── ConnectContactLens │ │ ├── ConnectContactLensClient.php │ │ └── Exception │ │ │ └── ConnectContactLensException.php │ │ ├── ConnectParticipant │ │ ├── ConnectParticipantClient.php │ │ └── Exception │ │ │ └── ConnectParticipantException.php │ │ ├── ConnectWisdomService │ │ ├── ConnectWisdomServiceClient.php │ │ └── Exception │ │ │ └── ConnectWisdomServiceException.php │ │ ├── ControlTower │ │ ├── ControlTowerClient.php │ │ └── Exception │ │ │ └── ControlTowerException.php │ │ ├── CostExplorer │ │ ├── CostExplorerClient.php │ │ └── Exception │ │ │ └── CostExplorerException.php │ │ ├── CostandUsageReportService │ │ ├── CostandUsageReportServiceClient.php │ │ └── Exception │ │ │ └── CostandUsageReportServiceException.php │ │ ├── Credentials │ │ ├── AssumeRoleCredentialProvider.php │ │ ├── AssumeRoleWithWebIdentityCredentialProvider.php │ │ ├── CredentialProvider.php │ │ ├── Credentials.php │ │ ├── CredentialsInterface.php │ │ ├── EcsCredentialProvider.php │ │ └── InstanceProfileProvider.php │ │ ├── Crypto │ │ ├── AbstractCryptoClient.php │ │ ├── AbstractCryptoClientV2.php │ │ ├── AesDecryptingStream.php │ │ ├── AesEncryptingStream.php │ │ ├── AesGcmDecryptingStream.php │ │ ├── AesGcmEncryptingStream.php │ │ ├── AesStreamInterface.php │ │ ├── AesStreamInterfaceV2.php │ │ ├── Cipher │ │ │ ├── Cbc.php │ │ │ ├── CipherBuilderTrait.php │ │ │ └── CipherMethod.php │ │ ├── DecryptionTrait.php │ │ ├── DecryptionTraitV2.php │ │ ├── EncryptionTrait.php │ │ ├── EncryptionTraitV2.php │ │ ├── KmsMaterialsProvider.php │ │ ├── KmsMaterialsProviderV2.php │ │ ├── MaterialsProvider.php │ │ ├── MaterialsProviderInterface.php │ │ ├── MaterialsProviderInterfaceV2.php │ │ ├── MaterialsProviderV2.php │ │ ├── MetadataEnvelope.php │ │ ├── MetadataStrategyInterface.php │ │ └── Polyfill │ │ │ ├── AesGcm.php │ │ │ ├── ByteArray.php │ │ │ ├── Gmac.php │ │ │ ├── Key.php │ │ │ └── NeedsTrait.php │ │ ├── CustomerProfiles │ │ ├── CustomerProfilesClient.php │ │ └── Exception │ │ │ └── CustomerProfilesException.php │ │ ├── DAX │ │ ├── DAXClient.php │ │ └── Exception │ │ │ └── DAXException.php │ │ ├── DLM │ │ ├── DLMClient.php │ │ └── Exception │ │ │ └── DLMException.php │ │ ├── DataExchange │ │ ├── DataExchangeClient.php │ │ └── Exception │ │ │ └── DataExchangeException.php │ │ ├── DataPipeline │ │ ├── DataPipelineClient.php │ │ └── Exception │ │ │ └── DataPipelineException.php │ │ ├── DataSync │ │ ├── DataSyncClient.php │ │ └── Exception │ │ │ └── DataSyncException.php │ │ ├── DataZone │ │ ├── DataZoneClient.php │ │ └── Exception │ │ │ └── DataZoneException.php │ │ ├── DatabaseMigrationService │ │ ├── DatabaseMigrationServiceClient.php │ │ └── Exception │ │ │ └── DatabaseMigrationServiceException.php │ │ ├── DefaultsMode │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ └── Exception │ │ │ └── ConfigurationException.php │ │ ├── Detective │ │ ├── DetectiveClient.php │ │ └── Exception │ │ │ └── DetectiveException.php │ │ ├── DevOpsGuru │ │ ├── DevOpsGuruClient.php │ │ └── Exception │ │ │ └── DevOpsGuruException.php │ │ ├── DeviceFarm │ │ ├── DeviceFarmClient.php │ │ └── Exception │ │ │ └── DeviceFarmException.php │ │ ├── DirectConnect │ │ ├── DirectConnectClient.php │ │ └── Exception │ │ │ └── DirectConnectException.php │ │ ├── DirectoryService │ │ ├── DirectoryServiceClient.php │ │ └── Exception │ │ │ └── DirectoryServiceException.php │ │ ├── DocDB │ │ ├── DocDBClient.php │ │ └── Exception │ │ │ └── DocDBException.php │ │ ├── DocDBElastic │ │ ├── DocDBElasticClient.php │ │ └── Exception │ │ │ └── DocDBElasticException.php │ │ ├── DoctrineCacheAdapter.php │ │ ├── DynamoDb │ │ ├── BinaryValue.php │ │ ├── DynamoDbClient.php │ │ ├── Exception │ │ │ └── DynamoDbException.php │ │ ├── LockingSessionConnection.php │ │ ├── Marshaler.php │ │ ├── NumberValue.php │ │ ├── SessionConnectionConfigTrait.php │ │ ├── SessionConnectionInterface.php │ │ ├── SessionHandler.php │ │ ├── SetValue.php │ │ ├── StandardSessionConnection.php │ │ └── WriteRequestBatch.php │ │ ├── DynamoDbStreams │ │ ├── DynamoDbStreamsClient.php │ │ └── Exception │ │ │ └── DynamoDbStreamsException.php │ │ ├── EBS │ │ ├── EBSClient.php │ │ └── Exception │ │ │ └── EBSException.php │ │ ├── EC2InstanceConnect │ │ ├── EC2InstanceConnectClient.php │ │ └── Exception │ │ │ └── EC2InstanceConnectException.php │ │ ├── ECRPublic │ │ ├── ECRPublicClient.php │ │ └── Exception │ │ │ └── ECRPublicException.php │ │ ├── EKS │ │ ├── EKSClient.php │ │ └── Exception │ │ │ └── EKSException.php │ │ ├── EMRContainers │ │ ├── EMRContainersClient.php │ │ └── Exception │ │ │ └── EMRContainersException.php │ │ ├── EMRServerless │ │ ├── EMRServerlessClient.php │ │ └── Exception │ │ │ └── EMRServerlessException.php │ │ ├── Ec2 │ │ ├── Ec2Client.php │ │ └── Exception │ │ │ └── Ec2Exception.php │ │ ├── Ecr │ │ ├── EcrClient.php │ │ └── Exception │ │ │ └── EcrException.php │ │ ├── Ecs │ │ ├── EcsClient.php │ │ └── Exception │ │ │ └── EcsException.php │ │ ├── Efs │ │ ├── EfsClient.php │ │ └── Exception │ │ │ └── EfsException.php │ │ ├── ElastiCache │ │ ├── ElastiCacheClient.php │ │ └── Exception │ │ │ └── ElastiCacheException.php │ │ ├── ElasticBeanstalk │ │ ├── ElasticBeanstalkClient.php │ │ └── Exception │ │ │ └── ElasticBeanstalkException.php │ │ ├── ElasticInference │ │ ├── ElasticInferenceClient.php │ │ └── Exception │ │ │ └── ElasticInferenceException.php │ │ ├── ElasticLoadBalancing │ │ ├── ElasticLoadBalancingClient.php │ │ └── Exception │ │ │ └── ElasticLoadBalancingException.php │ │ ├── ElasticLoadBalancingV2 │ │ ├── ElasticLoadBalancingV2Client.php │ │ └── Exception │ │ │ └── ElasticLoadBalancingV2Exception.php │ │ ├── ElasticTranscoder │ │ ├── ElasticTranscoderClient.php │ │ └── Exception │ │ │ └── ElasticTranscoderException.php │ │ ├── ElasticsearchService │ │ ├── ElasticsearchServiceClient.php │ │ └── Exception │ │ │ └── ElasticsearchServiceException.php │ │ ├── Emr │ │ ├── EmrClient.php │ │ └── Exception │ │ │ └── EmrException.php │ │ ├── Endpoint │ │ ├── EndpointProvider.php │ │ ├── Partition.php │ │ ├── PartitionEndpointProvider.php │ │ ├── PartitionInterface.php │ │ ├── PatternEndpointProvider.php │ │ ├── UseDualstackEndpoint │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ └── Exception │ │ │ │ └── ConfigurationException.php │ │ └── UseFipsEndpoint │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ └── Exception │ │ │ └── ConfigurationException.php │ │ ├── EndpointDiscovery │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ ├── EndpointDiscoveryMiddleware.php │ │ ├── EndpointList.php │ │ └── Exception │ │ │ └── ConfigurationException.php │ │ ├── EndpointParameterMiddleware.php │ │ ├── EndpointV2 │ │ ├── EndpointDefinitionProvider.php │ │ ├── EndpointProviderV2.php │ │ ├── EndpointV2SerializerTrait.php │ │ ├── Rule │ │ │ ├── AbstractRule.php │ │ │ ├── EndpointRule.php │ │ │ ├── ErrorRule.php │ │ │ ├── RuleCreator.php │ │ │ └── TreeRule.php │ │ └── Ruleset │ │ │ ├── Ruleset.php │ │ │ ├── RulesetEndpoint.php │ │ │ ├── RulesetParameter.php │ │ │ └── RulesetStandardLibrary.php │ │ ├── EntityResolution │ │ ├── EntityResolutionClient.php │ │ └── Exception │ │ │ └── EntityResolutionException.php │ │ ├── EventBridge │ │ ├── EventBridgeClient.php │ │ ├── EventBridgeEndpointMiddleware.php │ │ └── Exception │ │ │ └── EventBridgeException.php │ │ ├── Exception │ │ ├── AwsException.php │ │ ├── CommonRuntimeException.php │ │ ├── CouldNotCreateChecksumException.php │ │ ├── CredentialsException.php │ │ ├── CryptoException.php │ │ ├── CryptoPolyfillException.php │ │ ├── EventStreamDataException.php │ │ ├── IncalculablePayloadException.php │ │ ├── InvalidJsonException.php │ │ ├── InvalidRegionException.php │ │ ├── MultipartUploadException.php │ │ ├── TokenException.php │ │ ├── UnresolvedApiException.php │ │ ├── UnresolvedEndpointException.php │ │ └── UnresolvedSignatureException.php │ │ ├── FIS │ │ ├── Exception │ │ │ └── FISException.php │ │ └── FISClient.php │ │ ├── FMS │ │ ├── Exception │ │ │ └── FMSException.php │ │ └── FMSClient.php │ │ ├── FSx │ │ ├── Exception │ │ │ └── FSxException.php │ │ └── FSxClient.php │ │ ├── FinSpaceData │ │ ├── Exception │ │ │ └── FinSpaceDataException.php │ │ └── FinSpaceDataClient.php │ │ ├── Firehose │ │ ├── Exception │ │ │ └── FirehoseException.php │ │ └── FirehoseClient.php │ │ ├── ForecastQueryService │ │ ├── Exception │ │ │ └── ForecastQueryServiceException.php │ │ └── ForecastQueryServiceClient.php │ │ ├── ForecastService │ │ ├── Exception │ │ │ └── ForecastServiceException.php │ │ └── ForecastServiceClient.php │ │ ├── FraudDetector │ │ ├── Exception │ │ │ └── FraudDetectorException.php │ │ └── FraudDetectorClient.php │ │ ├── GameLift │ │ ├── Exception │ │ │ └── GameLiftException.php │ │ └── GameLiftClient.php │ │ ├── Glacier │ │ ├── Exception │ │ │ └── GlacierException.php │ │ ├── GlacierClient.php │ │ ├── MultipartUploader.php │ │ └── TreeHash.php │ │ ├── GlobalAccelerator │ │ ├── Exception │ │ │ └── GlobalAcceleratorException.php │ │ └── GlobalAcceleratorClient.php │ │ ├── Glue │ │ ├── Exception │ │ │ └── GlueException.php │ │ └── GlueClient.php │ │ ├── GlueDataBrew │ │ ├── Exception │ │ │ └── GlueDataBrewException.php │ │ └── GlueDataBrewClient.php │ │ ├── Greengrass │ │ ├── Exception │ │ │ └── GreengrassException.php │ │ └── GreengrassClient.php │ │ ├── GreengrassV2 │ │ ├── Exception │ │ │ └── GreengrassV2Exception.php │ │ └── GreengrassV2Client.php │ │ ├── GroundStation │ │ ├── Exception │ │ │ └── GroundStationException.php │ │ └── GroundStationClient.php │ │ ├── GuardDuty │ │ ├── Exception │ │ │ └── GuardDutyException.php │ │ └── GuardDutyClient.php │ │ ├── Handler │ │ ├── GuzzleV5 │ │ │ ├── GuzzleHandler.php │ │ │ ├── GuzzleStream.php │ │ │ └── PsrStream.php │ │ └── GuzzleV6 │ │ │ └── GuzzleHandler.php │ │ ├── HandlerList.php │ │ ├── HasDataTrait.php │ │ ├── HasMonitoringEventsTrait.php │ │ ├── HashInterface.php │ │ ├── HashingStream.php │ │ ├── Health │ │ ├── Exception │ │ │ └── HealthException.php │ │ └── HealthClient.php │ │ ├── HealthLake │ │ ├── Exception │ │ │ └── HealthLakeException.php │ │ └── HealthLakeClient.php │ │ ├── History.php │ │ ├── Honeycode │ │ ├── Exception │ │ │ └── HoneycodeException.php │ │ └── HoneycodeClient.php │ │ ├── IVS │ │ ├── Exception │ │ │ └── IVSException.php │ │ └── IVSClient.php │ │ ├── IVSRealTime │ │ ├── Exception │ │ │ └── IVSRealTimeException.php │ │ └── IVSRealTimeClient.php │ │ ├── Iam │ │ ├── Exception │ │ │ └── IamException.php │ │ └── IamClient.php │ │ ├── IdempotencyTokenMiddleware.php │ │ ├── IdentityStore │ │ ├── Exception │ │ │ └── IdentityStoreException.php │ │ └── IdentityStoreClient.php │ │ ├── ImportExport │ │ ├── Exception │ │ │ └── ImportExportException.php │ │ └── ImportExportClient.php │ │ ├── InputValidationMiddleware.php │ │ ├── Inspector │ │ ├── Exception │ │ │ └── InspectorException.php │ │ └── InspectorClient.php │ │ ├── Inspector2 │ │ ├── Exception │ │ │ └── Inspector2Exception.php │ │ └── Inspector2Client.php │ │ ├── InternetMonitor │ │ ├── Exception │ │ │ └── InternetMonitorException.php │ │ └── InternetMonitorClient.php │ │ ├── IoT1ClickDevicesService │ │ ├── Exception │ │ │ └── IoT1ClickDevicesServiceException.php │ │ └── IoT1ClickDevicesServiceClient.php │ │ ├── IoT1ClickProjects │ │ ├── Exception │ │ │ └── IoT1ClickProjectsException.php │ │ └── IoT1ClickProjectsClient.php │ │ ├── IoTAnalytics │ │ ├── Exception │ │ │ └── IoTAnalyticsException.php │ │ └── IoTAnalyticsClient.php │ │ ├── IoTDeviceAdvisor │ │ ├── Exception │ │ │ └── IoTDeviceAdvisorException.php │ │ └── IoTDeviceAdvisorClient.php │ │ ├── IoTEvents │ │ ├── Exception │ │ │ └── IoTEventsException.php │ │ └── IoTEventsClient.php │ │ ├── IoTEventsData │ │ ├── Exception │ │ │ └── IoTEventsDataException.php │ │ └── IoTEventsDataClient.php │ │ ├── IoTFleetHub │ │ ├── Exception │ │ │ └── IoTFleetHubException.php │ │ └── IoTFleetHubClient.php │ │ ├── IoTFleetWise │ │ ├── Exception │ │ │ └── IoTFleetWiseException.php │ │ └── IoTFleetWiseClient.php │ │ ├── IoTJobsDataPlane │ │ ├── Exception │ │ │ └── IoTJobsDataPlaneException.php │ │ └── IoTJobsDataPlaneClient.php │ │ ├── IoTRoboRunner │ │ ├── Exception │ │ │ └── IoTRoboRunnerException.php │ │ └── IoTRoboRunnerClient.php │ │ ├── IoTSecureTunneling │ │ ├── Exception │ │ │ └── IoTSecureTunnelingException.php │ │ └── IoTSecureTunnelingClient.php │ │ ├── IoTSiteWise │ │ ├── Exception │ │ │ └── IoTSiteWiseException.php │ │ └── IoTSiteWiseClient.php │ │ ├── IoTThingsGraph │ │ ├── Exception │ │ │ └── IoTThingsGraphException.php │ │ └── IoTThingsGraphClient.php │ │ ├── IoTTwinMaker │ │ ├── Exception │ │ │ └── IoTTwinMakerException.php │ │ └── IoTTwinMakerClient.php │ │ ├── IoTWireless │ │ ├── Exception │ │ │ └── IoTWirelessException.php │ │ └── IoTWirelessClient.php │ │ ├── Iot │ │ ├── Exception │ │ │ └── IotException.php │ │ └── IotClient.php │ │ ├── IotDataPlane │ │ ├── Exception │ │ │ └── IotDataPlaneException.php │ │ └── IotDataPlaneClient.php │ │ ├── JsonCompiler.php │ │ ├── Kafka │ │ ├── Exception │ │ │ └── KafkaException.php │ │ └── KafkaClient.php │ │ ├── KafkaConnect │ │ ├── Exception │ │ │ └── KafkaConnectException.php │ │ └── KafkaConnectClient.php │ │ ├── KendraRanking │ │ ├── Exception │ │ │ └── KendraRankingException.php │ │ └── KendraRankingClient.php │ │ ├── Keyspaces │ │ ├── Exception │ │ │ └── KeyspacesException.php │ │ └── KeyspacesClient.php │ │ ├── Kinesis │ │ ├── Exception │ │ │ └── KinesisException.php │ │ └── KinesisClient.php │ │ ├── KinesisAnalytics │ │ ├── Exception │ │ │ └── KinesisAnalyticsException.php │ │ └── KinesisAnalyticsClient.php │ │ ├── KinesisAnalyticsV2 │ │ ├── Exception │ │ │ └── KinesisAnalyticsV2Exception.php │ │ └── KinesisAnalyticsV2Client.php │ │ ├── KinesisVideo │ │ ├── Exception │ │ │ └── KinesisVideoException.php │ │ └── KinesisVideoClient.php │ │ ├── KinesisVideoArchivedMedia │ │ ├── Exception │ │ │ └── KinesisVideoArchivedMediaException.php │ │ └── KinesisVideoArchivedMediaClient.php │ │ ├── KinesisVideoMedia │ │ ├── Exception │ │ │ └── KinesisVideoMediaException.php │ │ └── KinesisVideoMediaClient.php │ │ ├── KinesisVideoSignalingChannels │ │ ├── Exception │ │ │ └── KinesisVideoSignalingChannelsException.php │ │ └── KinesisVideoSignalingChannelsClient.php │ │ ├── KinesisVideoWebRTCStorage │ │ ├── Exception │ │ │ └── KinesisVideoWebRTCStorageException.php │ │ └── KinesisVideoWebRTCStorageClient.php │ │ ├── Kms │ │ ├── Exception │ │ │ └── KmsException.php │ │ └── KmsClient.php │ │ ├── LakeFormation │ │ ├── Exception │ │ │ └── LakeFormationException.php │ │ └── LakeFormationClient.php │ │ ├── Lambda │ │ ├── Exception │ │ │ └── LambdaException.php │ │ └── LambdaClient.php │ │ ├── LaunchWizard │ │ ├── Exception │ │ │ └── LaunchWizardException.php │ │ └── LaunchWizardClient.php │ │ ├── LexModelBuildingService │ │ ├── Exception │ │ │ └── LexModelBuildingServiceException.php │ │ └── LexModelBuildingServiceClient.php │ │ ├── LexModelsV2 │ │ ├── Exception │ │ │ └── LexModelsV2Exception.php │ │ └── LexModelsV2Client.php │ │ ├── LexRuntimeService │ │ ├── Exception │ │ │ └── LexRuntimeServiceException.php │ │ └── LexRuntimeServiceClient.php │ │ ├── LexRuntimeV2 │ │ ├── Exception │ │ │ └── LexRuntimeV2Exception.php │ │ └── LexRuntimeV2Client.php │ │ ├── LicenseManager │ │ ├── Exception │ │ │ └── LicenseManagerException.php │ │ └── LicenseManagerClient.php │ │ ├── LicenseManagerLinuxSubscriptions │ │ ├── Exception │ │ │ └── LicenseManagerLinuxSubscriptionsException.php │ │ └── LicenseManagerLinuxSubscriptionsClient.php │ │ ├── LicenseManagerUserSubscriptions │ │ ├── Exception │ │ │ └── LicenseManagerUserSubscriptionsException.php │ │ └── LicenseManagerUserSubscriptionsClient.php │ │ ├── Lightsail │ │ ├── Exception │ │ │ └── LightsailException.php │ │ └── LightsailClient.php │ │ ├── LocationService │ │ ├── Exception │ │ │ └── LocationServiceException.php │ │ └── LocationServiceClient.php │ │ ├── LookoutEquipment │ │ ├── Exception │ │ │ └── LookoutEquipmentException.php │ │ └── LookoutEquipmentClient.php │ │ ├── LookoutMetrics │ │ ├── Exception │ │ │ └── LookoutMetricsException.php │ │ └── LookoutMetricsClient.php │ │ ├── LookoutforVision │ │ ├── Exception │ │ │ └── LookoutforVisionException.php │ │ └── LookoutforVisionClient.php │ │ ├── LruArrayCache.php │ │ ├── MQ │ │ ├── Exception │ │ │ └── MQException.php │ │ └── MQClient.php │ │ ├── MTurk │ │ ├── Exception │ │ │ └── MTurkException.php │ │ └── MTurkClient.php │ │ ├── MWAA │ │ ├── Exception │ │ │ └── MWAAException.php │ │ └── MWAAClient.php │ │ ├── MachineLearning │ │ ├── Exception │ │ │ └── MachineLearningException.php │ │ └── MachineLearningClient.php │ │ ├── Macie │ │ ├── Exception │ │ │ └── MacieException.php │ │ └── MacieClient.php │ │ ├── Macie2 │ │ ├── Exception │ │ │ └── Macie2Exception.php │ │ └── Macie2Client.php │ │ ├── MainframeModernization │ │ ├── Exception │ │ │ └── MainframeModernizationException.php │ │ └── MainframeModernizationClient.php │ │ ├── ManagedBlockchain │ │ ├── Exception │ │ │ └── ManagedBlockchainException.php │ │ └── ManagedBlockchainClient.php │ │ ├── ManagedBlockchainQuery │ │ ├── Exception │ │ │ └── ManagedBlockchainQueryException.php │ │ └── ManagedBlockchainQueryClient.php │ │ ├── ManagedGrafana │ │ ├── Exception │ │ │ └── ManagedGrafanaException.php │ │ └── ManagedGrafanaClient.php │ │ ├── MarketplaceCatalog │ │ ├── Exception │ │ │ └── MarketplaceCatalogException.php │ │ └── MarketplaceCatalogClient.php │ │ ├── MarketplaceCommerceAnalytics │ │ ├── Exception │ │ │ └── MarketplaceCommerceAnalyticsException.php │ │ └── MarketplaceCommerceAnalyticsClient.php │ │ ├── MarketplaceEntitlementService │ │ ├── Exception │ │ │ └── MarketplaceEntitlementServiceException.php │ │ └── MarketplaceEntitlementServiceClient.php │ │ ├── MarketplaceMetering │ │ ├── Exception │ │ │ └── MarketplaceMeteringException.php │ │ └── MarketplaceMeteringClient.php │ │ ├── MediaConnect │ │ ├── Exception │ │ │ └── MediaConnectException.php │ │ └── MediaConnectClient.php │ │ ├── MediaConvert │ │ ├── Exception │ │ │ └── MediaConvertException.php │ │ └── MediaConvertClient.php │ │ ├── MediaLive │ │ ├── Exception │ │ │ └── MediaLiveException.php │ │ └── MediaLiveClient.php │ │ ├── MediaPackage │ │ ├── Exception │ │ │ └── MediaPackageException.php │ │ └── MediaPackageClient.php │ │ ├── MediaPackageV2 │ │ ├── Exception │ │ │ └── MediaPackageV2Exception.php │ │ └── MediaPackageV2Client.php │ │ ├── MediaPackageVod │ │ ├── Exception │ │ │ └── MediaPackageVodException.php │ │ └── MediaPackageVodClient.php │ │ ├── MediaStore │ │ ├── Exception │ │ │ └── MediaStoreException.php │ │ └── MediaStoreClient.php │ │ ├── MediaStoreData │ │ ├── Exception │ │ │ └── MediaStoreDataException.php │ │ └── MediaStoreDataClient.php │ │ ├── MediaTailor │ │ ├── Exception │ │ │ └── MediaTailorException.php │ │ └── MediaTailorClient.php │ │ ├── MedicalImaging │ │ ├── Exception │ │ │ └── MedicalImagingException.php │ │ └── MedicalImagingClient.php │ │ ├── MemoryDB │ │ ├── Exception │ │ │ └── MemoryDBException.php │ │ └── MemoryDBClient.php │ │ ├── Middleware.php │ │ ├── MigrationHub │ │ ├── Exception │ │ │ └── MigrationHubException.php │ │ └── MigrationHubClient.php │ │ ├── MigrationHubConfig │ │ ├── Exception │ │ │ └── MigrationHubConfigException.php │ │ └── MigrationHubConfigClient.php │ │ ├── MigrationHubOrchestrator │ │ ├── Exception │ │ │ └── MigrationHubOrchestratorException.php │ │ └── MigrationHubOrchestratorClient.php │ │ ├── MigrationHubRefactorSpaces │ │ ├── Exception │ │ │ └── MigrationHubRefactorSpacesException.php │ │ └── MigrationHubRefactorSpacesClient.php │ │ ├── MigrationHubStrategyRecommendations │ │ ├── Exception │ │ │ └── MigrationHubStrategyRecommendationsException.php │ │ └── MigrationHubStrategyRecommendationsClient.php │ │ ├── Mobile │ │ ├── Exception │ │ │ └── MobileException.php │ │ └── MobileClient.php │ │ ├── MockHandler.php │ │ ├── MonitoringEventsInterface.php │ │ ├── MultiRegionClient.php │ │ ├── Multipart │ │ ├── AbstractUploadManager.php │ │ ├── AbstractUploader.php │ │ └── UploadState.php │ │ ├── Neptune │ │ ├── Exception │ │ │ └── NeptuneException.php │ │ └── NeptuneClient.php │ │ ├── Neptunedata │ │ ├── Exception │ │ │ └── NeptunedataException.php │ │ └── NeptunedataClient.php │ │ ├── NetworkFirewall │ │ ├── Exception │ │ │ └── NetworkFirewallException.php │ │ └── NetworkFirewallClient.php │ │ ├── NetworkManager │ │ ├── Exception │ │ │ └── NetworkManagerException.php │ │ └── NetworkManagerClient.php │ │ ├── NimbleStudio │ │ ├── Exception │ │ │ └── NimbleStudioException.php │ │ └── NimbleStudioClient.php │ │ ├── OAM │ │ ├── Exception │ │ │ └── OAMException.php │ │ └── OAMClient.php │ │ ├── OSIS │ │ ├── Exception │ │ │ └── OSISException.php │ │ └── OSISClient.php │ │ ├── Omics │ │ ├── Exception │ │ │ └── OmicsException.php │ │ └── OmicsClient.php │ │ ├── OpenSearchServerless │ │ ├── Exception │ │ │ └── OpenSearchServerlessException.php │ │ └── OpenSearchServerlessClient.php │ │ ├── OpenSearchService │ │ ├── Exception │ │ │ └── OpenSearchServiceException.php │ │ └── OpenSearchServiceClient.php │ │ ├── OpsWorks │ │ ├── Exception │ │ │ └── OpsWorksException.php │ │ └── OpsWorksClient.php │ │ ├── OpsWorksCM │ │ ├── Exception │ │ │ └── OpsWorksCMException.php │ │ └── OpsWorksCMClient.php │ │ ├── Organizations │ │ ├── Exception │ │ │ └── OrganizationsException.php │ │ └── OrganizationsClient.php │ │ ├── Outposts │ │ ├── Exception │ │ │ └── OutpostsException.php │ │ └── OutpostsClient.php │ │ ├── PI │ │ ├── Exception │ │ │ └── PIException.php │ │ └── PIClient.php │ │ ├── Panorama │ │ ├── Exception │ │ │ └── PanoramaException.php │ │ └── PanoramaClient.php │ │ ├── PaymentCryptography │ │ ├── Exception │ │ │ └── PaymentCryptographyException.php │ │ └── PaymentCryptographyClient.php │ │ ├── PaymentCryptographyData │ │ ├── Exception │ │ │ └── PaymentCryptographyDataException.php │ │ └── PaymentCryptographyDataClient.php │ │ ├── PcaConnectorAd │ │ ├── Exception │ │ │ └── PcaConnectorAdException.php │ │ └── PcaConnectorAdClient.php │ │ ├── Personalize │ │ ├── Exception │ │ │ └── PersonalizeException.php │ │ └── PersonalizeClient.php │ │ ├── PersonalizeEvents │ │ ├── Exception │ │ │ └── PersonalizeEventsException.php │ │ └── PersonalizeEventsClient.php │ │ ├── PersonalizeRuntime │ │ ├── Exception │ │ │ └── PersonalizeRuntimeException.php │ │ └── PersonalizeRuntimeClient.php │ │ ├── PhpHash.php │ │ ├── Pinpoint │ │ ├── Exception │ │ │ └── PinpointException.php │ │ └── PinpointClient.php │ │ ├── PinpointEmail │ │ ├── Exception │ │ │ └── PinpointEmailException.php │ │ └── PinpointEmailClient.php │ │ ├── PinpointSMSVoice │ │ ├── Exception │ │ │ └── PinpointSMSVoiceException.php │ │ └── PinpointSMSVoiceClient.php │ │ ├── PinpointSMSVoiceV2 │ │ ├── Exception │ │ │ └── PinpointSMSVoiceV2Exception.php │ │ └── PinpointSMSVoiceV2Client.php │ │ ├── Pipes │ │ ├── Exception │ │ │ └── PipesException.php │ │ └── PipesClient.php │ │ ├── Polly │ │ ├── Exception │ │ │ └── PollyException.php │ │ └── PollyClient.php │ │ ├── PresignUrlMiddleware.php │ │ ├── Pricing │ │ ├── Exception │ │ │ └── PricingException.php │ │ └── PricingClient.php │ │ ├── PrivateNetworks │ │ ├── Exception │ │ │ └── PrivateNetworksException.php │ │ └── PrivateNetworksClient.php │ │ ├── PrometheusService │ │ ├── Exception │ │ │ └── PrometheusServiceException.php │ │ └── PrometheusServiceClient.php │ │ ├── Proton │ │ ├── Exception │ │ │ └── ProtonException.php │ │ └── ProtonClient.php │ │ ├── Psr16CacheAdapter.php │ │ ├── PsrCacheAdapter.php │ │ ├── QLDB │ │ ├── Exception │ │ │ └── QLDBException.php │ │ └── QLDBClient.php │ │ ├── QLDBSession │ │ ├── Exception │ │ │ └── QLDBSessionException.php │ │ └── QLDBSessionClient.php │ │ ├── QueryCompatibleInputMiddleware.php │ │ ├── QuickSight │ │ ├── Exception │ │ │ └── QuickSightException.php │ │ └── QuickSightClient.php │ │ ├── RAM │ │ ├── Exception │ │ │ └── RAMException.php │ │ └── RAMClient.php │ │ ├── RDSDataService │ │ ├── Exception │ │ │ └── RDSDataServiceException.php │ │ └── RDSDataServiceClient.php │ │ ├── Rds │ │ ├── AuthTokenGenerator.php │ │ ├── Exception │ │ │ └── RdsException.php │ │ └── RdsClient.php │ │ ├── RecycleBin │ │ ├── Exception │ │ │ └── RecycleBinException.php │ │ └── RecycleBinClient.php │ │ ├── Redshift │ │ ├── Exception │ │ │ └── RedshiftException.php │ │ └── RedshiftClient.php │ │ ├── RedshiftDataAPIService │ │ ├── Exception │ │ │ └── RedshiftDataAPIServiceException.php │ │ └── RedshiftDataAPIServiceClient.php │ │ ├── RedshiftServerless │ │ ├── Exception │ │ │ └── RedshiftServerlessException.php │ │ └── RedshiftServerlessClient.php │ │ ├── Rekognition │ │ ├── Exception │ │ │ └── RekognitionException.php │ │ └── RekognitionClient.php │ │ ├── RequestCompressionMiddleware.php │ │ ├── ResilienceHub │ │ ├── Exception │ │ │ └── ResilienceHubException.php │ │ └── ResilienceHubClient.php │ │ ├── ResourceExplorer2 │ │ ├── Exception │ │ │ └── ResourceExplorer2Exception.php │ │ └── ResourceExplorer2Client.php │ │ ├── ResourceGroups │ │ ├── Exception │ │ │ └── ResourceGroupsException.php │ │ └── ResourceGroupsClient.php │ │ ├── ResourceGroupsTaggingAPI │ │ ├── Exception │ │ │ └── ResourceGroupsTaggingAPIException.php │ │ └── ResourceGroupsTaggingAPIClient.php │ │ ├── ResponseContainerInterface.php │ │ ├── Result.php │ │ ├── ResultInterface.php │ │ ├── ResultPaginator.php │ │ ├── Retry │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ ├── Exception │ │ │ └── ConfigurationException.php │ │ ├── QuotaManager.php │ │ ├── RateLimiter.php │ │ └── RetryHelperTrait.php │ │ ├── RetryMiddleware.php │ │ ├── RetryMiddlewareV2.php │ │ ├── RoboMaker │ │ ├── Exception │ │ │ └── RoboMakerException.php │ │ └── RoboMakerClient.php │ │ ├── RolesAnywhere │ │ ├── Exception │ │ │ └── RolesAnywhereException.php │ │ └── RolesAnywhereClient.php │ │ ├── Route53 │ │ ├── Exception │ │ │ └── Route53Exception.php │ │ └── Route53Client.php │ │ ├── Route53Domains │ │ ├── Exception │ │ │ └── Route53DomainsException.php │ │ └── Route53DomainsClient.php │ │ ├── Route53RecoveryCluster │ │ ├── Exception │ │ │ └── Route53RecoveryClusterException.php │ │ └── Route53RecoveryClusterClient.php │ │ ├── Route53RecoveryControlConfig │ │ ├── Exception │ │ │ └── Route53RecoveryControlConfigException.php │ │ └── Route53RecoveryControlConfigClient.php │ │ ├── Route53RecoveryReadiness │ │ ├── Exception │ │ │ └── Route53RecoveryReadinessException.php │ │ └── Route53RecoveryReadinessClient.php │ │ ├── Route53Resolver │ │ ├── Exception │ │ │ └── Route53ResolverException.php │ │ └── Route53ResolverClient.php │ │ ├── S3 │ │ ├── AmbiguousSuccessParser.php │ │ ├── ApplyChecksumMiddleware.php │ │ ├── BatchDelete.php │ │ ├── BucketEndpointArnMiddleware.php │ │ ├── BucketEndpointMiddleware.php │ │ ├── CalculatesChecksumTrait.php │ │ ├── Crypto │ │ │ ├── CryptoParamsTrait.php │ │ │ ├── CryptoParamsTraitV2.php │ │ │ ├── HeadersMetadataStrategy.php │ │ │ ├── InstructionFileMetadataStrategy.php │ │ │ ├── S3EncryptionClient.php │ │ │ ├── S3EncryptionClientV2.php │ │ │ ├── S3EncryptionMultipartUploader.php │ │ │ ├── S3EncryptionMultipartUploaderV2.php │ │ │ └── UserAgentTrait.php │ │ ├── EndpointRegionHelperTrait.php │ │ ├── Exception │ │ │ ├── DeleteMultipleObjectsException.php │ │ │ ├── PermanentRedirectException.php │ │ │ ├── S3Exception.php │ │ │ └── S3MultipartUploadException.php │ │ ├── GetBucketLocationParser.php │ │ ├── MultipartCopy.php │ │ ├── MultipartUploader.php │ │ ├── MultipartUploadingTrait.php │ │ ├── ObjectCopier.php │ │ ├── ObjectUploader.php │ │ ├── PermanentRedirectMiddleware.php │ │ ├── PostObject.php │ │ ├── PostObjectV4.php │ │ ├── PutObjectUrlMiddleware.php │ │ ├── RegionalEndpoint │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ └── Exception │ │ │ │ └── ConfigurationException.php │ │ ├── RetryableMalformedResponseParser.php │ │ ├── S3Client.php │ │ ├── S3ClientInterface.php │ │ ├── S3ClientTrait.php │ │ ├── S3EndpointMiddleware.php │ │ ├── S3MultiRegionClient.php │ │ ├── S3UriParser.php │ │ ├── SSECMiddleware.php │ │ ├── StreamWrapper.php │ │ ├── Transfer.php │ │ ├── UseArnRegion │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ └── Exception │ │ │ │ └── ConfigurationException.php │ │ └── ValidateResponseChecksumParser.php │ │ ├── S3Control │ │ ├── EndpointArnMiddleware.php │ │ ├── Exception │ │ │ └── S3ControlException.php │ │ └── S3ControlClient.php │ │ ├── S3Outposts │ │ ├── Exception │ │ │ └── S3OutpostsException.php │ │ └── S3OutpostsClient.php │ │ ├── SSMContacts │ │ ├── Exception │ │ │ └── SSMContactsException.php │ │ └── SSMContactsClient.php │ │ ├── SSMIncidents │ │ ├── Exception │ │ │ └── SSMIncidentsException.php │ │ └── SSMIncidentsClient.php │ │ ├── SSO │ │ ├── Exception │ │ │ └── SSOException.php │ │ └── SSOClient.php │ │ ├── SSOAdmin │ │ ├── Exception │ │ │ └── SSOAdminException.php │ │ └── SSOAdminClient.php │ │ ├── SSOOIDC │ │ ├── Exception │ │ │ └── SSOOIDCException.php │ │ └── SSOOIDCClient.php │ │ ├── SageMaker │ │ ├── Exception │ │ │ └── SageMakerException.php │ │ └── SageMakerClient.php │ │ ├── SageMakerFeatureStoreRuntime │ │ ├── Exception │ │ │ └── SageMakerFeatureStoreRuntimeException.php │ │ └── SageMakerFeatureStoreRuntimeClient.php │ │ ├── SageMakerGeospatial │ │ ├── Exception │ │ │ └── SageMakerGeospatialException.php │ │ └── SageMakerGeospatialClient.php │ │ ├── SageMakerMetrics │ │ ├── Exception │ │ │ └── SageMakerMetricsException.php │ │ └── SageMakerMetricsClient.php │ │ ├── SageMakerRuntime │ │ ├── Exception │ │ │ └── SageMakerRuntimeException.php │ │ └── SageMakerRuntimeClient.php │ │ ├── SagemakerEdgeManager │ │ ├── Exception │ │ │ └── SagemakerEdgeManagerException.php │ │ └── SagemakerEdgeManagerClient.php │ │ ├── SavingsPlans │ │ ├── Exception │ │ │ └── SavingsPlansException.php │ │ └── SavingsPlansClient.php │ │ ├── Scheduler │ │ ├── Exception │ │ │ └── SchedulerException.php │ │ └── SchedulerClient.php │ │ ├── Schemas │ │ ├── Exception │ │ │ └── SchemasException.php │ │ └── SchemasClient.php │ │ ├── Script │ │ └── Composer │ │ │ └── Composer.php │ │ ├── Sdk.php │ │ ├── SecretsManager │ │ ├── Exception │ │ │ └── SecretsManagerException.php │ │ └── SecretsManagerClient.php │ │ ├── SecurityHub │ │ ├── Exception │ │ │ └── SecurityHubException.php │ │ └── SecurityHubClient.php │ │ ├── SecurityLake │ │ ├── Exception │ │ │ └── SecurityLakeException.php │ │ └── SecurityLakeClient.php │ │ ├── ServerlessApplicationRepository │ │ ├── Exception │ │ │ └── ServerlessApplicationRepositoryException.php │ │ └── ServerlessApplicationRepositoryClient.php │ │ ├── ServiceCatalog │ │ ├── Exception │ │ │ └── ServiceCatalogException.php │ │ └── ServiceCatalogClient.php │ │ ├── ServiceDiscovery │ │ ├── Exception │ │ │ └── ServiceDiscoveryException.php │ │ └── ServiceDiscoveryClient.php │ │ ├── ServiceQuotas │ │ ├── Exception │ │ │ └── ServiceQuotasException.php │ │ └── ServiceQuotasClient.php │ │ ├── Ses │ │ ├── Exception │ │ │ └── SesException.php │ │ └── SesClient.php │ │ ├── SesV2 │ │ ├── Exception │ │ │ └── SesV2Exception.php │ │ └── SesV2Client.php │ │ ├── Sfn │ │ ├── Exception │ │ │ └── SfnException.php │ │ └── SfnClient.php │ │ ├── Shield │ │ ├── Exception │ │ │ └── ShieldException.php │ │ └── ShieldClient.php │ │ ├── Signature │ │ ├── AnonymousSignature.php │ │ ├── S3SignatureV4.php │ │ ├── SignatureInterface.php │ │ ├── SignatureProvider.php │ │ ├── SignatureTrait.php │ │ └── SignatureV4.php │ │ ├── SimSpaceWeaver │ │ ├── Exception │ │ │ └── SimSpaceWeaverException.php │ │ └── SimSpaceWeaverClient.php │ │ ├── Sms │ │ ├── Exception │ │ │ └── SmsException.php │ │ └── SmsClient.php │ │ ├── SnowBall │ │ ├── Exception │ │ │ └── SnowBallException.php │ │ └── SnowBallClient.php │ │ ├── SnowDeviceManagement │ │ ├── Exception │ │ │ └── SnowDeviceManagementException.php │ │ └── SnowDeviceManagementClient.php │ │ ├── Sns │ │ ├── Exception │ │ │ └── SnsException.php │ │ └── SnsClient.php │ │ ├── Sqs │ │ ├── Exception │ │ │ └── SqsException.php │ │ └── SqsClient.php │ │ ├── Ssm │ │ ├── Exception │ │ │ └── SsmException.php │ │ └── SsmClient.php │ │ ├── SsmSap │ │ ├── Exception │ │ │ └── SsmSapException.php │ │ └── SsmSapClient.php │ │ ├── StorageGateway │ │ ├── Exception │ │ │ └── StorageGatewayException.php │ │ └── StorageGatewayClient.php │ │ ├── StreamRequestPayloadMiddleware.php │ │ ├── Sts │ │ ├── Exception │ │ │ └── StsException.php │ │ ├── RegionalEndpoints │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ └── Exception │ │ │ │ └── ConfigurationException.php │ │ └── StsClient.php │ │ ├── Support │ │ ├── Exception │ │ │ └── SupportException.php │ │ └── SupportClient.php │ │ ├── SupportApp │ │ ├── Exception │ │ │ └── SupportAppException.php │ │ └── SupportAppClient.php │ │ ├── Swf │ │ ├── Exception │ │ │ └── SwfException.php │ │ └── SwfClient.php │ │ ├── Synthetics │ │ ├── Exception │ │ │ └── SyntheticsException.php │ │ └── SyntheticsClient.php │ │ ├── Textract │ │ ├── Exception │ │ │ └── TextractException.php │ │ └── TextractClient.php │ │ ├── TimestreamQuery │ │ ├── Exception │ │ │ └── TimestreamQueryException.php │ │ └── TimestreamQueryClient.php │ │ ├── TimestreamWrite │ │ ├── Exception │ │ │ └── TimestreamWriteException.php │ │ └── TimestreamWriteClient.php │ │ ├── Tnb │ │ ├── Exception │ │ │ └── TnbException.php │ │ └── TnbClient.php │ │ ├── Token │ │ ├── BearerTokenAuthorization.php │ │ ├── ParsesIniTrait.php │ │ ├── RefreshableTokenProviderInterface.php │ │ ├── SsoToken.php │ │ ├── SsoTokenProvider.php │ │ ├── Token.php │ │ ├── TokenAuthorization.php │ │ ├── TokenInterface.php │ │ └── TokenProvider.php │ │ ├── TraceMiddleware.php │ │ ├── TranscribeService │ │ ├── Exception │ │ │ └── TranscribeServiceException.php │ │ └── TranscribeServiceClient.php │ │ ├── Transfer │ │ ├── Exception │ │ │ └── TransferException.php │ │ └── TransferClient.php │ │ ├── Translate │ │ ├── Exception │ │ │ └── TranslateException.php │ │ └── TranslateClient.php │ │ ├── VPCLattice │ │ ├── Exception │ │ │ └── VPCLatticeException.php │ │ └── VPCLatticeClient.php │ │ ├── VerifiedPermissions │ │ ├── Exception │ │ │ └── VerifiedPermissionsException.php │ │ └── VerifiedPermissionsClient.php │ │ ├── VoiceID │ │ ├── Exception │ │ │ └── VoiceIDException.php │ │ └── VoiceIDClient.php │ │ ├── WAFV2 │ │ ├── Exception │ │ │ └── WAFV2Exception.php │ │ └── WAFV2Client.php │ │ ├── Waf │ │ ├── Exception │ │ │ └── WafException.php │ │ └── WafClient.php │ │ ├── WafRegional │ │ ├── Exception │ │ │ └── WafRegionalException.php │ │ └── WafRegionalClient.php │ │ ├── Waiter.php │ │ ├── WellArchitected │ │ ├── Exception │ │ │ └── WellArchitectedException.php │ │ └── WellArchitectedClient.php │ │ ├── WorkDocs │ │ ├── Exception │ │ │ └── WorkDocsException.php │ │ └── WorkDocsClient.php │ │ ├── WorkLink │ │ ├── Exception │ │ │ └── WorkLinkException.php │ │ └── WorkLinkClient.php │ │ ├── WorkMail │ │ ├── Exception │ │ │ └── WorkMailException.php │ │ └── WorkMailClient.php │ │ ├── WorkMailMessageFlow │ │ ├── Exception │ │ │ └── WorkMailMessageFlowException.php │ │ └── WorkMailMessageFlowClient.php │ │ ├── WorkSpaces │ │ ├── Exception │ │ │ └── WorkSpacesException.php │ │ └── WorkSpacesClient.php │ │ ├── WorkSpacesWeb │ │ ├── Exception │ │ │ └── WorkSpacesWebException.php │ │ └── WorkSpacesWebClient.php │ │ ├── WrappedHttpHandler.php │ │ ├── XRay │ │ ├── Exception │ │ │ └── XRayException.php │ │ └── XRayClient.php │ │ ├── data │ │ ├── accessanalyzer │ │ │ └── 2019-11-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── account │ │ │ └── 2021-02-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── defaults-1.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── acm-pca │ │ │ └── 2017-08-22 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── acm │ │ │ └── 2015-12-08 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── alexaforbusiness │ │ │ └── 2017-11-09 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── aliases.json.php │ │ ├── amp │ │ │ └── 2020-08-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── amplify │ │ │ └── 2017-07-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── amplifybackend │ │ │ └── 2020-08-11 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── amplifyuibuilder │ │ │ └── 2021-08-11 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── apigateway │ │ │ └── 2015-07-09 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── apigatewaymanagementapi │ │ │ └── 2018-11-29 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── apigatewayv2 │ │ │ └── 2018-11-29 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── appconfig │ │ │ └── 2019-10-09 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── appconfigdata │ │ │ └── 2021-11-11 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── appfabric │ │ │ └── 2023-05-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── appflow │ │ │ └── 2020-08-23 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── appintegrations │ │ │ └── 2020-07-29 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── application-autoscaling │ │ │ └── 2016-02-06 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── application-insights │ │ │ └── 2018-11-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── applicationcostprofiler │ │ │ └── 2020-09-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── appmesh │ │ │ ├── 2018-10-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ └── 2019-01-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── apprunner │ │ │ └── 2020-05-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── appstream │ │ │ └── 2016-12-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── appsync │ │ │ └── 2017-07-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── arc-zonal-shift │ │ │ └── 2022-10-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── athena │ │ │ └── 2017-05-18 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── auditmanager │ │ │ └── 2017-07-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── autoscaling-plans │ │ │ └── 2018-01-06 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── autoscaling │ │ │ └── 2011-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── backup-gateway │ │ │ └── 2021-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── backup │ │ │ └── 2018-11-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── backupstorage │ │ │ └── 2018-04-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── batch │ │ │ └── 2016-08-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── bedrock-runtime │ │ │ └── 2023-09-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── bedrock │ │ │ └── 2023-04-20 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── billingconductor │ │ │ └── 2021-07-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── braket │ │ │ └── 2019-09-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── budgets │ │ │ └── 2016-10-20 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── ce │ │ │ └── 2017-10-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── chime-sdk-identity │ │ │ └── 2021-04-20 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── chime-sdk-media-pipelines │ │ │ └── 2021-07-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── chime-sdk-meetings │ │ │ └── 2021-07-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── chime-sdk-messaging │ │ │ └── 2021-05-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── chime-sdk-voice │ │ │ └── 2022-08-03 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── chime │ │ │ └── 2018-05-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── cleanrooms │ │ │ └── 2022-02-17 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── cloud9 │ │ │ └── 2017-09-23 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── cloudcontrol │ │ │ └── 2021-09-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── clouddirectory │ │ │ ├── 2016-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ └── 2017-01-11 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── cloudformation │ │ │ └── 2010-05-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── cloudfront │ │ │ ├── 2015-07-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2016-01-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2016-08-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2016-08-20 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2016-09-07 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2016-09-29 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2016-11-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2017-03-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2017-10-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2018-06-18 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2018-11-05 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2019-03-26 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ └── 2020-05-31 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── cloudhsm │ │ │ └── 2014-05-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── cloudhsmv2 │ │ │ └── 2017-04-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── cloudsearch │ │ │ └── 2013-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── cloudsearchdomain │ │ │ └── 2013-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ └── endpoint-rule-set-1.json.php │ │ ├── cloudtrail-data │ │ │ └── 2021-08-11 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── cloudtrail │ │ │ └── 2013-11-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── codeartifact │ │ │ └── 2018-09-22 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── codebuild │ │ │ └── 2016-10-06 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── codecatalyst │ │ │ └── 2022-09-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── codecommit │ │ │ └── 2015-04-13 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── codedeploy │ │ │ └── 2014-10-06 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── codeguru-reviewer │ │ │ └── 2019-09-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── codeguru-security │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── codeguruprofiler │ │ │ └── 2019-07-18 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── codepipeline │ │ │ └── 2015-07-09 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── codestar-connections │ │ │ └── 2019-12-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── codestar-notifications │ │ │ └── 2019-10-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── codestar │ │ │ └── 2017-04-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── cognito-identity │ │ │ └── 2014-06-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── cognito-idp │ │ │ └── 2016-04-18 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── cognito-sync │ │ │ └── 2014-06-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── comprehend │ │ │ └── 2017-11-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── comprehendmedical │ │ │ └── 2018-10-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── compute-optimizer │ │ │ └── 2019-11-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── config │ │ │ └── 2014-11-12 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── connect-contact-lens │ │ │ └── 2020-08-21 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── connect │ │ │ └── 2017-08-08 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── connectcampaigns │ │ │ └── 2021-01-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── connectcases │ │ │ └── 2022-10-03 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── connectparticipant │ │ │ └── 2018-09-07 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── controltower │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── cur │ │ │ └── 2017-01-06 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── customer-profiles │ │ │ └── 2020-08-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── data.iot │ │ │ └── 2015-05-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── databrew │ │ │ └── 2017-07-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── dataexchange │ │ │ └── 2017-07-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── datapipeline │ │ │ └── 2012-10-29 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── datasync │ │ │ └── 2018-11-09 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── datazone │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── dax │ │ │ └── 2017-04-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── detective │ │ │ └── 2018-10-26 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── devicefarm │ │ │ └── 2015-06-23 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── devops-guru │ │ │ └── 2020-12-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── directconnect │ │ │ └── 2012-10-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── discovery │ │ │ └── 2015-11-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── dlm │ │ │ └── 2018-01-12 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── dms │ │ │ └── 2016-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── docdb-elastic │ │ │ └── 2022-11-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── docdb │ │ │ └── 2014-10-31 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── drs │ │ │ └── 2020-02-26 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── ds │ │ │ └── 2015-04-16 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── dynamodb │ │ │ ├── 2011-12-05 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ └── 2012-08-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── ebs │ │ │ └── 2019-11-02 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── ec2-instance-connect │ │ │ └── 2018-04-02 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── ec2 │ │ │ ├── 2015-10-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2016-04-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── 2016-09-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ └── 2016-11-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── ecr-public │ │ │ └── 2020-10-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── ecr │ │ │ └── 2015-09-21 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── ecs │ │ │ └── 2014-11-13 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── eks │ │ │ └── 2017-11-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── elastic-inference │ │ │ └── 2017-07-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── elasticache │ │ │ └── 2015-02-02 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── elasticbeanstalk │ │ │ └── 2010-12-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── elasticfilesystem │ │ │ └── 2015-02-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── elasticloadbalancing │ │ │ └── 2012-06-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── elasticloadbalancingv2 │ │ │ └── 2015-12-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── elasticmapreduce │ │ │ └── 2009-03-31 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── elastictranscoder │ │ │ └── 2012-09-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── email │ │ │ └── 2010-12-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── emr-containers │ │ │ └── 2020-10-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── emr-serverless │ │ │ └── 2021-07-13 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── endpoints.json.php │ │ ├── endpoints_prefix_history.json.php │ │ ├── entitlement.marketplace │ │ │ └── 2017-01-11 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── entityresolution │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── es │ │ │ └── 2015-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── eventbridge │ │ │ └── 2015-10-07 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── events │ │ │ └── 2015-10-07 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── evidently │ │ │ └── 2021-02-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── finspace-data │ │ │ └── 2020-07-13 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── finspace │ │ │ └── 2021-03-12 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── firehose │ │ │ └── 2015-08-04 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── fis │ │ │ └── 2020-12-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── fms │ │ │ └── 2018-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── forecast │ │ │ └── 2018-06-26 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── forecastquery │ │ │ └── 2018-06-26 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── frauddetector │ │ │ └── 2019-11-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── fsx │ │ │ └── 2018-03-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── gamelift │ │ │ └── 2015-10-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── glacier │ │ │ └── 2012-06-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── globalaccelerator │ │ │ └── 2018-08-08 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── glue │ │ │ └── 2017-03-31 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── grafana │ │ │ └── 2020-08-18 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── defaults-1.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── grandfathered-services.json.php │ │ ├── greengrass │ │ │ └── 2017-06-07 │ │ │ │ ├── api-2.json.php │ │ │ │ └── endpoint-rule-set-1.json.php │ │ ├── greengrassv2 │ │ │ └── 2020-11-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── groundstation │ │ │ └── 2019-05-23 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── guardduty │ │ │ └── 2017-11-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── health │ │ │ └── 2016-08-04 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── healthlake │ │ │ └── 2017-07-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── honeycode │ │ │ └── 2020-03-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iam │ │ │ └── 2010-05-08 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── identitystore │ │ │ └── 2020-06-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── imagebuilder │ │ │ └── 2019-12-02 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── importexport │ │ │ └── 2010-06-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── inspector │ │ │ └── 2016-02-16 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── inspector2 │ │ │ └── 2020-06-08 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── internetmonitor │ │ │ └── 2021-06-03 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── iot-jobs-data │ │ │ └── 2017-09-29 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iot-roborunner │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iot │ │ │ └── 2015-05-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── iot1click-devices │ │ │ └── 2018-05-14 │ │ │ │ ├── api-2.json.php │ │ │ │ └── endpoint-rule-set-1.json.php │ │ ├── iot1click-projects │ │ │ └── 2018-05-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iotanalytics │ │ │ └── 2017-11-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iotdeviceadvisor │ │ │ └── 2020-09-18 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iotevents-data │ │ │ └── 2018-10-23 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iotevents │ │ │ └── 2018-07-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iotfleethub │ │ │ └── 2020-11-03 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iotfleetwise │ │ │ └── 2021-06-17 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── iotsecuretunneling │ │ │ └── 2018-10-05 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iotsitewise │ │ │ └── 2019-12-02 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── iotthingsgraph │ │ │ └── 2018-09-06 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iottwinmaker │ │ │ └── 2021-11-29 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── iotwireless │ │ │ └── 2020-11-22 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── ivs-realtime │ │ │ └── 2020-07-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── ivs │ │ │ └── 2020-07-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── ivschat │ │ │ └── 2020-07-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── kafka │ │ │ └── 2018-11-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── kafkaconnect │ │ │ └── 2021-09-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── kendra-ranking │ │ │ └── 2022-10-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── kendra │ │ │ └── 2019-02-03 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── keyspaces │ │ │ └── 2022-02-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── kinesis-video-archived-media │ │ │ └── 2017-09-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── kinesis-video-media │ │ │ └── 2017-09-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── kinesis-video-signaling │ │ │ └── 2019-12-04 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── kinesis-video-webrtc-storage │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── kinesis │ │ │ └── 2013-12-02 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── kinesisanalytics │ │ │ └── 2015-08-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── kinesisanalyticsv2 │ │ │ └── 2018-05-23 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── kinesisvideo │ │ │ └── 2017-09-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── kms │ │ │ └── 2014-11-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── lakeformation │ │ │ └── 2017-03-31 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── lambda │ │ │ └── 2015-03-31 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── launch-wizard │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── lex-models │ │ │ └── 2017-04-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── license-manager-linux-subscriptions │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── license-manager-user-subscriptions │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── license-manager │ │ │ └── 2018-08-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── lightsail │ │ │ └── 2016-11-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── location │ │ │ └── 2020-11-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── logs │ │ │ └── 2014-03-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── lookoutequipment │ │ │ └── 2020-12-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── lookoutmetrics │ │ │ └── 2017-07-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── lookoutvision │ │ │ └── 2020-11-20 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── m2 │ │ │ └── 2021-04-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── machinelearning │ │ │ └── 2014-12-12 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── macie │ │ │ └── 2017-12-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── macie2 │ │ │ └── 2020-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── managedblockchain-query │ │ │ └── 2023-05-04 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── managedblockchain │ │ │ └── 2018-09-24 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── manifest.json.php │ │ ├── marketplace-catalog │ │ │ └── 2018-09-17 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── marketplacecommerceanalytics │ │ │ └── 2015-07-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── mediaconnect │ │ │ └── 2018-11-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── mediaconvert │ │ │ └── 2017-08-29 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── medialive │ │ │ └── 2017-10-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── mediapackage-vod │ │ │ └── 2018-11-07 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── mediapackage │ │ │ └── 2017-10-12 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── mediapackagev2 │ │ │ └── 2022-12-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── mediastore-data │ │ │ └── 2017-09-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── mediastore │ │ │ └── 2017-09-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── mediatailor │ │ │ └── 2018-04-23 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── medical-imaging │ │ │ └── 2023-07-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── memorydb │ │ │ └── 2021-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── metering.marketplace │ │ │ └── 2016-01-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── mgh │ │ │ └── 2017-05-31 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── mgn │ │ │ └── 2020-02-26 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── migration-hub-refactor-spaces │ │ │ └── 2021-10-26 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── migrationhub-config │ │ │ └── 2019-06-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── migrationhuborchestrator │ │ │ └── 2021-08-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── migrationhubstrategy │ │ │ └── 2020-02-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── mobile │ │ │ └── 2017-07-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── models.lex.v2 │ │ │ └── 2020-08-07 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── monitoring │ │ │ └── 2010-08-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── mq │ │ │ └── 2017-11-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── mturk-requester │ │ │ └── 2017-01-17 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── mwaa │ │ │ └── 2020-07-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── neptune │ │ │ └── 2014-10-31 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── neptunedata │ │ │ └── 2023-08-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── network-firewall │ │ │ └── 2020-11-12 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── networkmanager │ │ │ └── 2019-07-05 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── nimble │ │ │ └── 2020-08-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── oam │ │ │ └── 2022-06-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── omics │ │ │ └── 2022-11-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── defaults-1.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── opensearch │ │ │ └── 2021-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── opensearchserverless │ │ │ └── 2021-11-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── opsworks │ │ │ └── 2013-02-18 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── opsworkscm │ │ │ └── 2016-11-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── organizations │ │ │ └── 2016-11-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── osis │ │ │ └── 2022-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── outposts │ │ │ └── 2019-12-03 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── panorama │ │ │ └── 2019-07-24 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── partitions.json.php │ │ ├── payment-cryptography-data │ │ │ └── 2022-02-03 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── payment-cryptography │ │ │ └── 2021-09-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── pca-connector-ad │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── personalize-events │ │ │ └── 2018-03-22 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── personalize-runtime │ │ │ └── 2018-05-22 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── personalize │ │ │ └── 2018-05-22 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── pi │ │ │ └── 2018-02-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── pinpoint-email │ │ │ └── 2018-07-26 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── pinpoint-sms-voice-v2 │ │ │ └── 2022-03-31 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── pinpoint │ │ │ └── 2016-12-01 │ │ │ │ ├── api-2.json.php │ │ │ │ └── endpoint-rule-set-1.json.php │ │ ├── pipes │ │ │ └── 2015-10-07 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── polly │ │ │ └── 2016-06-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── pricing │ │ │ └── 2017-10-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── privatenetworks │ │ │ └── 2021-12-03 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── defaults-1.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── proton │ │ │ └── 2020-07-20 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── qldb-session │ │ │ └── 2019-07-11 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── qldb │ │ │ └── 2019-01-02 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── quicksight │ │ │ └── 2018-04-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── ram │ │ │ └── 2018-01-04 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── rbin │ │ │ └── 2021-06-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── rds-data │ │ │ └── 2018-08-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── rds │ │ │ ├── 2014-09-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ └── 2014-10-31 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── redshift-data │ │ │ └── 2019-12-20 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── redshift-serverless │ │ │ └── 2021-04-21 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── redshift │ │ │ └── 2012-12-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── rekognition │ │ │ └── 2016-06-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── resiliencehub │ │ │ └── 2020-04-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── resource-explorer-2 │ │ │ └── 2022-07-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── resource-groups │ │ │ └── 2017-11-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── resourcegroupstaggingapi │ │ │ └── 2017-01-26 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── robomaker │ │ │ └── 2018-06-29 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── rolesanywhere │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── route53-recovery-cluster │ │ │ └── 2019-12-02 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── route53-recovery-control-config │ │ │ └── 2020-11-02 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── route53-recovery-readiness │ │ │ └── 2019-12-02 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── route53 │ │ │ └── 2013-04-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── route53domains │ │ │ └── 2014-05-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── route53resolver │ │ │ └── 2018-04-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── rum │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── runtime.lex.v2 │ │ │ └── 2020-08-07 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── runtime.lex │ │ │ └── 2016-11-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── runtime.sagemaker │ │ │ └── 2017-05-13 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── s3 │ │ │ └── 2006-03-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── s3control │ │ │ └── 2018-08-20 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── s3outposts │ │ │ └── 2017-07-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sagemaker-a2i-runtime │ │ │ └── 2019-11-07 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sagemaker-edge │ │ │ └── 2020-09-23 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sagemaker-featurestore-runtime │ │ │ └── 2020-07-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sagemaker-geospatial │ │ │ └── 2020-05-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sagemaker-metrics │ │ │ └── 2022-09-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sagemaker │ │ │ └── 2017-07-24 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── savingsplans │ │ │ └── 2019-06-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── scheduler │ │ │ └── 2021-06-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── schemas │ │ │ └── 2019-12-02 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── sdk-default-configuration.json.php │ │ ├── secretsmanager │ │ │ └── 2017-10-17 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── securityhub │ │ │ └── 2018-10-26 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── securitylake │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── serverlessrepo │ │ │ └── 2017-09-08 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── service-quotas │ │ │ └── 2019-06-24 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── servicecatalog-appregistry │ │ │ └── 2020-06-24 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── servicecatalog │ │ │ └── 2015-12-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── servicediscovery │ │ │ └── 2017-03-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sesv2 │ │ │ └── 2019-09-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── shield │ │ │ └── 2016-06-02 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── signer │ │ │ └── 2017-08-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── simspaceweaver │ │ │ └── 2022-10-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sms-voice │ │ │ └── 2018-09-05 │ │ │ │ ├── api-2.json.php │ │ │ │ └── endpoint-rule-set-1.json.php │ │ ├── sms │ │ │ └── 2016-10-24 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── snow-device-management │ │ │ └── 2021-08-04 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── snowball │ │ │ └── 2016-06-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── sns │ │ │ └── 2010-03-31 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── sqs │ │ │ └── 2012-11-05 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── ssm-contacts │ │ │ └── 2021-05-03 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── ssm-incidents │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── ssm-sap │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── ssm │ │ │ └── 2014-11-06 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── sso-admin │ │ │ └── 2020-07-20 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sso-oidc │ │ │ └── 2019-06-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sso │ │ │ └── 2019-06-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── states │ │ │ └── 2016-11-23 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── storagegateway │ │ │ └── 2013-06-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── streams.dynamodb │ │ │ └── 2012-08-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sts │ │ │ └── 2011-06-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── support-app │ │ │ └── 2021-08-20 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── support │ │ │ └── 2013-04-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── swf │ │ │ └── 2012-01-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── synthetics │ │ │ └── 2017-10-11 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── textract │ │ │ └── 2018-06-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── timestream-query │ │ │ └── 2018-11-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── timestream-write │ │ │ └── 2018-11-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── tnb │ │ │ └── 2008-10-21 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── defaults-1.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── transcribe │ │ │ └── 2017-10-26 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── transfer │ │ │ └── 2018-11-05 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── translate │ │ │ └── 2017-07-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── verifiedpermissions │ │ │ └── 2021-12-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── voice-id │ │ │ └── 2021-09-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── vpc-lattice │ │ │ └── 2022-11-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── waf-regional │ │ │ └── 2016-11-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── waf │ │ │ └── 2015-08-24 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── wafv2 │ │ │ └── 2019-07-29 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── wellarchitected │ │ │ └── 2020-03-31 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── wisdom │ │ │ └── 2020-10-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── workdocs │ │ │ └── 2016-05-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── worklink │ │ │ └── 2018-09-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── workmail │ │ │ └── 2017-10-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── workmailmessageflow │ │ │ └── 2019-05-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── workspaces-web │ │ │ └── 2020-07-08 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── workspaces │ │ │ └── 2015-04-08 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ └── xray │ │ │ └── 2016-04-12 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ │ ├── drs │ │ ├── Exception │ │ │ └── drsException.php │ │ └── drsClient.php │ │ ├── finspace │ │ ├── Exception │ │ │ └── finspaceException.php │ │ └── finspaceClient.php │ │ ├── functions.php │ │ ├── imagebuilder │ │ ├── Exception │ │ │ └── imagebuilderException.php │ │ └── imagebuilderClient.php │ │ ├── ivschat │ │ ├── Exception │ │ │ └── ivschatException.php │ │ └── ivschatClient.php │ │ ├── kendra │ │ ├── Exception │ │ │ └── kendraException.php │ │ └── kendraClient.php │ │ ├── mgn │ │ ├── Exception │ │ │ └── mgnException.php │ │ └── mgnClient.php │ │ └── signer │ │ ├── Exception │ │ └── signerException.php │ │ └── signerClient.php ├── barryvdh │ └── laravel-debugbar │ │ ├── LICENSE │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── config │ │ └── debugbar.php │ │ ├── database │ │ └── migrations │ │ │ └── 2014_12_01_120000_create_phpdebugbar_storage_table.php │ │ ├── readme.md │ │ └── src │ │ ├── Console │ │ └── ClearCommand.php │ │ ├── Controllers │ │ ├── AssetController.php │ │ ├── BaseController.php │ │ ├── CacheController.php │ │ ├── OpenHandlerController.php │ │ └── TelescopeController.php │ │ ├── DataCollector │ │ ├── CacheCollector.php │ │ ├── EventCollector.php │ │ ├── FilesCollector.php │ │ ├── GateCollector.php │ │ ├── LaravelCollector.php │ │ ├── LivewireCollector.php │ │ ├── LogsCollector.php │ │ ├── ModelsCollector.php │ │ ├── MultiAuthCollector.php │ │ ├── PhpInfoCollector.php │ │ ├── QueryCollector.php │ │ ├── RequestCollector.php │ │ ├── RouteCollector.php │ │ ├── SessionCollector.php │ │ └── ViewCollector.php │ │ ├── DataFormatter │ │ ├── QueryFormatter.php │ │ └── SimpleFormatter.php │ │ ├── DebugbarViewEngine.php │ │ ├── Facade.php │ │ ├── Facades │ │ └── Debugbar.php │ │ ├── JavascriptRenderer.php │ │ ├── LaravelDebugbar.php │ │ ├── LumenServiceProvider.php │ │ ├── Middleware │ │ ├── DebugbarEnabled.php │ │ └── InjectDebugbar.php │ │ ├── Resources │ │ ├── cache │ │ │ └── widget.js │ │ ├── laravel-debugbar-dark-mode-media-end.css │ │ ├── laravel-debugbar-dark-mode-media-start.css │ │ ├── laravel-debugbar-dark-mode.css │ │ ├── laravel-debugbar.css │ │ ├── sqlqueries │ │ │ └── widget.js │ │ └── vendor │ │ │ └── font-awesome │ │ │ ├── generator_config.txt │ │ │ └── style.css │ │ ├── ServiceProvider.php │ │ ├── Storage │ │ ├── FilesystemStorage.php │ │ └── SocketStorage.php │ │ ├── Support │ │ └── Clockwork │ │ │ ├── ClockworkCollector.php │ │ │ └── Converter.php │ │ ├── SymfonyHttpDriver.php │ │ ├── Twig │ │ ├── Extension │ │ │ ├── Debug.php │ │ │ ├── Dump.php │ │ │ ├── Extension.php │ │ │ └── Stopwatch.php │ │ ├── Node │ │ │ ├── Node.php │ │ │ └── StopwatchNode.php │ │ └── TokenParser │ │ │ ├── StopwatchTokenParser.php │ │ │ └── TokenParser.php │ │ ├── debugbar-routes.php │ │ └── helpers.php ├── bin │ ├── blade-icons-generate │ ├── blade-icons-generate.bat │ ├── carbon │ ├── carbon.bat │ ├── doctrine-dbal │ ├── doctrine-dbal.bat │ ├── jp.php │ ├── jp.php.bat │ ├── patch-type-declarations │ ├── patch-type-declarations.bat │ ├── php-cs-fixer │ ├── php-cs-fixer.bat │ ├── php-parse │ ├── php-parse.bat │ ├── phpunit │ ├── phpunit.bat │ ├── psysh │ ├── psysh.bat │ ├── sail │ ├── sail.bat │ ├── var-dump-server │ ├── var-dump-server.bat │ ├── yaml-lint │ └── yaml-lint.bat ├── blade-ui-kit │ ├── blade-heroicons │ │ ├── LICENSE.md │ │ ├── composer.json │ │ ├── config │ │ │ └── blade-heroicons.php │ │ ├── package.json │ │ ├── resources │ │ │ └── svg │ │ │ │ ├── m-academic-cap.svg │ │ │ │ ├── m-adjustments-horizontal.svg │ │ │ │ ├── m-adjustments-vertical.svg │ │ │ │ ├── m-archive-box-arrow-down.svg │ │ │ │ ├── m-archive-box-x-mark.svg │ │ │ │ ├── m-archive-box.svg │ │ │ │ ├── m-arrow-down-circle.svg │ │ │ │ ├── m-arrow-down-left.svg │ │ │ │ ├── m-arrow-down-on-square-stack.svg │ │ │ │ ├── m-arrow-down-on-square.svg │ │ │ │ ├── m-arrow-down-right.svg │ │ │ │ ├── m-arrow-down-tray.svg │ │ │ │ ├── m-arrow-down.svg │ │ │ │ ├── m-arrow-left-circle.svg │ │ │ │ ├── m-arrow-left-on-rectangle.svg │ │ │ │ ├── m-arrow-left.svg │ │ │ │ ├── m-arrow-long-down.svg │ │ │ │ ├── m-arrow-long-left.svg │ │ │ │ ├── m-arrow-long-right.svg │ │ │ │ ├── m-arrow-long-up.svg │ │ │ │ ├── m-arrow-path-rounded-square.svg │ │ │ │ ├── m-arrow-path.svg │ │ │ │ ├── m-arrow-right-circle.svg │ │ │ │ ├── m-arrow-right-on-rectangle.svg │ │ │ │ ├── m-arrow-right.svg │ │ │ │ ├── m-arrow-small-down.svg │ │ │ │ ├── m-arrow-small-left.svg │ │ │ │ ├── m-arrow-small-right.svg │ │ │ │ ├── m-arrow-small-up.svg │ │ │ │ ├── m-arrow-top-right-on-square.svg │ │ │ │ ├── m-arrow-trending-down.svg │ │ │ │ ├── m-arrow-trending-up.svg │ │ │ │ ├── m-arrow-up-circle.svg │ │ │ │ ├── m-arrow-up-left.svg │ │ │ │ ├── m-arrow-up-on-square-stack.svg │ │ │ │ ├── m-arrow-up-on-square.svg │ │ │ │ ├── m-arrow-up-right.svg │ │ │ │ ├── m-arrow-up-tray.svg │ │ │ │ ├── m-arrow-up.svg │ │ │ │ ├── m-arrow-uturn-down.svg │ │ │ │ ├── m-arrow-uturn-left.svg │ │ │ │ ├── m-arrow-uturn-right.svg │ │ │ │ ├── m-arrow-uturn-up.svg │ │ │ │ ├── m-arrows-pointing-in.svg │ │ │ │ ├── m-arrows-pointing-out.svg │ │ │ │ ├── m-arrows-right-left.svg │ │ │ │ ├── m-arrows-up-down.svg │ │ │ │ ├── m-at-symbol.svg │ │ │ │ ├── m-backspace.svg │ │ │ │ ├── m-backward.svg │ │ │ │ ├── m-banknotes.svg │ │ │ │ ├── m-bars-2.svg │ │ │ │ ├── m-bars-3-bottom-left.svg │ │ │ │ ├── m-bars-3-bottom-right.svg │ │ │ │ ├── m-bars-3-center-left.svg │ │ │ │ ├── m-bars-3.svg │ │ │ │ ├── m-bars-4.svg │ │ │ │ ├── m-bars-arrow-down.svg │ │ │ │ ├── m-bars-arrow-up.svg │ │ │ │ ├── m-battery-0.svg │ │ │ │ ├── m-battery-100.svg │ │ │ │ ├── m-battery-50.svg │ │ │ │ ├── m-beaker.svg │ │ │ │ ├── m-bell-alert.svg │ │ │ │ ├── m-bell-slash.svg │ │ │ │ ├── m-bell-snooze.svg │ │ │ │ ├── m-bell.svg │ │ │ │ ├── m-bolt-slash.svg │ │ │ │ ├── m-bolt.svg │ │ │ │ ├── m-book-open.svg │ │ │ │ ├── m-bookmark-slash.svg │ │ │ │ ├── m-bookmark-square.svg │ │ │ │ ├── m-bookmark.svg │ │ │ │ ├── m-briefcase.svg │ │ │ │ ├── m-bug-ant.svg │ │ │ │ ├── m-building-library.svg │ │ │ │ ├── m-building-office-2.svg │ │ │ │ ├── m-building-office.svg │ │ │ │ ├── m-building-storefront.svg │ │ │ │ ├── m-cake.svg │ │ │ │ ├── m-calculator.svg │ │ │ │ ├── m-calendar-days.svg │ │ │ │ ├── m-calendar.svg │ │ │ │ ├── m-camera.svg │ │ │ │ ├── m-chart-bar-square.svg │ │ │ │ ├── m-chart-bar.svg │ │ │ │ ├── m-chart-pie.svg │ │ │ │ ├── m-chat-bubble-bottom-center-text.svg │ │ │ │ ├── m-chat-bubble-bottom-center.svg │ │ │ │ ├── m-chat-bubble-left-ellipsis.svg │ │ │ │ ├── m-chat-bubble-left-right.svg │ │ │ │ ├── m-chat-bubble-left.svg │ │ │ │ ├── m-chat-bubble-oval-left-ellipsis.svg │ │ │ │ ├── m-chat-bubble-oval-left.svg │ │ │ │ ├── m-check-badge.svg │ │ │ │ ├── m-check-circle.svg │ │ │ │ ├── m-check.svg │ │ │ │ ├── m-chevron-double-down.svg │ │ │ │ ├── m-chevron-double-left.svg │ │ │ │ ├── m-chevron-double-right.svg │ │ │ │ ├── m-chevron-double-up.svg │ │ │ │ ├── m-chevron-down.svg │ │ │ │ ├── m-chevron-left.svg │ │ │ │ ├── m-chevron-right.svg │ │ │ │ ├── m-chevron-up-down.svg │ │ │ │ ├── m-chevron-up.svg │ │ │ │ ├── m-circle-stack.svg │ │ │ │ ├── m-clipboard-document-check.svg │ │ │ │ ├── m-clipboard-document-list.svg │ │ │ │ ├── m-clipboard-document.svg │ │ │ │ ├── m-clipboard.svg │ │ │ │ ├── m-clock.svg │ │ │ │ ├── m-cloud-arrow-down.svg │ │ │ │ ├── m-cloud-arrow-up.svg │ │ │ │ ├── m-cloud.svg │ │ │ │ ├── m-code-bracket-square.svg │ │ │ │ ├── m-code-bracket.svg │ │ │ │ ├── m-cog-6-tooth.svg │ │ │ │ ├── m-cog-8-tooth.svg │ │ │ │ ├── m-cog.svg │ │ │ │ ├── m-command-line.svg │ │ │ │ ├── m-computer-desktop.svg │ │ │ │ ├── m-cpu-chip.svg │ │ │ │ ├── m-credit-card.svg │ │ │ │ ├── m-cube-transparent.svg │ │ │ │ ├── m-cube.svg │ │ │ │ ├── m-currency-bangladeshi.svg │ │ │ │ ├── m-currency-dollar.svg │ │ │ │ ├── m-currency-euro.svg │ │ │ │ ├── m-currency-pound.svg │ │ │ │ ├── m-currency-rupee.svg │ │ │ │ ├── m-currency-yen.svg │ │ │ │ ├── m-cursor-arrow-rays.svg │ │ │ │ ├── m-cursor-arrow-ripple.svg │ │ │ │ ├── m-device-phone-mobile.svg │ │ │ │ ├── m-device-tablet.svg │ │ │ │ ├── m-document-arrow-down.svg │ │ │ │ ├── m-document-arrow-up.svg │ │ │ │ ├── m-document-chart-bar.svg │ │ │ │ ├── m-document-check.svg │ │ │ │ ├── m-document-duplicate.svg │ │ │ │ ├── m-document-magnifying-glass.svg │ │ │ │ ├── m-document-minus.svg │ │ │ │ ├── m-document-plus.svg │ │ │ │ ├── m-document-text.svg │ │ │ │ ├── m-document.svg │ │ │ │ ├── m-ellipsis-horizontal-circle.svg │ │ │ │ ├── m-ellipsis-horizontal.svg │ │ │ │ ├── m-ellipsis-vertical.svg │ │ │ │ ├── m-envelope-open.svg │ │ │ │ ├── m-envelope.svg │ │ │ │ ├── m-exclamation-circle.svg │ │ │ │ ├── m-exclamation-triangle.svg │ │ │ │ ├── m-eye-dropper.svg │ │ │ │ ├── m-eye-slash.svg │ │ │ │ ├── m-eye.svg │ │ │ │ ├── m-face-frown.svg │ │ │ │ ├── m-face-smile.svg │ │ │ │ ├── m-film.svg │ │ │ │ ├── m-finger-print.svg │ │ │ │ ├── m-fire.svg │ │ │ │ ├── m-flag.svg │ │ │ │ ├── m-folder-arrow-down.svg │ │ │ │ ├── m-folder-minus.svg │ │ │ │ ├── m-folder-open.svg │ │ │ │ ├── m-folder-plus.svg │ │ │ │ ├── m-folder.svg │ │ │ │ ├── m-forward.svg │ │ │ │ ├── m-funnel.svg │ │ │ │ ├── m-gif.svg │ │ │ │ ├── m-gift-top.svg │ │ │ │ ├── m-gift.svg │ │ │ │ ├── m-globe-alt.svg │ │ │ │ ├── m-globe-americas.svg │ │ │ │ ├── m-globe-asia-australia.svg │ │ │ │ ├── m-globe-europe-africa.svg │ │ │ │ ├── m-hand-raised.svg │ │ │ │ ├── m-hand-thumb-down.svg │ │ │ │ ├── m-hand-thumb-up.svg │ │ │ │ ├── m-hashtag.svg │ │ │ │ ├── m-heart.svg │ │ │ │ ├── m-home-modern.svg │ │ │ │ ├── m-home.svg │ │ │ │ ├── m-identification.svg │ │ │ │ ├── m-inbox-arrow-down.svg │ │ │ │ ├── m-inbox-stack.svg │ │ │ │ ├── m-inbox.svg │ │ │ │ ├── m-information-circle.svg │ │ │ │ ├── m-key.svg │ │ │ │ ├── m-language.svg │ │ │ │ ├── m-lifebuoy.svg │ │ │ │ ├── m-light-bulb.svg │ │ │ │ ├── m-link.svg │ │ │ │ ├── m-list-bullet.svg │ │ │ │ ├── m-lock-closed.svg │ │ │ │ ├── m-lock-open.svg │ │ │ │ ├── m-magnifying-glass-circle.svg │ │ │ │ ├── m-magnifying-glass-minus.svg │ │ │ │ ├── m-magnifying-glass-plus.svg │ │ │ │ ├── m-magnifying-glass.svg │ │ │ │ ├── m-map-pin.svg │ │ │ │ ├── m-map.svg │ │ │ │ ├── m-megaphone.svg │ │ │ │ ├── m-microphone.svg │ │ │ │ ├── m-minus-circle.svg │ │ │ │ ├── m-minus-small.svg │ │ │ │ ├── m-minus.svg │ │ │ │ ├── m-moon.svg │ │ │ │ ├── m-musical-note.svg │ │ │ │ ├── m-newspaper.svg │ │ │ │ ├── m-no-symbol.svg │ │ │ │ ├── m-paint-brush.svg │ │ │ │ ├── m-paper-airplane.svg │ │ │ │ ├── m-paper-clip.svg │ │ │ │ ├── m-pause-circle.svg │ │ │ │ ├── m-pause.svg │ │ │ │ ├── m-pencil-square.svg │ │ │ │ ├── m-pencil.svg │ │ │ │ ├── m-phone-arrow-down-left.svg │ │ │ │ ├── m-phone-arrow-up-right.svg │ │ │ │ ├── m-phone-x-mark.svg │ │ │ │ ├── m-phone.svg │ │ │ │ ├── m-photo.svg │ │ │ │ ├── m-play-circle.svg │ │ │ │ ├── m-play-pause.svg │ │ │ │ ├── m-play.svg │ │ │ │ ├── m-plus-circle.svg │ │ │ │ ├── m-plus-small.svg │ │ │ │ ├── m-plus.svg │ │ │ │ ├── m-power.svg │ │ │ │ ├── m-presentation-chart-bar.svg │ │ │ │ ├── m-presentation-chart-line.svg │ │ │ │ ├── m-printer.svg │ │ │ │ ├── m-puzzle-piece.svg │ │ │ │ ├── m-qr-code.svg │ │ │ │ ├── m-question-mark-circle.svg │ │ │ │ ├── m-queue-list.svg │ │ │ │ ├── m-radio.svg │ │ │ │ ├── m-receipt-percent.svg │ │ │ │ ├── m-receipt-refund.svg │ │ │ │ ├── m-rectangle-group.svg │ │ │ │ ├── m-rectangle-stack.svg │ │ │ │ ├── m-rocket-launch.svg │ │ │ │ ├── m-rss.svg │ │ │ │ ├── m-scale.svg │ │ │ │ ├── m-scissors.svg │ │ │ │ ├── m-server-stack.svg │ │ │ │ ├── m-server.svg │ │ │ │ ├── m-share.svg │ │ │ │ ├── m-shield-check.svg │ │ │ │ ├── m-shield-exclamation.svg │ │ │ │ ├── m-shopping-bag.svg │ │ │ │ ├── m-shopping-cart.svg │ │ │ │ ├── m-signal-slash.svg │ │ │ │ ├── m-signal.svg │ │ │ │ ├── m-sparkles.svg │ │ │ │ ├── m-speaker-wave.svg │ │ │ │ ├── m-speaker-x-mark.svg │ │ │ │ ├── m-square-2-stack.svg │ │ │ │ ├── m-square-3-stack-3d.svg │ │ │ │ ├── m-squares-2x2.svg │ │ │ │ ├── m-squares-plus.svg │ │ │ │ ├── m-star.svg │ │ │ │ ├── m-stop-circle.svg │ │ │ │ ├── m-stop.svg │ │ │ │ ├── m-sun.svg │ │ │ │ ├── m-swatch.svg │ │ │ │ ├── m-table-cells.svg │ │ │ │ ├── m-tag.svg │ │ │ │ ├── m-ticket.svg │ │ │ │ ├── m-trash.svg │ │ │ │ ├── m-trophy.svg │ │ │ │ ├── m-truck.svg │ │ │ │ ├── m-tv.svg │ │ │ │ ├── m-user-circle.svg │ │ │ │ ├── m-user-group.svg │ │ │ │ ├── m-user-minus.svg │ │ │ │ ├── m-user-plus.svg │ │ │ │ ├── m-user.svg │ │ │ │ ├── m-users.svg │ │ │ │ ├── m-variable.svg │ │ │ │ ├── m-video-camera-slash.svg │ │ │ │ ├── m-video-camera.svg │ │ │ │ ├── m-view-columns.svg │ │ │ │ ├── m-viewfinder-circle.svg │ │ │ │ ├── m-wallet.svg │ │ │ │ ├── m-wifi.svg │ │ │ │ ├── m-window.svg │ │ │ │ ├── m-wrench-screwdriver.svg │ │ │ │ ├── m-wrench.svg │ │ │ │ ├── m-x-circle.svg │ │ │ │ ├── m-x-mark.svg │ │ │ │ ├── o-academic-cap.svg │ │ │ │ ├── o-adjustments-horizontal.svg │ │ │ │ ├── o-adjustments-vertical.svg │ │ │ │ ├── o-archive-box-arrow-down.svg │ │ │ │ ├── o-archive-box-x-mark.svg │ │ │ │ ├── o-archive-box.svg │ │ │ │ ├── o-arrow-down-circle.svg │ │ │ │ ├── o-arrow-down-left.svg │ │ │ │ ├── o-arrow-down-on-square-stack.svg │ │ │ │ ├── o-arrow-down-on-square.svg │ │ │ │ ├── o-arrow-down-right.svg │ │ │ │ ├── o-arrow-down-tray.svg │ │ │ │ ├── o-arrow-down.svg │ │ │ │ ├── o-arrow-left-circle.svg │ │ │ │ ├── o-arrow-left-on-rectangle.svg │ │ │ │ ├── o-arrow-left.svg │ │ │ │ ├── o-arrow-long-down.svg │ │ │ │ ├── o-arrow-long-left.svg │ │ │ │ ├── o-arrow-long-right.svg │ │ │ │ ├── o-arrow-long-up.svg │ │ │ │ ├── o-arrow-path-rounded-square.svg │ │ │ │ ├── o-arrow-path.svg │ │ │ │ ├── o-arrow-right-circle.svg │ │ │ │ ├── o-arrow-right-on-rectangle.svg │ │ │ │ ├── o-arrow-right.svg │ │ │ │ ├── o-arrow-small-down.svg │ │ │ │ ├── o-arrow-small-left.svg │ │ │ │ ├── o-arrow-small-right.svg │ │ │ │ ├── o-arrow-small-up.svg │ │ │ │ ├── o-arrow-top-right-on-square.svg │ │ │ │ ├── o-arrow-trending-down.svg │ │ │ │ ├── o-arrow-trending-up.svg │ │ │ │ ├── o-arrow-up-circle.svg │ │ │ │ ├── o-arrow-up-left.svg │ │ │ │ ├── o-arrow-up-on-square-stack.svg │ │ │ │ ├── o-arrow-up-on-square.svg │ │ │ │ ├── o-arrow-up-right.svg │ │ │ │ ├── o-arrow-up-tray.svg │ │ │ │ ├── o-arrow-up.svg │ │ │ │ ├── o-arrow-uturn-down.svg │ │ │ │ ├── o-arrow-uturn-left.svg │ │ │ │ ├── o-arrow-uturn-right.svg │ │ │ │ ├── o-arrow-uturn-up.svg │ │ │ │ ├── o-arrows-pointing-in.svg │ │ │ │ ├── o-arrows-pointing-out.svg │ │ │ │ ├── o-arrows-right-left.svg │ │ │ │ ├── o-arrows-up-down.svg │ │ │ │ ├── o-at-symbol.svg │ │ │ │ ├── o-backspace.svg │ │ │ │ ├── o-backward.svg │ │ │ │ ├── o-banknotes.svg │ │ │ │ ├── o-bars-2.svg │ │ │ │ ├── o-bars-3-bottom-left.svg │ │ │ │ ├── o-bars-3-bottom-right.svg │ │ │ │ ├── o-bars-3-center-left.svg │ │ │ │ ├── o-bars-3.svg │ │ │ │ ├── o-bars-4.svg │ │ │ │ ├── o-bars-arrow-down.svg │ │ │ │ ├── o-bars-arrow-up.svg │ │ │ │ ├── o-battery-0.svg │ │ │ │ ├── o-battery-100.svg │ │ │ │ ├── o-battery-50.svg │ │ │ │ ├── o-beaker.svg │ │ │ │ ├── o-bell-alert.svg │ │ │ │ ├── o-bell-slash.svg │ │ │ │ ├── o-bell-snooze.svg │ │ │ │ ├── o-bell.svg │ │ │ │ ├── o-bolt-slash.svg │ │ │ │ ├── o-bolt.svg │ │ │ │ ├── o-book-open.svg │ │ │ │ ├── o-bookmark-slash.svg │ │ │ │ ├── o-bookmark-square.svg │ │ │ │ ├── o-bookmark.svg │ │ │ │ ├── o-briefcase.svg │ │ │ │ ├── o-bug-ant.svg │ │ │ │ ├── o-building-library.svg │ │ │ │ ├── o-building-office-2.svg │ │ │ │ ├── o-building-office.svg │ │ │ │ ├── o-building-storefront.svg │ │ │ │ ├── o-cake.svg │ │ │ │ ├── o-calculator.svg │ │ │ │ ├── o-calendar-days.svg │ │ │ │ ├── o-calendar.svg │ │ │ │ ├── o-camera.svg │ │ │ │ ├── o-chart-bar-square.svg │ │ │ │ ├── o-chart-bar.svg │ │ │ │ ├── o-chart-pie.svg │ │ │ │ ├── o-chat-bubble-bottom-center-text.svg │ │ │ │ ├── o-chat-bubble-bottom-center.svg │ │ │ │ ├── o-chat-bubble-left-ellipsis.svg │ │ │ │ ├── o-chat-bubble-left-right.svg │ │ │ │ ├── o-chat-bubble-left.svg │ │ │ │ ├── o-chat-bubble-oval-left-ellipsis.svg │ │ │ │ ├── o-chat-bubble-oval-left.svg │ │ │ │ ├── o-check-badge.svg │ │ │ │ ├── o-check-circle.svg │ │ │ │ ├── o-check.svg │ │ │ │ ├── o-chevron-double-down.svg │ │ │ │ ├── o-chevron-double-left.svg │ │ │ │ ├── o-chevron-double-right.svg │ │ │ │ ├── o-chevron-double-up.svg │ │ │ │ ├── o-chevron-down.svg │ │ │ │ ├── o-chevron-left.svg │ │ │ │ ├── o-chevron-right.svg │ │ │ │ ├── o-chevron-up-down.svg │ │ │ │ ├── o-chevron-up.svg │ │ │ │ ├── o-circle-stack.svg │ │ │ │ ├── o-clipboard-document-check.svg │ │ │ │ ├── o-clipboard-document-list.svg │ │ │ │ ├── o-clipboard-document.svg │ │ │ │ ├── o-clipboard.svg │ │ │ │ ├── o-clock.svg │ │ │ │ ├── o-cloud-arrow-down.svg │ │ │ │ ├── o-cloud-arrow-up.svg │ │ │ │ ├── o-cloud.svg │ │ │ │ ├── o-code-bracket-square.svg │ │ │ │ ├── o-code-bracket.svg │ │ │ │ ├── o-cog-6-tooth.svg │ │ │ │ ├── o-cog-8-tooth.svg │ │ │ │ ├── o-cog.svg │ │ │ │ ├── o-command-line.svg │ │ │ │ ├── o-computer-desktop.svg │ │ │ │ ├── o-cpu-chip.svg │ │ │ │ ├── o-credit-card.svg │ │ │ │ ├── o-cube-transparent.svg │ │ │ │ ├── o-cube.svg │ │ │ │ ├── o-currency-bangladeshi.svg │ │ │ │ ├── o-currency-dollar.svg │ │ │ │ ├── o-currency-euro.svg │ │ │ │ ├── o-currency-pound.svg │ │ │ │ ├── o-currency-rupee.svg │ │ │ │ ├── o-currency-yen.svg │ │ │ │ ├── o-cursor-arrow-rays.svg │ │ │ │ ├── o-cursor-arrow-ripple.svg │ │ │ │ ├── o-device-phone-mobile.svg │ │ │ │ ├── o-device-tablet.svg │ │ │ │ ├── o-document-arrow-down.svg │ │ │ │ ├── o-document-arrow-up.svg │ │ │ │ ├── o-document-chart-bar.svg │ │ │ │ ├── o-document-check.svg │ │ │ │ ├── o-document-duplicate.svg │ │ │ │ ├── o-document-magnifying-glass.svg │ │ │ │ ├── o-document-minus.svg │ │ │ │ ├── o-document-plus.svg │ │ │ │ ├── o-document-text.svg │ │ │ │ ├── o-document.svg │ │ │ │ ├── o-ellipsis-horizontal-circle.svg │ │ │ │ ├── o-ellipsis-horizontal.svg │ │ │ │ ├── o-ellipsis-vertical.svg │ │ │ │ ├── o-envelope-open.svg │ │ │ │ ├── o-envelope.svg │ │ │ │ ├── o-exclamation-circle.svg │ │ │ │ ├── o-exclamation-triangle.svg │ │ │ │ ├── o-eye-dropper.svg │ │ │ │ ├── o-eye-slash.svg │ │ │ │ ├── o-eye.svg │ │ │ │ ├── o-face-frown.svg │ │ │ │ ├── o-face-smile.svg │ │ │ │ ├── o-film.svg │ │ │ │ ├── o-finger-print.svg │ │ │ │ ├── o-fire.svg │ │ │ │ ├── o-flag.svg │ │ │ │ ├── o-folder-arrow-down.svg │ │ │ │ ├── o-folder-minus.svg │ │ │ │ ├── o-folder-open.svg │ │ │ │ ├── o-folder-plus.svg │ │ │ │ ├── o-folder.svg │ │ │ │ ├── o-forward.svg │ │ │ │ ├── o-funnel.svg │ │ │ │ ├── o-gif.svg │ │ │ │ ├── o-gift-top.svg │ │ │ │ ├── o-gift.svg │ │ │ │ ├── o-globe-alt.svg │ │ │ │ ├── o-globe-americas.svg │ │ │ │ ├── o-globe-asia-australia.svg │ │ │ │ ├── o-globe-europe-africa.svg │ │ │ │ ├── o-hand-raised.svg │ │ │ │ ├── o-hand-thumb-down.svg │ │ │ │ ├── o-hand-thumb-up.svg │ │ │ │ ├── o-hashtag.svg │ │ │ │ ├── o-heart.svg │ │ │ │ ├── o-home-modern.svg │ │ │ │ ├── o-home.svg │ │ │ │ ├── o-identification.svg │ │ │ │ ├── o-inbox-arrow-down.svg │ │ │ │ ├── o-inbox-stack.svg │ │ │ │ ├── o-inbox.svg │ │ │ │ ├── o-information-circle.svg │ │ │ │ ├── o-key.svg │ │ │ │ ├── o-language.svg │ │ │ │ ├── o-lifebuoy.svg │ │ │ │ ├── o-light-bulb.svg │ │ │ │ ├── o-link.svg │ │ │ │ ├── o-list-bullet.svg │ │ │ │ ├── o-lock-closed.svg │ │ │ │ ├── o-lock-open.svg │ │ │ │ ├── o-magnifying-glass-circle.svg │ │ │ │ ├── o-magnifying-glass-minus.svg │ │ │ │ ├── o-magnifying-glass-plus.svg │ │ │ │ ├── o-magnifying-glass.svg │ │ │ │ ├── o-map-pin.svg │ │ │ │ ├── o-map.svg │ │ │ │ ├── o-megaphone.svg │ │ │ │ ├── o-microphone.svg │ │ │ │ ├── o-minus-circle.svg │ │ │ │ ├── o-minus-small.svg │ │ │ │ ├── o-minus.svg │ │ │ │ ├── o-moon.svg │ │ │ │ ├── o-musical-note.svg │ │ │ │ ├── o-newspaper.svg │ │ │ │ ├── o-no-symbol.svg │ │ │ │ ├── o-paint-brush.svg │ │ │ │ ├── o-paper-airplane.svg │ │ │ │ ├── o-paper-clip.svg │ │ │ │ ├── o-pause-circle.svg │ │ │ │ ├── o-pause.svg │ │ │ │ ├── o-pencil-square.svg │ │ │ │ ├── o-pencil.svg │ │ │ │ ├── o-phone-arrow-down-left.svg │ │ │ │ ├── o-phone-arrow-up-right.svg │ │ │ │ ├── o-phone-x-mark.svg │ │ │ │ ├── o-phone.svg │ │ │ │ ├── o-photo.svg │ │ │ │ ├── o-play-circle.svg │ │ │ │ ├── o-play-pause.svg │ │ │ │ ├── o-play.svg │ │ │ │ ├── o-plus-circle.svg │ │ │ │ ├── o-plus-small.svg │ │ │ │ ├── o-plus.svg │ │ │ │ ├── o-power.svg │ │ │ │ ├── o-presentation-chart-bar.svg │ │ │ │ ├── o-presentation-chart-line.svg │ │ │ │ ├── o-printer.svg │ │ │ │ ├── o-puzzle-piece.svg │ │ │ │ ├── o-qr-code.svg │ │ │ │ ├── o-question-mark-circle.svg │ │ │ │ ├── o-queue-list.svg │ │ │ │ ├── o-radio.svg │ │ │ │ ├── o-receipt-percent.svg │ │ │ │ ├── o-receipt-refund.svg │ │ │ │ ├── o-rectangle-group.svg │ │ │ │ ├── o-rectangle-stack.svg │ │ │ │ ├── o-rocket-launch.svg │ │ │ │ ├── o-rss.svg │ │ │ │ ├── o-scale.svg │ │ │ │ ├── o-scissors.svg │ │ │ │ ├── o-server-stack.svg │ │ │ │ ├── o-server.svg │ │ │ │ ├── o-share.svg │ │ │ │ ├── o-shield-check.svg │ │ │ │ ├── o-shield-exclamation.svg │ │ │ │ ├── o-shopping-bag.svg │ │ │ │ ├── o-shopping-cart.svg │ │ │ │ ├── o-signal-slash.svg │ │ │ │ ├── o-signal.svg │ │ │ │ ├── o-sparkles.svg │ │ │ │ ├── o-speaker-wave.svg │ │ │ │ ├── o-speaker-x-mark.svg │ │ │ │ ├── o-square-2-stack.svg │ │ │ │ ├── o-square-3-stack-3d.svg │ │ │ │ ├── o-squares-2x2.svg │ │ │ │ ├── o-squares-plus.svg │ │ │ │ ├── o-star.svg │ │ │ │ ├── o-stop-circle.svg │ │ │ │ ├── o-stop.svg │ │ │ │ ├── o-sun.svg │ │ │ │ ├── o-swatch.svg │ │ │ │ ├── o-table-cells.svg │ │ │ │ ├── o-tag.svg │ │ │ │ ├── o-ticket.svg │ │ │ │ ├── o-trash.svg │ │ │ │ ├── o-trophy.svg │ │ │ │ ├── o-truck.svg │ │ │ │ ├── o-tv.svg │ │ │ │ ├── o-user-circle.svg │ │ │ │ ├── o-user-group.svg │ │ │ │ ├── o-user-minus.svg │ │ │ │ ├── o-user-plus.svg │ │ │ │ ├── o-user.svg │ │ │ │ ├── o-users.svg │ │ │ │ ├── o-variable.svg │ │ │ │ ├── o-video-camera-slash.svg │ │ │ │ ├── o-video-camera.svg │ │ │ │ ├── o-view-columns.svg │ │ │ │ ├── o-viewfinder-circle.svg │ │ │ │ ├── o-wallet.svg │ │ │ │ ├── o-wifi.svg │ │ │ │ ├── o-window.svg │ │ │ │ ├── o-wrench-screwdriver.svg │ │ │ │ ├── o-wrench.svg │ │ │ │ ├── o-x-circle.svg │ │ │ │ ├── o-x-mark.svg │ │ │ │ ├── s-academic-cap.svg │ │ │ │ ├── s-adjustments-horizontal.svg │ │ │ │ ├── s-adjustments-vertical.svg │ │ │ │ ├── s-archive-box-arrow-down.svg │ │ │ │ ├── s-archive-box-x-mark.svg │ │ │ │ ├── s-archive-box.svg │ │ │ │ ├── s-arrow-down-circle.svg │ │ │ │ ├── s-arrow-down-left.svg │ │ │ │ ├── s-arrow-down-on-square-stack.svg │ │ │ │ ├── s-arrow-down-on-square.svg │ │ │ │ ├── s-arrow-down-right.svg │ │ │ │ ├── s-arrow-down-tray.svg │ │ │ │ ├── s-arrow-down.svg │ │ │ │ ├── s-arrow-left-circle.svg │ │ │ │ ├── s-arrow-left-on-rectangle.svg │ │ │ │ ├── s-arrow-left.svg │ │ │ │ ├── s-arrow-long-down.svg │ │ │ │ ├── s-arrow-long-left.svg │ │ │ │ ├── s-arrow-long-right.svg │ │ │ │ ├── s-arrow-long-up.svg │ │ │ │ ├── s-arrow-path-rounded-square.svg │ │ │ │ ├── s-arrow-path.svg │ │ │ │ ├── s-arrow-right-circle.svg │ │ │ │ ├── s-arrow-right-on-rectangle.svg │ │ │ │ ├── s-arrow-right.svg │ │ │ │ ├── s-arrow-small-down.svg │ │ │ │ ├── s-arrow-small-left.svg │ │ │ │ ├── s-arrow-small-right.svg │ │ │ │ ├── s-arrow-small-up.svg │ │ │ │ ├── s-arrow-top-right-on-square.svg │ │ │ │ ├── s-arrow-trending-down.svg │ │ │ │ ├── s-arrow-trending-up.svg │ │ │ │ ├── s-arrow-up-circle.svg │ │ │ │ ├── s-arrow-up-left.svg │ │ │ │ ├── s-arrow-up-on-square-stack.svg │ │ │ │ ├── s-arrow-up-on-square.svg │ │ │ │ ├── s-arrow-up-right.svg │ │ │ │ ├── s-arrow-up-tray.svg │ │ │ │ ├── s-arrow-up.svg │ │ │ │ ├── s-arrow-uturn-down.svg │ │ │ │ ├── s-arrow-uturn-left.svg │ │ │ │ ├── s-arrow-uturn-right.svg │ │ │ │ ├── s-arrow-uturn-up.svg │ │ │ │ ├── s-arrows-pointing-in.svg │ │ │ │ ├── s-arrows-pointing-out.svg │ │ │ │ ├── s-arrows-right-left.svg │ │ │ │ ├── s-arrows-up-down.svg │ │ │ │ ├── s-at-symbol.svg │ │ │ │ ├── s-backspace.svg │ │ │ │ ├── s-backward.svg │ │ │ │ ├── s-banknotes.svg │ │ │ │ ├── s-bars-2.svg │ │ │ │ ├── s-bars-3-bottom-left.svg │ │ │ │ ├── s-bars-3-bottom-right.svg │ │ │ │ ├── s-bars-3-center-left.svg │ │ │ │ ├── s-bars-3.svg │ │ │ │ ├── s-bars-4.svg │ │ │ │ ├── s-bars-arrow-down.svg │ │ │ │ ├── s-bars-arrow-up.svg │ │ │ │ ├── s-battery-0.svg │ │ │ │ ├── s-battery-100.svg │ │ │ │ ├── s-battery-50.svg │ │ │ │ ├── s-beaker.svg │ │ │ │ ├── s-bell-alert.svg │ │ │ │ ├── s-bell-slash.svg │ │ │ │ ├── s-bell-snooze.svg │ │ │ │ ├── s-bell.svg │ │ │ │ ├── s-bolt-slash.svg │ │ │ │ ├── s-bolt.svg │ │ │ │ ├── s-book-open.svg │ │ │ │ ├── s-bookmark-slash.svg │ │ │ │ ├── s-bookmark-square.svg │ │ │ │ ├── s-bookmark.svg │ │ │ │ ├── s-briefcase.svg │ │ │ │ ├── s-bug-ant.svg │ │ │ │ ├── s-building-library.svg │ │ │ │ ├── s-building-office-2.svg │ │ │ │ ├── s-building-office.svg │ │ │ │ ├── s-building-storefront.svg │ │ │ │ ├── s-cake.svg │ │ │ │ ├── s-calculator.svg │ │ │ │ ├── s-calendar-days.svg │ │ │ │ ├── s-calendar.svg │ │ │ │ ├── s-camera.svg │ │ │ │ ├── s-chart-bar-square.svg │ │ │ │ ├── s-chart-bar.svg │ │ │ │ ├── s-chart-pie.svg │ │ │ │ ├── s-chat-bubble-bottom-center-text.svg │ │ │ │ ├── s-chat-bubble-bottom-center.svg │ │ │ │ ├── s-chat-bubble-left-ellipsis.svg │ │ │ │ ├── s-chat-bubble-left-right.svg │ │ │ │ ├── s-chat-bubble-left.svg │ │ │ │ ├── s-chat-bubble-oval-left-ellipsis.svg │ │ │ │ ├── s-chat-bubble-oval-left.svg │ │ │ │ ├── s-check-badge.svg │ │ │ │ ├── s-check-circle.svg │ │ │ │ ├── s-check.svg │ │ │ │ ├── s-chevron-double-down.svg │ │ │ │ ├── s-chevron-double-left.svg │ │ │ │ ├── s-chevron-double-right.svg │ │ │ │ ├── s-chevron-double-up.svg │ │ │ │ ├── s-chevron-down.svg │ │ │ │ ├── s-chevron-left.svg │ │ │ │ ├── s-chevron-right.svg │ │ │ │ ├── s-chevron-up-down.svg │ │ │ │ ├── s-chevron-up.svg │ │ │ │ ├── s-circle-stack.svg │ │ │ │ ├── s-clipboard-document-check.svg │ │ │ │ ├── s-clipboard-document-list.svg │ │ │ │ ├── s-clipboard-document.svg │ │ │ │ ├── s-clipboard.svg │ │ │ │ ├── s-clock.svg │ │ │ │ ├── s-cloud-arrow-down.svg │ │ │ │ ├── s-cloud-arrow-up.svg │ │ │ │ ├── s-cloud.svg │ │ │ │ ├── s-code-bracket-square.svg │ │ │ │ ├── s-code-bracket.svg │ │ │ │ ├── s-code-square.svg │ │ │ │ ├── s-code.svg │ │ │ │ ├── s-cog-6-tooth.svg │ │ │ │ ├── s-cog-8-tooth.svg │ │ │ │ ├── s-cog.svg │ │ │ │ ├── s-command-line.svg │ │ │ │ ├── s-computer-desktop.svg │ │ │ │ ├── s-cpu-chip.svg │ │ │ │ ├── s-credit-card.svg │ │ │ │ ├── s-cube-transparent.svg │ │ │ │ ├── s-cube.svg │ │ │ │ ├── s-currency-bangladeshi.svg │ │ │ │ ├── s-currency-dollar.svg │ │ │ │ ├── s-currency-euro.svg │ │ │ │ ├── s-currency-pound.svg │ │ │ │ ├── s-currency-rupee.svg │ │ │ │ ├── s-currency-yen.svg │ │ │ │ ├── s-cursor-arrow-rays.svg │ │ │ │ ├── s-cursor-arrow-ripple.svg │ │ │ │ ├── s-device-phone-mobile.svg │ │ │ │ ├── s-device-tablet.svg │ │ │ │ ├── s-document-arrow-down.svg │ │ │ │ ├── s-document-arrow-up.svg │ │ │ │ ├── s-document-chart-bar.svg │ │ │ │ ├── s-document-check.svg │ │ │ │ ├── s-document-duplicate.svg │ │ │ │ ├── s-document-magnifying-glass.svg │ │ │ │ ├── s-document-minus.svg │ │ │ │ ├── s-document-plus.svg │ │ │ │ ├── s-document-text.svg │ │ │ │ ├── s-document.svg │ │ │ │ ├── s-ellipsis-horizontal-circle.svg │ │ │ │ ├── s-ellipsis-horizontal.svg │ │ │ │ ├── s-ellipsis-vertical.svg │ │ │ │ ├── s-envelope-open.svg │ │ │ │ ├── s-envelope.svg │ │ │ │ ├── s-exclamation-circle.svg │ │ │ │ ├── s-exclamation-triangle.svg │ │ │ │ ├── s-eye-dropper.svg │ │ │ │ ├── s-eye-slash.svg │ │ │ │ ├── s-eye.svg │ │ │ │ ├── s-face-frown.svg │ │ │ │ ├── s-face-smile.svg │ │ │ │ ├── s-film.svg │ │ │ │ ├── s-finger-print.svg │ │ │ │ ├── s-fire.svg │ │ │ │ ├── s-flag.svg │ │ │ │ ├── s-folder-arrow-down.svg │ │ │ │ ├── s-folder-minus.svg │ │ │ │ ├── s-folder-open.svg │ │ │ │ ├── s-folder-plus.svg │ │ │ │ ├── s-folder.svg │ │ │ │ ├── s-forward.svg │ │ │ │ ├── s-funnel.svg │ │ │ │ ├── s-gif.svg │ │ │ │ ├── s-gift-top.svg │ │ │ │ ├── s-gift.svg │ │ │ │ ├── s-globe-alt.svg │ │ │ │ ├── s-globe-americas.svg │ │ │ │ ├── s-globe-asia-australia.svg │ │ │ │ ├── s-globe-europe-africa.svg │ │ │ │ ├── s-hand-raised.svg │ │ │ │ ├── s-hand-thumb-down.svg │ │ │ │ ├── s-hand-thumb-up.svg │ │ │ │ ├── s-hashtag.svg │ │ │ │ ├── s-heart.svg │ │ │ │ ├── s-home-modern.svg │ │ │ │ ├── s-home.svg │ │ │ │ ├── s-identification.svg │ │ │ │ ├── s-inbox-arrow-down.svg │ │ │ │ ├── s-inbox-stack.svg │ │ │ │ ├── s-inbox.svg │ │ │ │ ├── s-information-circle.svg │ │ │ │ ├── s-key.svg │ │ │ │ ├── s-language.svg │ │ │ │ ├── s-lifebuoy.svg │ │ │ │ ├── s-light-bulb.svg │ │ │ │ ├── s-link.svg │ │ │ │ ├── s-list-bullet.svg │ │ │ │ ├── s-lock-closed.svg │ │ │ │ ├── s-lock-open.svg │ │ │ │ ├── s-magnifying-glass-circle.svg │ │ │ │ ├── s-magnifying-glass-minus.svg │ │ │ │ ├── s-magnifying-glass-plus.svg │ │ │ │ ├── s-magnifying-glass.svg │ │ │ │ ├── s-map-pin.svg │ │ │ │ ├── s-map.svg │ │ │ │ ├── s-megaphone.svg │ │ │ │ ├── s-microphone.svg │ │ │ │ ├── s-minus-circle.svg │ │ │ │ ├── s-minus-small.svg │ │ │ │ ├── s-minus.svg │ │ │ │ ├── s-moon.svg │ │ │ │ ├── s-musical-note.svg │ │ │ │ ├── s-newspaper.svg │ │ │ │ ├── s-no-symbol.svg │ │ │ │ ├── s-paint-brush.svg │ │ │ │ ├── s-paper-airplane.svg │ │ │ │ ├── s-paper-clip.svg │ │ │ │ ├── s-pause-circle.svg │ │ │ │ ├── s-pause.svg │ │ │ │ ├── s-pencil-square.svg │ │ │ │ ├── s-pencil.svg │ │ │ │ ├── s-phone-arrow-down-left.svg │ │ │ │ ├── s-phone-arrow-up-right.svg │ │ │ │ ├── s-phone-x-mark.svg │ │ │ │ ├── s-phone.svg │ │ │ │ ├── s-photo.svg │ │ │ │ ├── s-play-circle.svg │ │ │ │ ├── s-play-pause.svg │ │ │ │ ├── s-play.svg │ │ │ │ ├── s-plus-circle.svg │ │ │ │ ├── s-plus-small.svg │ │ │ │ ├── s-plus.svg │ │ │ │ ├── s-power.svg │ │ │ │ ├── s-presentation-chart-bar.svg │ │ │ │ ├── s-presentation-chart-line.svg │ │ │ │ ├── s-printer.svg │ │ │ │ ├── s-puzzle-piece.svg │ │ │ │ ├── s-qr-code.svg │ │ │ │ ├── s-question-mark-circle.svg │ │ │ │ ├── s-queue-list.svg │ │ │ │ ├── s-radio.svg │ │ │ │ ├── s-receipt-percent.svg │ │ │ │ ├── s-receipt-refund.svg │ │ │ │ ├── s-rectangle-group.svg │ │ │ │ ├── s-rectangle-stack.svg │ │ │ │ ├── s-rocket-launch.svg │ │ │ │ ├── s-rss.svg │ │ │ │ ├── s-scale.svg │ │ │ │ ├── s-scissors.svg │ │ │ │ ├── s-server-stack.svg │ │ │ │ ├── s-server.svg │ │ │ │ ├── s-share.svg │ │ │ │ ├── s-shield-check.svg │ │ │ │ ├── s-shield-exclamation.svg │ │ │ │ ├── s-shopping-bag.svg │ │ │ │ ├── s-shopping-cart.svg │ │ │ │ ├── s-signal-slash.svg │ │ │ │ ├── s-signal.svg │ │ │ │ ├── s-sparkles.svg │ │ │ │ ├── s-speaker-wave.svg │ │ │ │ ├── s-speaker-x-mark.svg │ │ │ │ ├── s-square-2-stack.svg │ │ │ │ ├── s-square-3-stack-3d.svg │ │ │ │ ├── s-squares-2x2.svg │ │ │ │ ├── s-squares-plus.svg │ │ │ │ ├── s-star.svg │ │ │ │ ├── s-stop-circle.svg │ │ │ │ ├── s-stop.svg │ │ │ │ ├── s-sun.svg │ │ │ │ ├── s-swatch.svg │ │ │ │ ├── s-table-cells.svg │ │ │ │ ├── s-tag.svg │ │ │ │ ├── s-ticket.svg │ │ │ │ ├── s-trash.svg │ │ │ │ ├── s-trophy.svg │ │ │ │ ├── s-truck.svg │ │ │ │ ├── s-tv.svg │ │ │ │ ├── s-user-circle.svg │ │ │ │ ├── s-user-group.svg │ │ │ │ ├── s-user-minus.svg │ │ │ │ ├── s-user-plus.svg │ │ │ │ ├── s-user.svg │ │ │ │ ├── s-users.svg │ │ │ │ ├── s-variable.svg │ │ │ │ ├── s-video-camera-slash.svg │ │ │ │ ├── s-video-camera.svg │ │ │ │ ├── s-view-columns.svg │ │ │ │ ├── s-viewfinder-circle.svg │ │ │ │ ├── s-wallet.svg │ │ │ │ ├── s-wifi.svg │ │ │ │ ├── s-window.svg │ │ │ │ ├── s-wrench-screwdriver.svg │ │ │ │ ├── s-wrench.svg │ │ │ │ ├── s-x-circle.svg │ │ │ │ └── s-x-mark.svg │ │ └── src │ │ │ └── BladeHeroiconsServiceProvider.php │ └── blade-icons │ │ ├── LICENSE.md │ │ ├── bin │ │ └── blade-icons-generate │ │ ├── composer.json │ │ ├── config │ │ └── blade-icons.php │ │ ├── pint.json │ │ └── src │ │ ├── BladeIconsServiceProvider.php │ │ ├── Components │ │ ├── Icon.php │ │ └── Svg.php │ │ ├── Concerns │ │ └── RendersAttributes.php │ │ ├── Console │ │ ├── CacheCommand.php │ │ └── ClearCommand.php │ │ ├── Exceptions │ │ ├── CannotRegisterIconSet.php │ │ └── SvgNotFound.php │ │ ├── Factory.php │ │ ├── Generation │ │ └── IconGenerator.php │ │ ├── IconsManifest.php │ │ ├── Svg.php │ │ └── helpers.php ├── brick │ └── math │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── BigDecimal.php │ │ ├── BigInteger.php │ │ ├── BigNumber.php │ │ ├── BigRational.php │ │ ├── Exception │ │ ├── DivisionByZeroException.php │ │ ├── IntegerOverflowException.php │ │ ├── MathException.php │ │ ├── NegativeNumberException.php │ │ ├── NumberFormatException.php │ │ └── RoundingNecessaryException.php │ │ ├── Internal │ │ ├── Calculator.php │ │ └── Calculator │ │ │ ├── BcMathCalculator.php │ │ │ ├── GmpCalculator.php │ │ │ └── NativeCalculator.php │ │ └── RoundingMode.php ├── cocur │ └── slugify │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Bridge │ │ ├── Laravel │ │ │ ├── SlugifyFacade.php │ │ │ └── SlugifyServiceProvider.php │ │ ├── Latte │ │ │ └── SlugifyHelper.php │ │ ├── League │ │ │ └── SlugifyServiceProvider.php │ │ ├── Nette │ │ │ └── SlugifyExtension.php │ │ ├── Plum │ │ │ └── SlugifyConverter.php │ │ ├── Symfony │ │ │ ├── CocurSlugifyBundle.php │ │ │ ├── CocurSlugifyExtension.php │ │ │ └── Configuration.php │ │ ├── Twig │ │ │ └── SlugifyExtension.php │ │ └── ZF2 │ │ │ ├── Module.php │ │ │ ├── SlugifyService.php │ │ │ ├── SlugifyViewHelper.php │ │ │ └── SlugifyViewHelperFactory.php │ │ ├── RuleProvider │ │ ├── DefaultRuleProvider.php │ │ ├── FileRuleProvider.php │ │ └── RuleProviderInterface.php │ │ ├── Slugify.php │ │ └── SlugifyInterface.php ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ ├── pcre │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── MatchAllResult.php │ │ │ ├── MatchAllStrictGroupsResult.php │ │ │ ├── MatchAllWithOffsetsResult.php │ │ │ ├── MatchResult.php │ │ │ ├── MatchStrictGroupsResult.php │ │ │ ├── MatchWithOffsetsResult.php │ │ │ ├── PcreException.php │ │ │ ├── Preg.php │ │ │ ├── Regex.php │ │ │ ├── ReplaceResult.php │ │ │ └── UnexpectedNullMatchException.php │ ├── platform_check.php │ ├── semver │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan-baseline.neon │ │ └── src │ │ │ ├── Comparator.php │ │ │ ├── CompilingMatcher.php │ │ │ ├── Constraint │ │ │ ├── Bound.php │ │ │ ├── Constraint.php │ │ │ ├── ConstraintInterface.php │ │ │ ├── MatchAllConstraint.php │ │ │ ├── MatchNoneConstraint.php │ │ │ └── MultiConstraint.php │ │ │ ├── Interval.php │ │ │ ├── Intervals.php │ │ │ ├── Semver.php │ │ │ └── VersionParser.php │ └── xdebug-handler │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── PhpConfig.php │ │ ├── Process.php │ │ ├── Status.php │ │ └── XdebugHandler.php ├── cviebrock │ ├── eloquent-sluggable │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── jetbrains.svg │ │ │ └── workflows │ │ │ │ └── tests.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .semver │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── ROUTE-MODEL-BINDING.md │ │ ├── SCOPE-HELPERS.md │ │ ├── TODO.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── resources │ │ │ └── config │ │ │ │ └── sluggable.php │ │ ├── src │ │ │ ├── ServiceProvider.php │ │ │ ├── Services │ │ │ │ └── SlugService.php │ │ │ ├── Sluggable.php │ │ │ ├── SluggableObserver.php │ │ │ └── SluggableScopeHelpers.php │ │ └── tests │ │ │ ├── BaseTests.php │ │ │ ├── EventTests.php │ │ │ ├── Listeners │ │ │ ├── AbortSlugging.php │ │ │ └── DoNotAbortSlugging.php │ │ │ ├── Models │ │ │ ├── Author.php │ │ │ ├── Post.php │ │ │ ├── PostNotSluggable.php │ │ │ ├── PostShortConfig.php │ │ │ ├── PostShortConfigWithScopeHelpers.php │ │ │ ├── PostWithCustomCallableMethod.php │ │ │ ├── PostWithCustomEngine.php │ │ │ ├── PostWithCustomEngine2.php │ │ │ ├── PostWithCustomEngineOptions.php │ │ │ ├── PostWithCustomMethod.php │ │ │ ├── PostWithCustomSeparator.php │ │ │ ├── PostWithCustomSource.php │ │ │ ├── PostWithCustomSuffix.php │ │ │ ├── PostWithEmptySeparator.php │ │ │ ├── PostWithFirstUniqueSuffix.php │ │ │ ├── PostWithForeignRuleset.php │ │ │ ├── PostWithIdSource.php │ │ │ ├── PostWithIdSourceOnSaved.php │ │ │ ├── PostWithIncludeTrashed.php │ │ │ ├── PostWithMaxLength.php │ │ │ ├── PostWithMaxLengthSplitWords.php │ │ │ ├── PostWithMultipleSlugs.php │ │ │ ├── PostWithMultipleSlugsAndCustomSlugKey.php │ │ │ ├── PostWithMultipleSlugsAndHelperTrait.php │ │ │ ├── PostWithMultipleSources.php │ │ │ ├── PostWithNoSource.php │ │ │ ├── PostWithOnUpdate.php │ │ │ ├── PostWithRelation.php │ │ │ ├── PostWithReservedSlug.php │ │ │ ├── PostWithSoftDeleting.php │ │ │ ├── PostWithSoftDeletingIncludeTrashed.php │ │ │ └── PostWithUniqueSlugConstraints.php │ │ │ ├── OnUpdateTests.php │ │ │ ├── ScopeHelperTests.php │ │ │ ├── SoftDeleteTests.php │ │ │ ├── StaticTests.php │ │ │ ├── TestCase.php │ │ │ ├── TestServiceProvider.php │ │ │ ├── UniqueTests.php │ │ │ └── database │ │ │ └── migrations │ │ │ ├── 2013_11_04_163552_posts.php │ │ │ └── 2015_08_17_185144_authors.php │ └── eloquent-taggable │ │ ├── .github │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ ├── jetbrains.svg │ │ └── workflows │ │ │ └── tests.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .semver │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── TODO.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── resources │ │ ├── config │ │ │ └── taggable.php │ │ └── database │ │ │ └── migrations │ │ │ └── create_taggable_table.php.stub │ │ ├── src │ │ ├── Events │ │ │ ├── ModelTagged.php │ │ │ └── ModelUntagged.php │ │ ├── Exceptions │ │ │ └── NoTagsSpecifiedException.php │ │ ├── Models │ │ │ └── Tag.php │ │ ├── ServiceProvider.php │ │ ├── Services │ │ │ └── TagService.php │ │ └── Taggable.php │ │ └── tests │ │ ├── CollectionTests.php │ │ ├── Configuration │ │ ├── CustomDelimiterTests.php │ │ ├── CustomGlueTests.php │ │ ├── CustomNormalizerTests.php │ │ ├── CustomTableTests.php │ │ ├── CustomTagModelTests.php │ │ └── ScopeExceptionTests.php │ │ ├── ConnectionTests.php │ │ ├── CustomTagClass.php │ │ ├── EventTests.php │ │ ├── InverseTests.php │ │ ├── ScopeTests.php │ │ ├── StaticTests.php │ │ ├── TagServiceTests.php │ │ ├── TaggingTests.php │ │ ├── TestCase.php │ │ ├── TestDummy.php │ │ ├── TestModel.php │ │ ├── TestServiceProvider.php │ │ └── database │ │ └── migrations │ │ └── 2013_11_04_163552_create_test_models_table.php ├── cyrildewit │ └── eloquent-viewable │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ ├── config │ │ └── eloquent-viewable.php │ │ ├── migrations │ │ └── create_views_table.php.stub │ │ └── src │ │ ├── CacheKey.php │ │ ├── Contracts │ │ ├── CrawlerDetector.php │ │ ├── View.php │ │ ├── Viewable.php │ │ ├── Views.php │ │ └── Visitor.php │ │ ├── CooldownManager.php │ │ ├── CrawlerDetectAdapter.php │ │ ├── EloquentViewableServiceProvider.php │ │ ├── Events │ │ └── ViewRecorded.php │ │ ├── Exceptions │ │ ├── InvalidPeriod.php │ │ └── ViewRecordException.php │ │ ├── InteractsWithViews.php │ │ ├── Support │ │ └── Period.php │ │ ├── View.php │ │ ├── ViewableObserver.php │ │ ├── Views.php │ │ ├── ViewsFacade.php │ │ ├── Visitor.php │ │ └── helpers.php ├── daftspunk │ └── laravel-config-writer │ │ ├── .github │ │ └── workflows │ │ │ └── tests.yml │ │ ├── .gitignore │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ ├── DataWriter │ │ │ ├── FileWriter.php │ │ │ └── Rewrite.php │ │ ├── LumenServiceProvider.php │ │ ├── Repository.php │ │ └── ServiceProvider.php │ │ └── tests │ │ ├── Config │ │ └── RewriteTest.php │ │ └── fixtures │ │ └── Config │ │ └── sample-config.php ├── danharrin │ ├── date-format-converter │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ └── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ └── config.yml │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Converter.php │ │ │ ├── helpers.php │ │ │ └── standards.php │ └── livewire-rate-limiting │ │ ├── .github │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── config.yml │ │ └── workflows │ │ │ └── tests.yml │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ ├── Exceptions │ │ │ └── TooManyRequestsException.php │ │ └── WithRateLimiting.php │ │ └── tests │ │ ├── RateLimitingTest.php │ │ ├── TestCase.php │ │ └── views │ │ ├── component.blade.php │ │ └── volt-component.blade.php ├── dflydev │ └── dot-access-data │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Data.php │ │ ├── DataInterface.php │ │ ├── Exception │ │ ├── DataException.php │ │ ├── InvalidPathException.php │ │ └── MissingPathException.php │ │ └── Util.php ├── doctrine │ ├── cache │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE-1.11.md │ │ ├── UPGRADE-1.4.md │ │ ├── composer.json │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Cache │ │ │ ├── Cache.php │ │ │ ├── CacheProvider.php │ │ │ ├── ClearableCache.php │ │ │ ├── FlushableCache.php │ │ │ ├── MultiDeleteCache.php │ │ │ ├── MultiGetCache.php │ │ │ ├── MultiOperationCache.php │ │ │ ├── MultiPutCache.php │ │ │ └── Psr6 │ │ │ ├── CacheAdapter.php │ │ │ ├── CacheItem.php │ │ │ ├── DoctrineProvider.php │ │ │ ├── InvalidArgument.php │ │ │ └── TypedCacheItem.php │ ├── dbal │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ ├── doctrine-dbal │ │ │ └── doctrine-dbal.php │ │ ├── composer.json │ │ └── src │ │ │ ├── ArrayParameterType.php │ │ │ ├── ArrayParameters │ │ │ ├── Exception.php │ │ │ └── Exception │ │ │ │ ├── MissingNamedParameter.php │ │ │ │ └── MissingPositionalParameter.php │ │ │ ├── Cache │ │ │ ├── ArrayResult.php │ │ │ ├── CacheException.php │ │ │ └── QueryCacheProfile.php │ │ │ ├── ColumnCase.php │ │ │ ├── Configuration.php │ │ │ ├── Connection.php │ │ │ ├── ConnectionException.php │ │ │ ├── Connections │ │ │ └── PrimaryReadReplicaConnection.php │ │ │ ├── Driver.php │ │ │ ├── Driver │ │ │ ├── API │ │ │ │ ├── ExceptionConverter.php │ │ │ │ ├── IBMDB2 │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── MySQL │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── OCI │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── PostgreSQL │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── SQLSrv │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ └── SQLite │ │ │ │ │ ├── ExceptionConverter.php │ │ │ │ │ └── UserDefinedFunctions.php │ │ │ ├── AbstractDB2Driver.php │ │ │ ├── AbstractException.php │ │ │ ├── AbstractMySQLDriver.php │ │ │ ├── AbstractOracleDriver.php │ │ │ ├── AbstractOracleDriver │ │ │ │ └── EasyConnectString.php │ │ │ ├── AbstractPostgreSQLDriver.php │ │ │ ├── AbstractSQLServerDriver.php │ │ │ ├── AbstractSQLServerDriver │ │ │ │ └── Exception │ │ │ │ │ └── PortWithoutHost.php │ │ │ ├── AbstractSQLiteDriver.php │ │ │ ├── AbstractSQLiteDriver │ │ │ │ └── Middleware │ │ │ │ │ └── EnableForeignKeys.php │ │ │ ├── Connection.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ │ └── UnknownParameterType.php │ │ │ ├── FetchUtils.php │ │ │ ├── IBMDB2 │ │ │ │ ├── Connection.php │ │ │ │ ├── DataSourceName.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CannotCopyStreamToStream.php │ │ │ │ │ ├── CannotCreateTemporaryFile.php │ │ │ │ │ ├── ConnectionError.php │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── PrepareFailed.php │ │ │ │ │ └── StatementError.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── Middleware.php │ │ │ ├── Middleware │ │ │ │ ├── AbstractConnectionMiddleware.php │ │ │ │ ├── AbstractDriverMiddleware.php │ │ │ │ ├── AbstractResultMiddleware.php │ │ │ │ └── AbstractStatementMiddleware.php │ │ │ ├── Mysqli │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConnectionError.php │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ ├── FailedReadingStreamOffset.php │ │ │ │ │ ├── HostRequired.php │ │ │ │ │ ├── InvalidCharset.php │ │ │ │ │ ├── InvalidOption.php │ │ │ │ │ ├── NonStreamResourceUsedAsLargeObject.php │ │ │ │ │ └── StatementError.php │ │ │ │ ├── Initializer.php │ │ │ │ ├── Initializer │ │ │ │ │ ├── Charset.php │ │ │ │ │ ├── Options.php │ │ │ │ │ └── Secure.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── OCI8 │ │ │ │ ├── Connection.php │ │ │ │ ├── ConvertPositionalToNamedPlaceholders.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── NonTerminatedStringLiteral.php │ │ │ │ │ ├── SequenceDoesNotExist.php │ │ │ │ │ └── UnknownParameterIndex.php │ │ │ │ ├── ExecutionMode.php │ │ │ │ ├── Middleware │ │ │ │ │ └── InitializeSession.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── PDO │ │ │ │ ├── Connection.php │ │ │ │ ├── Exception.php │ │ │ │ ├── MySQL │ │ │ │ │ └── Driver.php │ │ │ │ ├── OCI │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOException.php │ │ │ │ ├── ParameterTypeMap.php │ │ │ │ ├── PgSQL │ │ │ │ │ └── Driver.php │ │ │ │ ├── Result.php │ │ │ │ ├── SQLSrv │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── SQLite │ │ │ │ │ └── Driver.php │ │ │ │ └── Statement.php │ │ │ ├── PgSQL │ │ │ │ ├── Connection.php │ │ │ │ ├── ConvertParameters.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ │ ├── UnexpectedValue.php │ │ │ │ │ └── UnknownParameter.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── Result.php │ │ │ ├── SQLSrv │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ └── Error.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── SQLite3 │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── ServerInfoAwareConnection.php │ │ │ └── Statement.php │ │ │ ├── DriverManager.php │ │ │ ├── Event │ │ │ ├── ConnectionEventArgs.php │ │ │ ├── Listeners │ │ │ │ ├── OracleSessionInit.php │ │ │ │ ├── SQLSessionInit.php │ │ │ │ └── SQLiteSessionInit.php │ │ │ ├── SchemaAlterTableAddColumnEventArgs.php │ │ │ ├── SchemaAlterTableChangeColumnEventArgs.php │ │ │ ├── SchemaAlterTableEventArgs.php │ │ │ ├── SchemaAlterTableRemoveColumnEventArgs.php │ │ │ ├── SchemaAlterTableRenameColumnEventArgs.php │ │ │ ├── SchemaColumnDefinitionEventArgs.php │ │ │ ├── SchemaCreateTableColumnEventArgs.php │ │ │ ├── SchemaCreateTableEventArgs.php │ │ │ ├── SchemaDropTableEventArgs.php │ │ │ ├── SchemaEventArgs.php │ │ │ ├── SchemaIndexDefinitionEventArgs.php │ │ │ ├── TransactionBeginEventArgs.php │ │ │ ├── TransactionCommitEventArgs.php │ │ │ ├── TransactionEventArgs.php │ │ │ └── TransactionRollBackEventArgs.php │ │ │ ├── Events.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ ├── ConnectionException.php │ │ │ ├── ConnectionLost.php │ │ │ ├── ConstraintViolationException.php │ │ │ ├── DatabaseDoesNotExist.php │ │ │ ├── DatabaseObjectExistsException.php │ │ │ ├── DatabaseObjectNotFoundException.php │ │ │ ├── DatabaseRequired.php │ │ │ ├── DeadlockException.php │ │ │ ├── DriverException.php │ │ │ ├── ForeignKeyConstraintViolationException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidFieldNameException.php │ │ │ ├── InvalidLockMode.php │ │ │ ├── LockWaitTimeoutException.php │ │ │ ├── MalformedDsnException.php │ │ │ ├── NoKeyValue.php │ │ │ ├── NonUniqueFieldNameException.php │ │ │ ├── NotNullConstraintViolationException.php │ │ │ ├── ReadOnlyException.php │ │ │ ├── RetryableException.php │ │ │ ├── SchemaDoesNotExist.php │ │ │ ├── ServerException.php │ │ │ ├── SyntaxErrorException.php │ │ │ ├── TableExistsException.php │ │ │ ├── TableNotFoundException.php │ │ │ └── UniqueConstraintViolationException.php │ │ │ ├── ExpandArrayParameters.php │ │ │ ├── FetchMode.php │ │ │ ├── Id │ │ │ ├── TableGenerator.php │ │ │ └── TableGeneratorSchemaVisitor.php │ │ │ ├── LockMode.php │ │ │ ├── Logging │ │ │ ├── Connection.php │ │ │ ├── DebugStack.php │ │ │ ├── Driver.php │ │ │ ├── LoggerChain.php │ │ │ ├── Middleware.php │ │ │ ├── SQLLogger.php │ │ │ └── Statement.php │ │ │ ├── ParameterType.php │ │ │ ├── Platforms │ │ │ ├── AbstractMySQLPlatform.php │ │ │ ├── AbstractPlatform.php │ │ │ ├── DB2111Platform.php │ │ │ ├── DB2Platform.php │ │ │ ├── DateIntervalUnit.php │ │ │ ├── Keywords │ │ │ │ ├── DB2Keywords.php │ │ │ │ ├── KeywordList.php │ │ │ │ ├── MariaDBKeywords.php │ │ │ │ ├── MariaDb102Keywords.php │ │ │ │ ├── MySQL57Keywords.php │ │ │ │ ├── MySQL80Keywords.php │ │ │ │ ├── MySQLKeywords.php │ │ │ │ ├── OracleKeywords.php │ │ │ │ ├── PostgreSQL100Keywords.php │ │ │ │ ├── PostgreSQL94Keywords.php │ │ │ │ ├── PostgreSQLKeywords.php │ │ │ │ ├── ReservedKeywordsValidator.php │ │ │ │ ├── SQLServer2012Keywords.php │ │ │ │ ├── SQLServerKeywords.php │ │ │ │ └── SQLiteKeywords.php │ │ │ ├── MariaDBPlatform.php │ │ │ ├── MariaDb1027Platform.php │ │ │ ├── MariaDb1043Platform.php │ │ │ ├── MariaDb1052Platform.php │ │ │ ├── MySQL │ │ │ │ ├── CollationMetadataProvider.php │ │ │ │ ├── CollationMetadataProvider │ │ │ │ │ ├── CachingCollationMetadataProvider.php │ │ │ │ │ └── ConnectionCollationMetadataProvider.php │ │ │ │ └── Comparator.php │ │ │ ├── MySQL57Platform.php │ │ │ ├── MySQL80Platform.php │ │ │ ├── MySQLPlatform.php │ │ │ ├── OraclePlatform.php │ │ │ ├── PostgreSQL100Platform.php │ │ │ ├── PostgreSQL94Platform.php │ │ │ ├── PostgreSQLPlatform.php │ │ │ ├── SQLServer │ │ │ │ └── Comparator.php │ │ │ ├── SQLServer2012Platform.php │ │ │ ├── SQLServerPlatform.php │ │ │ ├── SQLite │ │ │ │ └── Comparator.php │ │ │ ├── SqlitePlatform.php │ │ │ └── TrimMode.php │ │ │ ├── Portability │ │ │ ├── Connection.php │ │ │ ├── Converter.php │ │ │ ├── Driver.php │ │ │ ├── Middleware.php │ │ │ ├── OptimizeFlags.php │ │ │ ├── Result.php │ │ │ └── Statement.php │ │ │ ├── Query.php │ │ │ ├── Query │ │ │ ├── Expression │ │ │ │ ├── CompositeExpression.php │ │ │ │ └── ExpressionBuilder.php │ │ │ ├── QueryBuilder.php │ │ │ └── QueryException.php │ │ │ ├── Result.php │ │ │ ├── SQL │ │ │ ├── Builder │ │ │ │ ├── CreateSchemaObjectsSQLBuilder.php │ │ │ │ └── DropSchemaObjectsSQLBuilder.php │ │ │ ├── Parser.php │ │ │ └── Parser │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ └── RegularExpressionError.php │ │ │ │ └── Visitor.php │ │ │ ├── Schema │ │ │ ├── AbstractAsset.php │ │ │ ├── AbstractSchemaManager.php │ │ │ ├── Column.php │ │ │ ├── ColumnDiff.php │ │ │ ├── Comparator.php │ │ │ ├── Constraint.php │ │ │ ├── DB2SchemaManager.php │ │ │ ├── DefaultSchemaManagerFactory.php │ │ │ ├── Exception │ │ │ │ ├── ColumnAlreadyExists.php │ │ │ │ ├── ColumnDoesNotExist.php │ │ │ │ ├── ForeignKeyDoesNotExist.php │ │ │ │ ├── IndexAlreadyExists.php │ │ │ │ ├── IndexDoesNotExist.php │ │ │ │ ├── IndexNameInvalid.php │ │ │ │ ├── InvalidTableName.php │ │ │ │ ├── NamedForeignKeyRequired.php │ │ │ │ ├── NamespaceAlreadyExists.php │ │ │ │ ├── SequenceAlreadyExists.php │ │ │ │ ├── SequenceDoesNotExist.php │ │ │ │ ├── TableAlreadyExists.php │ │ │ │ ├── TableDoesNotExist.php │ │ │ │ ├── UniqueConstraintDoesNotExist.php │ │ │ │ └── UnknownColumnOption.php │ │ │ ├── ForeignKeyConstraint.php │ │ │ ├── Identifier.php │ │ │ ├── Index.php │ │ │ ├── LegacySchemaManagerFactory.php │ │ │ ├── MySQLSchemaManager.php │ │ │ ├── OracleSchemaManager.php │ │ │ ├── PostgreSQLSchemaManager.php │ │ │ ├── SQLServerSchemaManager.php │ │ │ ├── Schema.php │ │ │ ├── SchemaConfig.php │ │ │ ├── SchemaDiff.php │ │ │ ├── SchemaException.php │ │ │ ├── SchemaManagerFactory.php │ │ │ ├── Sequence.php │ │ │ ├── SqliteSchemaManager.php │ │ │ ├── Table.php │ │ │ ├── TableDiff.php │ │ │ ├── UniqueConstraint.php │ │ │ ├── View.php │ │ │ └── Visitor │ │ │ │ ├── AbstractVisitor.php │ │ │ │ ├── CreateSchemaSqlCollector.php │ │ │ │ ├── DropSchemaSqlCollector.php │ │ │ │ ├── Graphviz.php │ │ │ │ ├── NamespaceVisitor.php │ │ │ │ ├── RemoveNamespacedAssets.php │ │ │ │ └── Visitor.php │ │ │ ├── Statement.php │ │ │ ├── Tools │ │ │ ├── Console │ │ │ │ ├── Command │ │ │ │ │ ├── CommandCompatibility.php │ │ │ │ │ ├── ReservedWordsCommand.php │ │ │ │ │ └── RunSqlCommand.php │ │ │ │ ├── ConnectionNotFound.php │ │ │ │ ├── ConnectionProvider.php │ │ │ │ ├── ConnectionProvider │ │ │ │ │ └── SingleConnectionProvider.php │ │ │ │ └── ConsoleRunner.php │ │ │ └── DsnParser.php │ │ │ ├── TransactionIsolationLevel.php │ │ │ ├── Types │ │ │ ├── ArrayType.php │ │ │ ├── AsciiStringType.php │ │ │ ├── BigIntType.php │ │ │ ├── BinaryType.php │ │ │ ├── BlobType.php │ │ │ ├── BooleanType.php │ │ │ ├── ConversionException.php │ │ │ ├── DateImmutableType.php │ │ │ ├── DateIntervalType.php │ │ │ ├── DateTimeImmutableType.php │ │ │ ├── DateTimeType.php │ │ │ ├── DateTimeTzImmutableType.php │ │ │ ├── DateTimeTzType.php │ │ │ ├── DateType.php │ │ │ ├── DecimalType.php │ │ │ ├── FloatType.php │ │ │ ├── GuidType.php │ │ │ ├── IntegerType.php │ │ │ ├── JsonType.php │ │ │ ├── ObjectType.php │ │ │ ├── PhpDateTimeMappingType.php │ │ │ ├── PhpIntegerMappingType.php │ │ │ ├── SimpleArrayType.php │ │ │ ├── SmallIntType.php │ │ │ ├── StringType.php │ │ │ ├── TextType.php │ │ │ ├── TimeImmutableType.php │ │ │ ├── TimeType.php │ │ │ ├── Type.php │ │ │ ├── TypeRegistry.php │ │ │ ├── Types.php │ │ │ ├── VarDateTimeImmutableType.php │ │ │ └── VarDateTimeType.php │ │ │ └── VersionAwarePlatformDriver.php │ ├── deprecations │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Deprecations │ │ │ ├── Deprecation.php │ │ │ └── PHPUnit │ │ │ └── VerifyDeprecations.php │ ├── event-manager │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ ├── phpstan.neon.dist │ │ ├── psalm.xml │ │ └── src │ │ │ ├── EventArgs.php │ │ │ ├── EventManager.php │ │ │ └── EventSubscriber.php │ ├── inflector │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ └── index.rst │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Inflector │ │ │ ├── CachedWordInflector.php │ │ │ ├── GenericLanguageInflectorFactory.php │ │ │ ├── Inflector.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Language.php │ │ │ ├── LanguageInflectorFactory.php │ │ │ ├── NoopWordInflector.php │ │ │ ├── Rules │ │ │ ├── English │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── French │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── NorwegianBokmal │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Pattern.php │ │ │ ├── Patterns.php │ │ │ ├── Portuguese │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Ruleset.php │ │ │ ├── Spanish │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Substitution.php │ │ │ ├── Substitutions.php │ │ │ ├── Transformation.php │ │ │ ├── Transformations.php │ │ │ ├── Turkish │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ └── Word.php │ │ │ ├── RulesetInflector.php │ │ │ └── WordInflector.php │ └── lexer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ └── src │ │ ├── AbstractLexer.php │ │ └── Token.php ├── dragon-code │ ├── contracts │ │ ├── .editorconfig │ │ ├── .nodoc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ApiResponse │ │ │ ├── Parseable.php │ │ │ ├── Resolver.php │ │ │ ├── Responsable.php │ │ │ └── Wrapper.php │ │ │ ├── Cache │ │ │ ├── Store.php │ │ │ └── Ttl.php │ │ │ ├── Cashier │ │ │ ├── Auth │ │ │ │ └── Auth.php │ │ │ ├── Config │ │ │ │ ├── Details.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Logs.php │ │ │ │ ├── Main.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Payments │ │ │ │ │ ├── Attributes.php │ │ │ │ │ ├── Map.php │ │ │ │ │ └── Statuses.php │ │ │ │ ├── Queue.php │ │ │ │ └── Queues │ │ │ │ │ ├── Names.php │ │ │ │ │ └── Unique.php │ │ │ ├── Driver.php │ │ │ ├── Helpers │ │ │ │ └── Statuses.php │ │ │ ├── Http │ │ │ │ ├── Request.php │ │ │ │ └── Response.php │ │ │ └── Resources │ │ │ │ ├── AccessToken.php │ │ │ │ ├── Details.php │ │ │ │ └── Model.php │ │ │ ├── DataTransferObject │ │ │ ├── DataTransferObject.php │ │ │ └── Dtoable.php │ │ │ ├── Exceptions │ │ │ ├── Http │ │ │ │ ├── ClientException.php │ │ │ │ └── ServerException.php │ │ │ ├── LogicException.php │ │ │ ├── Manager.php │ │ │ └── RuntimeException.php │ │ │ ├── Http │ │ │ └── Builder.php │ │ │ ├── LangPublisher │ │ │ ├── Comparator.php │ │ │ ├── Plugin.php │ │ │ ├── Processor.php │ │ │ ├── Provider.php │ │ │ └── Translation.php │ │ │ ├── LaravelActions │ │ │ └── Actionable.php │ │ │ ├── MigrateDB │ │ │ └── Builder.php │ │ │ ├── Pretty │ │ │ └── Arr │ │ │ │ └── Caseable.php │ │ │ ├── Queue │ │ │ ├── ShouldBeUnique.php │ │ │ └── ShouldQueue.php │ │ │ ├── Routing │ │ │ └── Core │ │ │ │ ├── Config.php │ │ │ │ └── Tag.php │ │ │ └── Support │ │ │ ├── Arrayable.php │ │ │ ├── Filesystem.php │ │ │ ├── Jsonable.php │ │ │ ├── Makeable.php │ │ │ └── Stringable.php │ ├── pretty-array │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Concerns │ │ │ ├── HasCases.php │ │ │ └── HasCastable.php │ │ │ ├── Exceptions │ │ │ └── UnknownCaseTypeException.php │ │ │ └── Services │ │ │ ├── File.php │ │ │ ├── Formatter.php │ │ │ └── Formatters │ │ │ ├── Base.php │ │ │ ├── Json.php │ │ │ └── Php.php │ └── support │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── resources │ │ └── stubs │ │ │ ├── json.stub │ │ │ └── php_array.stub │ │ └── src │ │ ├── Application │ │ ├── OS.php │ │ └── Version.php │ │ ├── Callbacks │ │ ├── Empties.php │ │ └── Sorter.php │ │ ├── Concerns │ │ ├── Castable.php │ │ ├── Dumpable.php │ │ ├── Makeable.php │ │ ├── Resolvable.php │ │ └── Validation.php │ │ ├── Exceptions │ │ ├── DirectoryNotFoundException.php │ │ ├── FileNotFoundException.php │ │ ├── FileSyntaxErrorException.php │ │ ├── ForbiddenVariableTypeException.php │ │ ├── InvalidDestinationPathException.php │ │ ├── NotValidUrlException.php │ │ ├── UnhandledFileExtensionException.php │ │ ├── UnknownStubFileException.php │ │ └── UnknownUrlComponentIndexException.php │ │ ├── Facades │ │ ├── Application │ │ │ ├── OS.php │ │ │ └── Version.php │ │ ├── Callbacks │ │ │ ├── Empties.php │ │ │ └── Sorter.php │ │ ├── Facade.php │ │ ├── Filesystem │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ └── Path.php │ │ ├── Helpers │ │ │ ├── Arr.php │ │ │ ├── Boolean.php │ │ │ ├── Digit.php │ │ │ └── Str.php │ │ ├── Http │ │ │ ├── Builder.php │ │ │ └── Url.php │ │ ├── Instances │ │ │ ├── Call.php │ │ │ ├── Instance.php │ │ │ └── Reflection.php │ │ ├── Tools │ │ │ ├── Replace.php │ │ │ └── Stub.php │ │ └── Types │ │ │ └── Is.php │ │ ├── Filesystem │ │ ├── Directory.php │ │ ├── File.php │ │ └── Path.php │ │ ├── Helpers │ │ ├── Ables │ │ │ ├── Arrayable.php │ │ │ └── Stringable.php │ │ ├── Arr.php │ │ ├── Boolean.php │ │ ├── Digit.php │ │ └── Str.php │ │ ├── Http │ │ ├── Builder.php │ │ ├── BuilderPrepare.php │ │ └── Url.php │ │ ├── Instances │ │ ├── Call.php │ │ ├── Instance.php │ │ └── Reflection.php │ │ ├── Tools │ │ ├── Replace.php │ │ └── Stub.php │ │ └── Types │ │ └── Is.php ├── dragonmantank │ └── cron-expression │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Cron │ │ ├── AbstractField.php │ │ ├── CronExpression.php │ │ ├── DayOfMonthField.php │ │ ├── DayOfWeekField.php │ │ ├── FieldFactory.php │ │ ├── FieldFactoryInterface.php │ │ ├── FieldInterface.php │ │ ├── HoursField.php │ │ ├── MinutesField.php │ │ └── MonthField.php ├── egulias │ └── email-validator │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── EmailLexer.php │ │ ├── EmailParser.php │ │ ├── EmailValidator.php │ │ ├── MessageIDParser.php │ │ ├── Parser.php │ │ ├── Parser │ │ ├── Comment.php │ │ ├── CommentStrategy │ │ │ ├── CommentStrategy.php │ │ │ ├── DomainComment.php │ │ │ └── LocalComment.php │ │ ├── DomainLiteral.php │ │ ├── DomainPart.php │ │ ├── DoubleQuote.php │ │ ├── FoldingWhiteSpace.php │ │ ├── IDLeftPart.php │ │ ├── IDRightPart.php │ │ ├── LocalPart.php │ │ └── PartParser.php │ │ ├── Result │ │ ├── InvalidEmail.php │ │ ├── MultipleErrors.php │ │ ├── Reason │ │ │ ├── AtextAfterCFWS.php │ │ │ ├── CRLFAtTheEnd.php │ │ │ ├── CRLFX2.php │ │ │ ├── CRNoLF.php │ │ │ ├── CharNotAllowed.php │ │ │ ├── CommaInDomain.php │ │ │ ├── CommentsInIDRight.php │ │ │ ├── ConsecutiveAt.php │ │ │ ├── ConsecutiveDot.php │ │ │ ├── DetailedReason.php │ │ │ ├── DomainAcceptsNoMail.php │ │ │ ├── DomainHyphened.php │ │ │ ├── DomainTooLong.php │ │ │ ├── DotAtEnd.php │ │ │ ├── DotAtStart.php │ │ │ ├── EmptyReason.php │ │ │ ├── ExceptionFound.php │ │ │ ├── ExpectingATEXT.php │ │ │ ├── ExpectingCTEXT.php │ │ │ ├── ExpectingDTEXT.php │ │ │ ├── ExpectingDomainLiteralClose.php │ │ │ ├── LabelTooLong.php │ │ │ ├── LocalOrReservedDomain.php │ │ │ ├── NoDNSRecord.php │ │ │ ├── NoDomainPart.php │ │ │ ├── NoLocalPart.php │ │ │ ├── RFCWarnings.php │ │ │ ├── Reason.php │ │ │ ├── SpoofEmail.php │ │ │ ├── UnOpenedComment.php │ │ │ ├── UnableToGetDNSRecord.php │ │ │ ├── UnclosedComment.php │ │ │ ├── UnclosedQuotedString.php │ │ │ └── UnusualElements.php │ │ ├── Result.php │ │ ├── SpoofEmail.php │ │ └── ValidEmail.php │ │ ├── Validation │ │ ├── DNSCheckValidation.php │ │ ├── DNSGetRecordWrapper.php │ │ ├── DNSRecords.php │ │ ├── EmailValidation.php │ │ ├── Exception │ │ │ └── EmptyValidationList.php │ │ ├── Extra │ │ │ └── SpoofCheckValidation.php │ │ ├── MessageIDValidation.php │ │ ├── MultipleValidationWithAnd.php │ │ ├── NoRFCWarningsValidation.php │ │ └── RFCValidation.php │ │ └── Warning │ │ ├── AddressLiteral.php │ │ ├── CFWSNearAt.php │ │ ├── CFWSWithFWS.php │ │ ├── Comment.php │ │ ├── DeprecatedComment.php │ │ ├── DomainLiteral.php │ │ ├── EmailTooLong.php │ │ ├── IPV6BadChar.php │ │ ├── IPV6ColonEnd.php │ │ ├── IPV6ColonStart.php │ │ ├── IPV6Deprecated.php │ │ ├── IPV6DoubleColon.php │ │ ├── IPV6GroupCount.php │ │ ├── IPV6MaxGroups.php │ │ ├── LocalTooLong.php │ │ ├── NoDNSMXRecord.php │ │ ├── ObsoleteDTEXT.php │ │ ├── QuotedPart.php │ │ ├── QuotedString.php │ │ ├── TLD.php │ │ └── Warning.php ├── ezyang │ └── htmlpurifier │ │ ├── CREDITS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── composer.json │ │ └── library │ │ ├── HTMLPurifier.auto.php │ │ ├── HTMLPurifier.autoload-legacy.php │ │ ├── HTMLPurifier.autoload.php │ │ ├── HTMLPurifier.composer.php │ │ ├── HTMLPurifier.func.php │ │ ├── HTMLPurifier.includes.php │ │ ├── HTMLPurifier.kses.php │ │ ├── HTMLPurifier.path.php │ │ ├── HTMLPurifier.php │ │ ├── HTMLPurifier.safe-includes.php │ │ └── HTMLPurifier │ │ ├── Arborize.php │ │ ├── AttrCollections.php │ │ ├── AttrDef.php │ │ ├── AttrDef │ │ ├── CSS.php │ │ ├── CSS │ │ │ ├── AlphaValue.php │ │ │ ├── Background.php │ │ │ ├── BackgroundPosition.php │ │ │ ├── Border.php │ │ │ ├── Color.php │ │ │ ├── Composite.php │ │ │ ├── DenyElementDecorator.php │ │ │ ├── Filter.php │ │ │ ├── Font.php │ │ │ ├── FontFamily.php │ │ │ ├── Ident.php │ │ │ ├── ImportantDecorator.php │ │ │ ├── Length.php │ │ │ ├── ListStyle.php │ │ │ ├── Multiple.php │ │ │ ├── Number.php │ │ │ ├── Percentage.php │ │ │ ├── TextDecoration.php │ │ │ └── URI.php │ │ ├── Clone.php │ │ ├── Enum.php │ │ ├── HTML │ │ │ ├── Bool.php │ │ │ ├── Class.php │ │ │ ├── Color.php │ │ │ ├── ContentEditable.php │ │ │ ├── FrameTarget.php │ │ │ ├── ID.php │ │ │ ├── Length.php │ │ │ ├── LinkTypes.php │ │ │ ├── MultiLength.php │ │ │ ├── Nmtokens.php │ │ │ └── Pixels.php │ │ ├── Integer.php │ │ ├── Lang.php │ │ ├── Switch.php │ │ ├── Text.php │ │ ├── URI.php │ │ └── URI │ │ │ ├── Email.php │ │ │ ├── Email │ │ │ └── SimpleCheck.php │ │ │ ├── Host.php │ │ │ ├── IPv4.php │ │ │ └── IPv6.php │ │ ├── AttrTransform.php │ │ ├── AttrTransform │ │ ├── Background.php │ │ ├── BdoDir.php │ │ ├── BgColor.php │ │ ├── BoolToCSS.php │ │ ├── Border.php │ │ ├── EnumToCSS.php │ │ ├── ImgRequired.php │ │ ├── ImgSpace.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Length.php │ │ ├── Name.php │ │ ├── NameSync.php │ │ ├── Nofollow.php │ │ ├── SafeEmbed.php │ │ ├── SafeObject.php │ │ ├── SafeParam.php │ │ ├── ScriptRequired.php │ │ ├── TargetBlank.php │ │ ├── TargetNoopener.php │ │ ├── TargetNoreferrer.php │ │ └── Textarea.php │ │ ├── AttrTypes.php │ │ ├── AttrValidator.php │ │ ├── Bootstrap.php │ │ ├── CSSDefinition.php │ │ ├── ChildDef.php │ │ ├── ChildDef │ │ ├── Chameleon.php │ │ ├── Custom.php │ │ ├── Empty.php │ │ ├── List.php │ │ ├── Optional.php │ │ ├── Required.php │ │ ├── StrictBlockquote.php │ │ └── Table.php │ │ ├── Config.php │ │ ├── ConfigSchema.php │ │ ├── ConfigSchema │ │ ├── Builder │ │ │ ├── ConfigSchema.php │ │ │ └── Xml.php │ │ ├── Exception.php │ │ ├── Interchange.php │ │ ├── Interchange │ │ │ ├── Directive.php │ │ │ └── Id.php │ │ ├── InterchangeBuilder.php │ │ ├── Validator.php │ │ ├── ValidatorAtom.php │ │ ├── schema.ser │ │ └── schema │ │ │ ├── Attr.AllowedClasses.txt │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ ├── Attr.AllowedRel.txt │ │ │ ├── Attr.AllowedRev.txt │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ ├── Attr.EnableID.txt │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ ├── Attr.ID.HTML5.txt │ │ │ ├── Attr.IDBlacklist.txt │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ ├── Attr.IDPrefix.txt │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ ├── AutoFormat.Custom.txt │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ ├── AutoFormat.Linkify.txt │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ ├── CSS.AllowDuplicates.txt │ │ │ ├── CSS.AllowImportant.txt │ │ │ ├── CSS.AllowTricky.txt │ │ │ ├── CSS.AllowedFonts.txt │ │ │ ├── CSS.AllowedProperties.txt │ │ │ ├── CSS.DefinitionRev.txt │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ ├── CSS.MaxImgLength.txt │ │ │ ├── CSS.Proprietary.txt │ │ │ ├── CSS.Trusted.txt │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ ├── Cache.SerializerPath.txt │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ ├── Core.AggressivelyRemoveScript.txt │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ ├── Core.AllowParseManyTags.txt │ │ │ ├── Core.CollectErrors.txt │ │ │ ├── Core.ColorKeywords.txt │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ ├── Core.DisableExcludes.txt │ │ │ ├── Core.EnableIDNA.txt │ │ │ ├── Core.Encoding.txt │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ ├── Core.HiddenElements.txt │ │ │ ├── Core.Language.txt │ │ │ ├── Core.LegacyEntityDecoder.txt │ │ │ ├── Core.LexerImpl.txt │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ ├── Filter.Custom.txt │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ ├── Filter.YouTube.txt │ │ │ ├── HTML.Allowed.txt │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ ├── HTML.AllowedComments.txt │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ ├── HTML.AllowedElements.txt │ │ │ ├── HTML.AllowedModules.txt │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ ├── HTML.BlockWrapper.txt │ │ │ ├── HTML.CoreModules.txt │ │ │ ├── HTML.CustomDoctype.txt │ │ │ ├── HTML.DefinitionID.txt │ │ │ ├── HTML.DefinitionRev.txt │ │ │ ├── HTML.Doctype.txt │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ ├── HTML.Forms.txt │ │ │ ├── HTML.MaxImgLength.txt │ │ │ ├── HTML.Nofollow.txt │ │ │ ├── HTML.Parent.txt │ │ │ ├── HTML.Proprietary.txt │ │ │ ├── HTML.SafeEmbed.txt │ │ │ ├── HTML.SafeIframe.txt │ │ │ ├── HTML.SafeObject.txt │ │ │ ├── HTML.SafeScripting.txt │ │ │ ├── HTML.Strict.txt │ │ │ ├── HTML.TargetBlank.txt │ │ │ ├── HTML.TargetNoopener.txt │ │ │ ├── HTML.TargetNoreferrer.txt │ │ │ ├── HTML.TidyAdd.txt │ │ │ ├── HTML.TidyLevel.txt │ │ │ ├── HTML.TidyRemove.txt │ │ │ ├── HTML.Trusted.txt │ │ │ ├── HTML.XHTML.txt │ │ │ ├── Output.CommentScriptContents.txt │ │ │ ├── Output.FixInnerHTML.txt │ │ │ ├── Output.FlashCompat.txt │ │ │ ├── Output.Newline.txt │ │ │ ├── Output.SortAttr.txt │ │ │ ├── Output.TidyFormat.txt │ │ │ ├── Test.ForceNoIconv.txt │ │ │ ├── URI.AllowedSchemes.txt │ │ │ ├── URI.Base.txt │ │ │ ├── URI.DefaultScheme.txt │ │ │ ├── URI.DefinitionID.txt │ │ │ ├── URI.DefinitionRev.txt │ │ │ ├── URI.Disable.txt │ │ │ ├── URI.DisableExternal.txt │ │ │ ├── URI.DisableExternalResources.txt │ │ │ ├── URI.DisableResources.txt │ │ │ ├── URI.Host.txt │ │ │ ├── URI.HostBlacklist.txt │ │ │ ├── URI.MakeAbsolute.txt │ │ │ ├── URI.Munge.txt │ │ │ ├── URI.MungeResources.txt │ │ │ ├── URI.MungeSecretKey.txt │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ ├── URI.SafeIframeRegexp.txt │ │ │ └── info.ini │ │ ├── ContentSets.php │ │ ├── Context.php │ │ ├── Definition.php │ │ ├── DefinitionCache.php │ │ ├── DefinitionCache │ │ ├── Decorator.php │ │ ├── Decorator │ │ │ ├── Cleanup.php │ │ │ ├── Memory.php │ │ │ └── Template.php.in │ │ ├── Null.php │ │ ├── Serializer.php │ │ └── Serializer │ │ │ └── README │ │ ├── DefinitionCacheFactory.php │ │ ├── Doctype.php │ │ ├── DoctypeRegistry.php │ │ ├── ElementDef.php │ │ ├── Encoder.php │ │ ├── EntityLookup.php │ │ ├── EntityLookup │ │ └── entities.ser │ │ ├── EntityParser.php │ │ ├── ErrorCollector.php │ │ ├── ErrorStruct.php │ │ ├── Exception.php │ │ ├── Filter.php │ │ ├── Filter │ │ ├── ExtractStyleBlocks.php │ │ └── YouTube.php │ │ ├── Generator.php │ │ ├── HTMLDefinition.php │ │ ├── HTMLModule.php │ │ ├── HTMLModule │ │ ├── Bdo.php │ │ ├── CommonAttributes.php │ │ ├── Edit.php │ │ ├── Forms.php │ │ ├── Hypertext.php │ │ ├── Iframe.php │ │ ├── Image.php │ │ ├── Legacy.php │ │ ├── List.php │ │ ├── Name.php │ │ ├── Nofollow.php │ │ ├── NonXMLCommonAttributes.php │ │ ├── Object.php │ │ ├── Presentation.php │ │ ├── Proprietary.php │ │ ├── Ruby.php │ │ ├── SafeEmbed.php │ │ ├── SafeObject.php │ │ ├── SafeScripting.php │ │ ├── Scripting.php │ │ ├── StyleAttribute.php │ │ ├── Tables.php │ │ ├── Target.php │ │ ├── TargetBlank.php │ │ ├── TargetNoopener.php │ │ ├── TargetNoreferrer.php │ │ ├── Text.php │ │ ├── Tidy.php │ │ ├── Tidy │ │ │ ├── Name.php │ │ │ ├── Proprietary.php │ │ │ ├── Strict.php │ │ │ ├── Transitional.php │ │ │ ├── XHTML.php │ │ │ └── XHTMLAndHTML4.php │ │ └── XMLCommonAttributes.php │ │ ├── HTMLModuleManager.php │ │ ├── IDAccumulator.php │ │ ├── Injector.php │ │ ├── Injector │ │ ├── AutoParagraph.php │ │ ├── DisplayLinkURI.php │ │ ├── Linkify.php │ │ ├── PurifierLinkify.php │ │ ├── RemoveEmpty.php │ │ ├── RemoveSpansWithoutAttributes.php │ │ └── SafeObject.php │ │ ├── Language.php │ │ ├── Language │ │ └── messages │ │ │ └── en.php │ │ ├── LanguageFactory.php │ │ ├── Length.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── DOMLex.php │ │ ├── DirectLex.php │ │ └── PH5P.php │ │ ├── Node.php │ │ ├── Node │ │ ├── Comment.php │ │ ├── Element.php │ │ └── Text.php │ │ ├── PercentEncoder.php │ │ ├── Printer.php │ │ ├── Printer │ │ ├── CSSDefinition.php │ │ ├── ConfigForm.css │ │ ├── ConfigForm.js │ │ ├── ConfigForm.php │ │ └── HTMLDefinition.php │ │ ├── PropertyList.php │ │ ├── PropertyListIterator.php │ │ ├── Queue.php │ │ ├── Strategy.php │ │ ├── Strategy │ │ ├── Composite.php │ │ ├── Core.php │ │ ├── FixNesting.php │ │ ├── MakeWellFormed.php │ │ ├── RemoveForeignElements.php │ │ └── ValidateAttributes.php │ │ ├── StringHash.php │ │ ├── StringHashParser.php │ │ ├── TagTransform.php │ │ ├── TagTransform │ │ ├── Font.php │ │ └── Simple.php │ │ ├── Token.php │ │ ├── Token │ │ ├── Comment.php │ │ ├── Empty.php │ │ ├── End.php │ │ ├── Start.php │ │ ├── Tag.php │ │ └── Text.php │ │ ├── TokenFactory.php │ │ ├── URI.php │ │ ├── URIDefinition.php │ │ ├── URIFilter.php │ │ ├── URIFilter │ │ ├── DisableExternal.php │ │ ├── DisableExternalResources.php │ │ ├── DisableResources.php │ │ ├── HostBlacklist.php │ │ ├── MakeAbsolute.php │ │ ├── Munge.php │ │ └── SafeIframe.php │ │ ├── URIParser.php │ │ ├── URIScheme.php │ │ ├── URIScheme │ │ ├── data.php │ │ ├── file.php │ │ ├── ftp.php │ │ ├── http.php │ │ ├── https.php │ │ ├── mailto.php │ │ ├── news.php │ │ ├── nntp.php │ │ └── tel.php │ │ ├── URISchemeRegistry.php │ │ ├── UnitConverter.php │ │ ├── VarParser.php │ │ ├── VarParser │ │ ├── Flexible.php │ │ └── Native.php │ │ ├── VarParserException.php │ │ └── Zipper.php ├── fakerphp │ └── faker │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── psalm.baseline.xml │ │ ├── rector-migrate.php │ │ └── src │ │ ├── Faker │ │ ├── Calculator │ │ │ ├── Ean.php │ │ │ ├── Iban.php │ │ │ ├── Inn.php │ │ │ ├── Isbn.php │ │ │ ├── Luhn.php │ │ │ └── TCNo.php │ │ ├── ChanceGenerator.php │ │ ├── Container │ │ │ ├── Container.php │ │ │ ├── ContainerBuilder.php │ │ │ ├── ContainerException.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotInContainerException.php │ │ ├── Core │ │ │ ├── Barcode.php │ │ │ ├── Blood.php │ │ │ ├── Color.php │ │ │ ├── Coordinates.php │ │ │ ├── DateTime.php │ │ │ ├── File.php │ │ │ ├── Number.php │ │ │ ├── Uuid.php │ │ │ └── Version.php │ │ ├── DefaultGenerator.php │ │ ├── Documentor.php │ │ ├── Extension │ │ │ ├── AddressExtension.php │ │ │ ├── BarcodeExtension.php │ │ │ ├── BloodExtension.php │ │ │ ├── ColorExtension.php │ │ │ ├── CompanyExtension.php │ │ │ ├── CountryExtension.php │ │ │ ├── DateTimeExtension.php │ │ │ ├── Extension.php │ │ │ ├── ExtensionNotFound.php │ │ │ ├── FileExtension.php │ │ │ ├── GeneratorAwareExtension.php │ │ │ ├── GeneratorAwareExtensionTrait.php │ │ │ ├── Helper.php │ │ │ ├── NumberExtension.php │ │ │ ├── PersonExtension.php │ │ │ ├── PhoneNumberExtension.php │ │ │ ├── UuidExtension.php │ │ │ └── VersionExtension.php │ │ ├── Factory.php │ │ ├── Generator.php │ │ ├── Guesser │ │ │ └── Name.php │ │ ├── ORM │ │ │ ├── CakePHP │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Doctrine │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ ├── Populator.php │ │ │ │ └── backward-compatibility.php │ │ │ ├── Mandango │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Propel │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Propel2 │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ └── Spot │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ ├── Provider │ │ │ ├── Address.php │ │ │ ├── Barcode.php │ │ │ ├── Base.php │ │ │ ├── Biased.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── DateTime.php │ │ │ ├── File.php │ │ │ ├── HtmlLorem.php │ │ │ ├── Image.php │ │ │ ├── Internet.php │ │ │ ├── Lorem.php │ │ │ ├── Medical.php │ │ │ ├── Miscellaneous.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ ├── Text.php │ │ │ ├── UserAgent.php │ │ │ ├── Uuid.php │ │ │ ├── ar_EG │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── Text.php │ │ │ ├── ar_JO │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── Text.php │ │ │ ├── ar_SA │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── Text.php │ │ │ ├── at_AT │ │ │ │ └── Payment.php │ │ │ ├── bg_BG │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── bn_BD │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Utils.php │ │ │ ├── cs_CZ │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── da_DK │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── de_AT │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── de_CH │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── de_DE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── el_CY │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── el_GR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── en_AU │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_CA │ │ │ │ ├── Address.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_GB │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_HK │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_IN │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_NG │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_NZ │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_PH │ │ │ │ ├── Address.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_SG │ │ │ │ ├── Address.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_UG │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_US │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── en_ZA │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_AR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_ES │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── es_PE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_VE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── et_EE │ │ │ │ └── Person.php │ │ │ ├── fa_IR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── fi_FI │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── fr_BE │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── fr_CA │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── Text.php │ │ │ ├── fr_CH │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── fr_FR │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── he_IL │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── hr_HR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── hu_HU │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── hy_AM │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── id_ID │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── is_IS │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── it_CH │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── it_IT │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ja_JP │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ka_GE │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── kk_KZ │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ko_KR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── lt_LT │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── lv_LV │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── me_ME │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── mn_MN │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ms_MY │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Miscellaneous.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── nb_NO │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ne_NP │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── nl_BE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── nl_NL │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── pl_PL │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── LicensePlate.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── pt_BR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ ├── Text.php │ │ │ │ └── check_digit.php │ │ │ ├── pt_PT │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ro_MD │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ro_RO │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ru_RU │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── sk_SK │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── sl_SI │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── sr_Cyrl_RS │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ └── Person.php │ │ │ ├── sr_Latn_RS │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ └── Person.php │ │ │ ├── sr_RS │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ └── Person.php │ │ │ ├── sv_SE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Municipality.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── th_TH │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── tr_TR │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── uk_UA │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── vi_VN │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── zh_CN │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ └── zh_TW │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ ├── UniqueGenerator.php │ │ └── ValidGenerator.php │ │ └── autoload.php ├── filament │ ├── actions │ │ ├── .stubs.php │ │ ├── composer.json │ │ ├── docs │ │ │ ├── 01-installation.md │ │ │ ├── 02-overview.md │ │ │ ├── 03-trigger-button.md │ │ │ ├── 04-modals.md │ │ │ ├── 05-grouping-actions.md │ │ │ ├── 06-adding-an-action-to-a-livewire-component.md │ │ │ ├── 07-prebuilt-actions │ │ │ │ ├── 01-create.md │ │ │ │ ├── 02-edit.md │ │ │ │ ├── 03-view.md │ │ │ │ ├── 04-delete.md │ │ │ │ ├── 05-replicate.md │ │ │ │ ├── 06-force-delete.md │ │ │ │ └── 07-restore.md │ │ │ ├── 08-advanced.md │ │ │ ├── 09-testing.md │ │ │ └── 10-upgrade-guide.md │ │ ├── resources │ │ │ ├── lang │ │ │ │ ├── ar │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── az │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── bn │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── bs │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── ckb │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── cs │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ └── view.php │ │ │ │ ├── de │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── en │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── es │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── fa │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── fi │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── fr │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── he │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── hi │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── edit.php │ │ │ │ │ └── modal.php │ │ │ │ ├── hu │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── hy │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── id │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── it │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── ja │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── kh │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ └── edit.php │ │ │ │ ├── km │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── ko │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── ku │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── lt │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── mn │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── ms │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── my │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ └── modal.php │ │ │ │ ├── nl │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── no │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── np │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── pl │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── pt_BR │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── pt_PT │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── ro │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── ru │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── sv │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── sw │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── tr │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── uk │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── vi │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ ├── zh_CN │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── zh_TW │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ └── views │ │ │ │ ├── badge-action.blade.php │ │ │ │ ├── badge-group.blade.php │ │ │ │ ├── button-action.blade.php │ │ │ │ ├── button-group.blade.php │ │ │ │ ├── components │ │ │ │ ├── action.blade.php │ │ │ │ ├── actions.blade.php │ │ │ │ ├── group.blade.php │ │ │ │ └── modals.blade.php │ │ │ │ ├── grouped-action.blade.php │ │ │ │ ├── grouped-group.blade.php │ │ │ │ ├── icon-button-action.blade.php │ │ │ │ ├── icon-button-group.blade.php │ │ │ │ ├── link-action.blade.php │ │ │ │ ├── link-group.blade.php │ │ │ │ └── select-action.blade.php │ │ └── src │ │ │ ├── Action.php │ │ │ ├── ActionGroup.php │ │ │ ├── ActionsServiceProvider.php │ │ │ ├── Concerns │ │ │ ├── BelongsToLivewire.php │ │ │ ├── CanBeDisabled.php │ │ │ ├── CanBeHidden.php │ │ │ ├── CanBeLabeledFrom.php │ │ │ ├── CanBeMounted.php │ │ │ ├── CanBeOutlined.php │ │ │ ├── CanCallParentAction.php │ │ │ ├── CanClose.php │ │ │ ├── CanCustomizeProcess.php │ │ │ ├── CanDispatchEvent.php │ │ │ ├── CanNotify.php │ │ │ ├── CanOpenModal.php │ │ │ ├── CanOpenUrl.php │ │ │ ├── CanRedirect.php │ │ │ ├── CanReplicateRecords.php │ │ │ ├── CanRequireConfirmation.php │ │ │ ├── CanSubmitForm.php │ │ │ ├── HasAction.php │ │ │ ├── HasArguments.php │ │ │ ├── HasDropdown.php │ │ │ ├── HasForm.php │ │ │ ├── HasGroupedIcon.php │ │ │ ├── HasId.php │ │ │ ├── HasInfolist.php │ │ │ ├── HasKeyBindings.php │ │ │ ├── HasLabel.php │ │ │ ├── HasLifecycleHooks.php │ │ │ ├── HasMountableArguments.php │ │ │ ├── HasName.php │ │ │ ├── HasParentActions.php │ │ │ ├── HasSelect.php │ │ │ ├── HasSize.php │ │ │ ├── HasTooltip.php │ │ │ ├── HasWizard.php │ │ │ ├── InteractsWithActions.php │ │ │ └── InteractsWithRecord.php │ │ │ ├── Contracts │ │ │ ├── Groupable.php │ │ │ ├── HasActions.php │ │ │ ├── HasLivewire.php │ │ │ ├── HasRecord.php │ │ │ └── ReplicatesRecords.php │ │ │ ├── CreateAction.php │ │ │ ├── DeleteAction.php │ │ │ ├── EditAction.php │ │ │ ├── Exceptions │ │ │ └── Hold.php │ │ │ ├── ForceDeleteAction.php │ │ │ ├── Modal │ │ │ └── Actions │ │ │ │ └── Action.php │ │ │ ├── MountableAction.php │ │ │ ├── ReplicateAction.php │ │ │ ├── RestoreAction.php │ │ │ ├── SelectAction.php │ │ │ ├── StaticAction.php │ │ │ ├── Testing │ │ │ └── TestsActions.php │ │ │ └── ViewAction.php │ ├── filament │ │ ├── composer.json │ │ ├── dist │ │ │ ├── echo.js │ │ │ ├── index.js │ │ │ └── theme.css │ │ ├── docs │ │ │ ├── 01-installation.md │ │ │ ├── 02-getting-started.md │ │ │ ├── 03-resources │ │ │ │ ├── 01-getting-started.md │ │ │ │ ├── 02-listing-records.md │ │ │ │ ├── 03-creating-records.md │ │ │ │ ├── 04-editing-records.md │ │ │ │ ├── 05-viewing-records.md │ │ │ │ ├── 06-deleting-records.md │ │ │ │ ├── 07-relation-managers.md │ │ │ │ ├── 08-global-search.md │ │ │ │ ├── 09-widgets.md │ │ │ │ ├── 10-custom-pages.md │ │ │ │ └── 11-security.md │ │ │ ├── 04-pages.md │ │ │ ├── 05-dashboard.md │ │ │ ├── 06-navigation.md │ │ │ ├── 07-notifications.md │ │ │ ├── 08-users.md │ │ │ ├── 09-configuration.md │ │ │ ├── 10-tenancy.md │ │ │ ├── 11-themes.md │ │ │ ├── 12-plugins.md │ │ │ ├── 13-testing.md │ │ │ └── 14-upgrade-guide.md │ │ ├── resources │ │ │ ├── css │ │ │ │ ├── index.css │ │ │ │ └── theme.css │ │ │ ├── js │ │ │ │ ├── echo.js │ │ │ │ └── index.js │ │ │ ├── lang │ │ │ │ ├── ar │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── az │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── bn │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── login.php │ │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── bs │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── login.php │ │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── ckb │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── cs │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── login.php │ │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── da │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── login.php │ │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── de │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── el │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── login.php │ │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── en │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── es │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── fa │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── fi │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── fr │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── he │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── hi │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── login.php │ │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── hu │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── hy │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── login.php │ │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── id │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── it │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── ja │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── km │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ ├── register.php │ │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── ko │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── ku │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── lt │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── lv │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── pages │ │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── ms │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── my │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── login.php │ │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── nl │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── no │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── np │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── pl │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── pt_BR │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── pt_PT │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── ro │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── ru │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── sv │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── sw │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── login.php │ │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── tr │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── uk │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── login.php │ │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── vi │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ ├── zh_CN │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ │ │ ├── email-verification │ │ │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ │ │ ├── login.php │ │ │ │ │ │ │ ├── password-reset │ │ │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ │ │ └── register.php │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ └── tenancy │ │ │ │ │ │ │ └── edit-tenant-profile.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── account-widget.php │ │ │ │ │ │ └── filament-info-widget.php │ │ │ │ └── zh_TW │ │ │ │ │ ├── global-search.php │ │ │ │ │ ├── layout.php │ │ │ │ │ ├── pages │ │ │ │ │ ├── auth │ │ │ │ │ │ └── login.php │ │ │ │ │ └── dashboard.php │ │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ └── views │ │ │ │ ├── components │ │ │ │ ├── avatar │ │ │ │ │ ├── tenant.blade.php │ │ │ │ │ └── user.blade.php │ │ │ │ ├── form │ │ │ │ │ ├── actions.blade.php │ │ │ │ │ └── index.blade.php │ │ │ │ ├── global-search │ │ │ │ │ ├── actions.blade.php │ │ │ │ │ ├── field.blade.php │ │ │ │ │ ├── index.blade.php │ │ │ │ │ ├── no-results-message.blade.php │ │ │ │ │ ├── result-group.blade.php │ │ │ │ │ ├── result.blade.php │ │ │ │ │ └── results-container.blade.php │ │ │ │ ├── header │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── simple.blade.php │ │ │ │ ├── layout │ │ │ │ │ ├── base.blade.php │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── simple.blade.php │ │ │ │ ├── logo.blade.php │ │ │ │ ├── page │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── simple.blade.php │ │ │ │ ├── resources │ │ │ │ │ ├── relation-managers.blade.php │ │ │ │ │ └── tabs.blade.php │ │ │ │ ├── sidebar │ │ │ │ │ ├── group.blade.php │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── item.blade.php │ │ │ │ ├── tenant-menu.blade.php │ │ │ │ ├── theme-switcher │ │ │ │ │ ├── button.blade.php │ │ │ │ │ └── index.blade.php │ │ │ │ ├── topbar │ │ │ │ │ ├── database-notifications-trigger.blade.php │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── item.blade.php │ │ │ │ └── user-menu.blade.php │ │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.blade.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.blade.php │ │ │ │ │ ├── login.blade.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.blade.php │ │ │ │ │ │ └── reset-password.blade.php │ │ │ │ │ └── register.blade.php │ │ │ │ ├── dashboard.blade.php │ │ │ │ └── tenancy │ │ │ │ │ ├── edit-tenant-profile.blade.php │ │ │ │ │ └── register-tenant.blade.php │ │ │ │ ├── resources │ │ │ │ ├── pages │ │ │ │ │ ├── create-record.blade.php │ │ │ │ │ ├── edit-record.blade.php │ │ │ │ │ ├── list-records.blade.php │ │ │ │ │ ├── manage-related-records.blade.php │ │ │ │ │ └── view-record.blade.php │ │ │ │ └── relation-manager.blade.php │ │ │ │ └── widgets │ │ │ │ ├── account-widget.blade.php │ │ │ │ └── filament-info-widget.blade.php │ │ ├── routes │ │ │ └── web.php │ │ ├── src │ │ │ ├── AvatarProviders │ │ │ │ ├── Contracts │ │ │ │ │ └── AvatarProvider.php │ │ │ │ └── UiAvatarsProvider.php │ │ │ ├── Billing │ │ │ │ └── Providers │ │ │ │ │ └── Contracts │ │ │ │ │ └── Provider.php │ │ │ ├── Commands │ │ │ │ ├── Aliases │ │ │ │ │ ├── MakePageCommand.php │ │ │ │ │ ├── MakePanelCommand.php │ │ │ │ │ ├── MakeRelationManagerCommand.php │ │ │ │ │ ├── MakeResourceCommand.php │ │ │ │ │ ├── MakeThemeCommand.php │ │ │ │ │ └── MakeUserCommand.php │ │ │ │ ├── MakePageCommand.php │ │ │ │ ├── MakePanelCommand.php │ │ │ │ ├── MakeRelationManagerCommand.php │ │ │ │ ├── MakeResourceCommand.php │ │ │ │ ├── MakeThemeCommand.php │ │ │ │ └── MakeUserCommand.php │ │ │ ├── Contracts │ │ │ │ └── Plugin.php │ │ │ ├── Events │ │ │ │ ├── ServingFilament.php │ │ │ │ └── TenantSet.php │ │ │ ├── Exceptions │ │ │ │ └── NoDefaultPanelSetException.php │ │ │ ├── Facades │ │ │ │ └── Filament.php │ │ │ ├── FilamentManager.php │ │ │ ├── FilamentServiceProvider.php │ │ │ ├── FontProviders │ │ │ │ ├── BunnyFontProvider.php │ │ │ │ ├── Contracts │ │ │ │ │ └── FontProvider.php │ │ │ │ ├── GoogleFontProvider.php │ │ │ │ └── LocalFontProvider.php │ │ │ ├── GlobalSearch │ │ │ │ ├── Actions │ │ │ │ │ └── Action.php │ │ │ │ ├── Contracts │ │ │ │ │ └── GlobalSearchProvider.php │ │ │ │ ├── DefaultGlobalSearchProvider.php │ │ │ │ ├── GlobalSearchResult.php │ │ │ │ └── GlobalSearchResults.php │ │ │ ├── Http │ │ │ │ ├── Controllers │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── EmailVerificationController.php │ │ │ │ │ │ └── LogoutController.php │ │ │ │ │ ├── RedirectToHomeController.php │ │ │ │ │ └── RedirectToTenantController.php │ │ │ │ ├── Livewire │ │ │ │ │ └── Auth │ │ │ │ │ │ └── Login.php │ │ │ │ ├── Middleware │ │ │ │ │ ├── Authenticate.php │ │ │ │ │ ├── DisableBladeIconComponents.php │ │ │ │ │ ├── DispatchServingFilamentEvent.php │ │ │ │ │ ├── IdentifyTenant.php │ │ │ │ │ └── SetUpPanel.php │ │ │ │ └── Responses │ │ │ │ │ └── Auth │ │ │ │ │ ├── Contracts │ │ │ │ │ ├── EmailVerificationResponse.php │ │ │ │ │ ├── LoginResponse.php │ │ │ │ │ ├── LogoutResponse.php │ │ │ │ │ ├── PasswordResetResponse.php │ │ │ │ │ └── RegistrationResponse.php │ │ │ │ │ ├── EmailVerificationResponse.php │ │ │ │ │ ├── LoginResponse.php │ │ │ │ │ ├── LogoutResponse.php │ │ │ │ │ ├── PasswordResetResponse.php │ │ │ │ │ └── RegistrationResponse.php │ │ │ ├── Listeners │ │ │ │ └── Auth │ │ │ │ │ └── SendEmailVerificationNotification.php │ │ │ ├── Livewire │ │ │ │ ├── DatabaseNotifications.php │ │ │ │ ├── GlobalSearch.php │ │ │ │ └── Notifications.php │ │ │ ├── Models │ │ │ │ └── Contracts │ │ │ │ │ ├── FilamentUser.php │ │ │ │ │ ├── HasAvatar.php │ │ │ │ │ ├── HasCurrentTenantLabel.php │ │ │ │ │ ├── HasDefaultTenant.php │ │ │ │ │ ├── HasName.php │ │ │ │ │ └── HasTenants.php │ │ │ ├── Navigation │ │ │ │ ├── MenuItem.php │ │ │ │ ├── NavigationBuilder.php │ │ │ │ ├── NavigationGroup.php │ │ │ │ ├── NavigationItem.php │ │ │ │ └── UserMenuItem.php │ │ │ ├── Notifications │ │ │ │ └── Auth │ │ │ │ │ ├── ResetPassword.php │ │ │ │ │ └── VerifyEmail.php │ │ │ ├── Pages │ │ │ │ ├── Actions │ │ │ │ │ ├── Action.php │ │ │ │ │ ├── ActionGroup.php │ │ │ │ │ ├── ButtonAction.php │ │ │ │ │ ├── CreateAction.php │ │ │ │ │ ├── DeleteAction.php │ │ │ │ │ ├── EditAction.php │ │ │ │ │ ├── ForceDeleteAction.php │ │ │ │ │ ├── Modal │ │ │ │ │ │ └── Actions │ │ │ │ │ │ │ ├── Action.php │ │ │ │ │ │ │ └── ButtonAction.php │ │ │ │ │ ├── ReplicateAction.php │ │ │ │ │ ├── RestoreAction.php │ │ │ │ │ ├── SelectAction.php │ │ │ │ │ └── ViewAction.php │ │ │ │ ├── Auth │ │ │ │ │ ├── EditProfile.php │ │ │ │ │ ├── EmailVerification │ │ │ │ │ │ └── EmailVerificationPrompt.php │ │ │ │ │ ├── Login.php │ │ │ │ │ ├── PasswordReset │ │ │ │ │ │ ├── RequestPasswordReset.php │ │ │ │ │ │ └── ResetPassword.php │ │ │ │ │ └── Register.php │ │ │ │ ├── BasePage.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── ExposesTableToWidgets.php │ │ │ │ │ ├── HasRoutes.php │ │ │ │ │ ├── HasSubNavigation.php │ │ │ │ │ ├── InteractsWithFormActions.php │ │ │ │ │ └── InteractsWithHeaderActions.php │ │ │ │ ├── Dashboard.php │ │ │ │ ├── Page.php │ │ │ │ ├── SimplePage.php │ │ │ │ └── Tenancy │ │ │ │ │ ├── EditTenantProfile.php │ │ │ │ │ └── RegisterTenant.php │ │ │ ├── Panel.php │ │ │ ├── Panel │ │ │ │ └── Concerns │ │ │ │ │ ├── HasAuth.php │ │ │ │ │ ├── HasAvatars.php │ │ │ │ │ ├── HasBrandLogo.php │ │ │ │ │ ├── HasBrandName.php │ │ │ │ │ ├── HasBreadcrumbs.php │ │ │ │ │ ├── HasColors.php │ │ │ │ │ ├── HasComponents.php │ │ │ │ │ ├── HasDarkMode.php │ │ │ │ │ ├── HasFavicon.php │ │ │ │ │ ├── HasFont.php │ │ │ │ │ ├── HasGlobalSearch.php │ │ │ │ │ ├── HasIcons.php │ │ │ │ │ ├── HasId.php │ │ │ │ │ ├── HasMaxContentWidth.php │ │ │ │ │ ├── HasMiddleware.php │ │ │ │ │ ├── HasNavigation.php │ │ │ │ │ ├── HasNotifications.php │ │ │ │ │ ├── HasPlugins.php │ │ │ │ │ ├── HasRenderHooks.php │ │ │ │ │ ├── HasRoutes.php │ │ │ │ │ ├── HasSidebar.php │ │ │ │ │ ├── HasSpaMode.php │ │ │ │ │ ├── HasTenancy.php │ │ │ │ │ ├── HasTheme.php │ │ │ │ │ ├── HasTopNavigation.php │ │ │ │ │ └── HasUserMenu.php │ │ │ ├── PanelProvider.php │ │ │ ├── Resources │ │ │ │ ├── Components │ │ │ │ │ └── Tab.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── HasTabs.php │ │ │ │ │ └── InteractsWithRelationshipTable.php │ │ │ │ ├── Pages │ │ │ │ │ ├── Concerns │ │ │ │ │ │ ├── HasRelationManagers.php │ │ │ │ │ │ ├── HasWizard.php │ │ │ │ │ │ └── InteractsWithRecord.php │ │ │ │ │ ├── CreateRecord.php │ │ │ │ │ ├── CreateRecord │ │ │ │ │ │ └── Concerns │ │ │ │ │ │ │ └── HasWizard.php │ │ │ │ │ ├── EditRecord.php │ │ │ │ │ ├── EditRecord │ │ │ │ │ │ └── Concerns │ │ │ │ │ │ │ └── HasWizard.php │ │ │ │ │ ├── ListRecords.php │ │ │ │ │ ├── ListRecords │ │ │ │ │ │ └── Tab.php │ │ │ │ │ ├── ManageRecords.php │ │ │ │ │ ├── ManageRelatedRecords.php │ │ │ │ │ ├── Page.php │ │ │ │ │ ├── PageRegistration.php │ │ │ │ │ └── ViewRecord.php │ │ │ │ ├── RelationManagers │ │ │ │ │ ├── RelationGroup.php │ │ │ │ │ ├── RelationManager.php │ │ │ │ │ └── RelationManagerConfiguration.php │ │ │ │ └── Resource.php │ │ │ ├── View │ │ │ │ └── LegacyComponents │ │ │ │ │ ├── Page.php │ │ │ │ │ └── Widget.php │ │ │ ├── Widgets │ │ │ │ ├── AccountWidget.php │ │ │ │ ├── Concerns │ │ │ │ │ └── InteractsWithPageTable.php │ │ │ │ └── FilamentInfoWidget.php │ │ │ ├── global_helpers.php │ │ │ └── helpers.php │ │ ├── stubs │ │ │ ├── CustomResourcePage.stub │ │ │ ├── Page.stub │ │ │ ├── PageView.stub │ │ │ ├── RelationManager.stub │ │ │ ├── Resource.stub │ │ │ ├── ResourceEditPage.stub │ │ │ ├── ResourceListPage.stub │ │ │ ├── ResourceManagePage.stub │ │ │ ├── ResourcePage.stub │ │ │ ├── ResourceViewPage.stub │ │ │ ├── ThemeCss.stub │ │ │ ├── ThemePostcssConfig.stub │ │ │ └── ThemeTailwindConfig.stub │ │ ├── tailwind.config.js │ │ └── tailwind.config.preset.js │ ├── forms │ │ ├── .stubs.php │ │ ├── composer.json │ │ ├── dist │ │ │ ├── components │ │ │ │ ├── color-picker.js │ │ │ │ ├── date-time-picker.js │ │ │ │ ├── file-upload.js │ │ │ │ ├── key-value.js │ │ │ │ ├── markdown-editor.js │ │ │ │ ├── rich-editor.js │ │ │ │ ├── select.js │ │ │ │ ├── tags-input.js │ │ │ │ └── textarea.js │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── docs │ │ │ ├── 01-installation.md │ │ │ ├── 02-getting-started.md │ │ │ ├── 03-fields │ │ │ │ ├── 01-getting-started.md │ │ │ │ ├── 02-text-input.md │ │ │ │ ├── 03-select.md │ │ │ │ ├── 04-checkbox.md │ │ │ │ ├── 05-toggle.md │ │ │ │ ├── 06-checkbox-list.md │ │ │ │ ├── 07-radio.md │ │ │ │ ├── 08-date-time-picker.md │ │ │ │ ├── 09-file-upload.md │ │ │ │ ├── 10-rich-editor.md │ │ │ │ ├── 11-markdown-editor.md │ │ │ │ ├── 12-repeater.md │ │ │ │ ├── 13-builder.md │ │ │ │ ├── 14-tags-input.md │ │ │ │ ├── 15-textarea.md │ │ │ │ ├── 16-key-value.md │ │ │ │ ├── 17-color-picker.md │ │ │ │ ├── 18-hidden.md │ │ │ │ └── 19-custom.md │ │ │ ├── 04-layout │ │ │ │ ├── 01-getting-started.md │ │ │ │ ├── 02-grid.md │ │ │ │ ├── 03-fieldset.md │ │ │ │ ├── 04-tabs.md │ │ │ │ ├── 05-wizard.md │ │ │ │ ├── 06-section.md │ │ │ │ ├── 07-placeholder.md │ │ │ │ └── 08-custom.md │ │ │ ├── 05-validation.md │ │ │ ├── 06-actions.md │ │ │ ├── 07-advanced.md │ │ │ ├── 08-adding-a-form-to-a-livewire-component.md │ │ │ ├── 09-testing.md │ │ │ └── 10-upgrade-guide.md │ │ ├── resources │ │ │ ├── css │ │ │ │ └── components │ │ │ │ │ ├── date-time-picker.css │ │ │ │ │ ├── file-upload.css │ │ │ │ │ ├── markdown-editor.css │ │ │ │ │ ├── rich-editor.css │ │ │ │ │ ├── select.css │ │ │ │ │ └── tags-input.css │ │ │ ├── js │ │ │ │ ├── components │ │ │ │ │ ├── color-picker.js │ │ │ │ │ ├── date-time-picker.js │ │ │ │ │ ├── file-upload.js │ │ │ │ │ ├── key-value.js │ │ │ │ │ ├── markdown-editor.js │ │ │ │ │ ├── markdown-editor │ │ │ │ │ │ └── EasyMDE.js │ │ │ │ │ ├── rich-editor.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── tags-input.js │ │ │ │ │ └── textarea.js │ │ │ │ └── index.js │ │ │ ├── lang │ │ │ │ ├── ar │ │ │ │ │ └── components.php │ │ │ │ ├── az │ │ │ │ │ └── components.php │ │ │ │ ├── bn │ │ │ │ │ └── components.php │ │ │ │ ├── bs │ │ │ │ │ └── components.php │ │ │ │ ├── ca │ │ │ │ │ └── components.php │ │ │ │ ├── ckb │ │ │ │ │ └── components.php │ │ │ │ ├── cs │ │ │ │ │ └── components.php │ │ │ │ ├── cy │ │ │ │ │ └── components.php │ │ │ │ ├── da │ │ │ │ │ └── components.php │ │ │ │ ├── de │ │ │ │ │ └── components.php │ │ │ │ ├── en │ │ │ │ │ └── components.php │ │ │ │ ├── es │ │ │ │ │ └── components.php │ │ │ │ ├── eu │ │ │ │ │ └── components.php │ │ │ │ ├── fa │ │ │ │ │ └── components.php │ │ │ │ ├── fi │ │ │ │ │ └── components.php │ │ │ │ ├── fr │ │ │ │ │ └── components.php │ │ │ │ ├── he │ │ │ │ │ └── components.php │ │ │ │ ├── hi │ │ │ │ │ └── components.php │ │ │ │ ├── hu │ │ │ │ │ └── components.php │ │ │ │ ├── hy │ │ │ │ │ └── components.php │ │ │ │ ├── id │ │ │ │ │ └── components.php │ │ │ │ ├── it │ │ │ │ │ └── components.php │ │ │ │ ├── ja │ │ │ │ │ └── components.php │ │ │ │ ├── ka │ │ │ │ │ └── components.php │ │ │ │ ├── km │ │ │ │ │ └── components.php │ │ │ │ ├── ko │ │ │ │ │ └── components.php │ │ │ │ ├── ku │ │ │ │ │ └── components.php │ │ │ │ ├── lt │ │ │ │ │ └── components.php │ │ │ │ ├── lv │ │ │ │ │ └── components.php │ │ │ │ ├── mn │ │ │ │ │ └── components.php │ │ │ │ ├── ms │ │ │ │ │ └── components.php │ │ │ │ ├── my │ │ │ │ │ └── components.php │ │ │ │ ├── nl │ │ │ │ │ └── components.php │ │ │ │ ├── no │ │ │ │ │ └── components.php │ │ │ │ ├── np │ │ │ │ │ └── components.php │ │ │ │ ├── pl │ │ │ │ │ └── components.php │ │ │ │ ├── pt_BR │ │ │ │ │ └── components.php │ │ │ │ ├── pt_PT │ │ │ │ │ └── components.php │ │ │ │ ├── ro │ │ │ │ │ └── components.php │ │ │ │ ├── ru │ │ │ │ │ └── components.php │ │ │ │ ├── sv │ │ │ │ │ └── components.php │ │ │ │ ├── sw │ │ │ │ │ └── components.php │ │ │ │ ├── tr │ │ │ │ │ └── components.php │ │ │ │ ├── uk │ │ │ │ │ └── components.php │ │ │ │ ├── vi │ │ │ │ │ └── components.php │ │ │ │ ├── zh_CN │ │ │ │ │ └── components.php │ │ │ │ └── zh_TW │ │ │ │ │ └── components.php │ │ │ └── views │ │ │ │ ├── component-container.blade.php │ │ │ │ └── components │ │ │ │ ├── actions.blade.php │ │ │ │ ├── actions │ │ │ │ └── action-container.blade.php │ │ │ │ ├── builder.blade.php │ │ │ │ ├── builder │ │ │ │ └── block-picker.blade.php │ │ │ │ ├── checkbox-list.blade.php │ │ │ │ ├── checkbox.blade.php │ │ │ │ ├── color-picker.blade.php │ │ │ │ ├── date-time-picker.blade.php │ │ │ │ ├── field-wrapper │ │ │ │ ├── error-message.blade.php │ │ │ │ ├── helper-text.blade.php │ │ │ │ ├── hint.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── label.blade.php │ │ │ │ ├── fieldset.blade.php │ │ │ │ ├── file-upload.blade.php │ │ │ │ ├── grid.blade.php │ │ │ │ ├── group.blade.php │ │ │ │ ├── hidden.blade.php │ │ │ │ ├── key-value.blade.php │ │ │ │ ├── markdown-editor.blade.php │ │ │ │ ├── placeholder.blade.php │ │ │ │ ├── radio.blade.php │ │ │ │ ├── repeater.blade.php │ │ │ │ ├── rich-editor.blade.php │ │ │ │ ├── rich-editor │ │ │ │ └── toolbar │ │ │ │ │ ├── button.blade.php │ │ │ │ │ └── group.blade.php │ │ │ │ ├── section.blade.php │ │ │ │ ├── select.blade.php │ │ │ │ ├── simple-repeater.blade.php │ │ │ │ ├── tabs.blade.php │ │ │ │ ├── tabs │ │ │ │ └── tab.blade.php │ │ │ │ ├── tags-input.blade.php │ │ │ │ ├── text-input.blade.php │ │ │ │ ├── textarea.blade.php │ │ │ │ ├── toggle.blade.php │ │ │ │ ├── wizard.blade.php │ │ │ │ └── wizard │ │ │ │ └── step.blade.php │ │ ├── src │ │ │ ├── Commands │ │ │ │ ├── Aliases │ │ │ │ │ ├── MakeFieldCommand.php │ │ │ │ │ └── MakeLayoutComponentCommand.php │ │ │ │ ├── Concerns │ │ │ │ │ └── CanGenerateForms.php │ │ │ │ ├── MakeFieldCommand.php │ │ │ │ ├── MakeFormCommand.php │ │ │ │ └── MakeLayoutComponentCommand.php │ │ │ ├── ComponentContainer.php │ │ │ ├── Components │ │ │ │ ├── Actions.php │ │ │ │ ├── Actions │ │ │ │ │ ├── Action.php │ │ │ │ │ ├── ActionContainer.php │ │ │ │ │ └── Concerns │ │ │ │ │ │ └── BelongsToComponent.php │ │ │ │ ├── BaseFileUpload.php │ │ │ │ ├── BelongsToManyCheckboxList.php │ │ │ │ ├── BelongsToManyMultiSelect.php │ │ │ │ ├── BelongsToSelect.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Builder │ │ │ │ │ └── Block.php │ │ │ │ ├── Card.php │ │ │ │ ├── Checkbox.php │ │ │ │ ├── CheckboxList.php │ │ │ │ ├── ColorPicker.php │ │ │ │ ├── Component.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── BelongsToContainer.php │ │ │ │ │ ├── BelongsToModel.php │ │ │ │ │ ├── CanAllowHtml.php │ │ │ │ │ ├── CanBeAccepted.php │ │ │ │ │ ├── CanBeAutocapitalized.php │ │ │ │ │ ├── CanBeAutocompleted.php │ │ │ │ │ ├── CanBeAutofocused.php │ │ │ │ │ ├── CanBeCloned.php │ │ │ │ │ ├── CanBeCollapsed.php │ │ │ │ │ ├── CanBeCompacted.php │ │ │ │ │ ├── CanBeConcealed.php │ │ │ │ │ ├── CanBeDisabled.php │ │ │ │ │ ├── CanBeHidden.php │ │ │ │ │ ├── CanBeInline.php │ │ │ │ │ ├── CanBeLengthConstrained.php │ │ │ │ │ ├── CanBeMarkedAsRequired.php │ │ │ │ │ ├── CanBePreloaded.php │ │ │ │ │ ├── CanBeReadOnly.php │ │ │ │ │ ├── CanBeSearchable.php │ │ │ │ │ ├── CanBeValidated.php │ │ │ │ │ ├── CanDisableOptions.php │ │ │ │ │ ├── CanGenerateUuids.php │ │ │ │ │ ├── CanLimitItemsLength.php │ │ │ │ │ ├── CanSelectPlaceholder.php │ │ │ │ │ ├── CanSpanColumns.php │ │ │ │ │ ├── Cloneable.php │ │ │ │ │ ├── EntanglesStateWithSingularRelationship.php │ │ │ │ │ ├── HasActions.php │ │ │ │ │ ├── HasAffixes.php │ │ │ │ │ ├── HasChildComponents.php │ │ │ │ │ ├── HasContainerGridLayout.php │ │ │ │ │ ├── HasDatalistOptions.php │ │ │ │ │ ├── HasExtraAlpineAttributes.php │ │ │ │ │ ├── HasExtraAttributes.php │ │ │ │ │ ├── HasExtraInputAttributes.php │ │ │ │ │ ├── HasFieldWrapper.php │ │ │ │ │ ├── HasFileAttachments.php │ │ │ │ │ ├── HasGridDirection.php │ │ │ │ │ ├── HasHelperText.php │ │ │ │ │ ├── HasHint.php │ │ │ │ │ ├── HasId.php │ │ │ │ │ ├── HasInlineLabel.php │ │ │ │ │ ├── HasInputMode.php │ │ │ │ │ ├── HasKey.php │ │ │ │ │ ├── HasLabel.php │ │ │ │ │ ├── HasLoadingMessage.php │ │ │ │ │ ├── HasMaxWidth.php │ │ │ │ │ ├── HasMeta.php │ │ │ │ │ ├── HasName.php │ │ │ │ │ ├── HasNestedRecursiveValidationRules.php │ │ │ │ │ ├── HasOptions.php │ │ │ │ │ ├── HasPlaceholder.php │ │ │ │ │ ├── HasState.php │ │ │ │ │ ├── HasStep.php │ │ │ │ │ ├── HasToggleColors.php │ │ │ │ │ ├── HasToggleIcons.php │ │ │ │ │ ├── InteractsWithToolbarButtons.php │ │ │ │ │ └── ListensToEvents.php │ │ │ │ ├── Contracts │ │ │ │ │ ├── CanBeLengthConstrained.php │ │ │ │ │ ├── CanConcealComponents.php │ │ │ │ │ ├── CanEntangleWithSingularRelationships.php │ │ │ │ │ ├── CanHaveNumericState.php │ │ │ │ │ ├── HasAffixActions.php │ │ │ │ │ ├── HasFileAttachments.php │ │ │ │ │ ├── HasHintActions.php │ │ │ │ │ ├── HasNestedRecursiveValidationRules.php │ │ │ │ │ └── HasValidationRules.php │ │ │ │ ├── DatePicker.php │ │ │ │ ├── DateTimePicker.php │ │ │ │ ├── Field.php │ │ │ │ ├── Fieldset.php │ │ │ │ ├── FileUpload.php │ │ │ │ ├── Grid.php │ │ │ │ ├── Group.php │ │ │ │ ├── HasManyRepeater.php │ │ │ │ ├── Hidden.php │ │ │ │ ├── KeyValue.php │ │ │ │ ├── MarkdownEditor.php │ │ │ │ ├── MorphManyRepeater.php │ │ │ │ ├── MorphToSelect.php │ │ │ │ ├── MorphToSelect │ │ │ │ │ └── Type.php │ │ │ │ ├── MultiSelect.php │ │ │ │ ├── Placeholder.php │ │ │ │ ├── Radio.php │ │ │ │ ├── RelationshipRepeater.php │ │ │ │ ├── Repeater.php │ │ │ │ ├── RichEditor.php │ │ │ │ ├── Section.php │ │ │ │ ├── Select.php │ │ │ │ ├── Tabs.php │ │ │ │ ├── Tabs │ │ │ │ │ └── Tab.php │ │ │ │ ├── TagsInput.php │ │ │ │ ├── TextInput.php │ │ │ │ ├── Textarea.php │ │ │ │ ├── TimePicker.php │ │ │ │ ├── Toggle.php │ │ │ │ ├── View.php │ │ │ │ ├── ViewField.php │ │ │ │ ├── Wizard.php │ │ │ │ └── Wizard │ │ │ │ │ └── Step.php │ │ │ ├── Concerns │ │ │ │ ├── BelongsToLivewire.php │ │ │ │ ├── BelongsToModel.php │ │ │ │ ├── BelongsToParentComponent.php │ │ │ │ ├── CanBeDisabled.php │ │ │ │ ├── CanBeHidden.php │ │ │ │ ├── CanBeValidated.php │ │ │ │ ├── Cloneable.php │ │ │ │ ├── HasColumns.php │ │ │ │ ├── HasComponents.php │ │ │ │ ├── HasFieldWrapper.php │ │ │ │ ├── HasFormComponentActions.php │ │ │ │ ├── HasInlineLabels.php │ │ │ │ ├── HasOperation.php │ │ │ │ ├── HasState.php │ │ │ │ ├── HasStateBindingModifiers.php │ │ │ │ ├── InteractsWithForms.php │ │ │ │ ├── ListensToEvents.php │ │ │ │ ├── SupportsComponentFileAttachments.php │ │ │ │ ├── SupportsFileUploadFields.php │ │ │ │ └── SupportsSelectFields.php │ │ │ ├── Contracts │ │ │ │ └── HasForms.php │ │ │ ├── Form.php │ │ │ ├── FormsComponent.php │ │ │ ├── FormsServiceProvider.php │ │ │ ├── Get.php │ │ │ ├── Set.php │ │ │ ├── Testing │ │ │ │ └── TestsForms.php │ │ │ └── helpers.php │ │ └── stubs │ │ │ ├── CreateForm.stub │ │ │ ├── EditForm.stub │ │ │ ├── Field.stub │ │ │ ├── FieldView.stub │ │ │ ├── Form.stub │ │ │ ├── FormView.stub │ │ │ ├── LayoutComponent.stub │ │ │ └── LayoutComponentView.stub │ ├── infolists │ │ ├── composer.json │ │ ├── docs │ │ │ ├── 01-installation.md │ │ │ ├── 02-getting-started.md │ │ │ ├── 03-entries │ │ │ │ ├── 01-getting-started.md │ │ │ │ ├── 02-text.md │ │ │ │ ├── 03-icon.md │ │ │ │ ├── 04-image.md │ │ │ │ ├── 05-color.md │ │ │ │ ├── 06-repeatable.md │ │ │ │ └── 07-custom.md │ │ │ ├── 04-layout │ │ │ │ ├── 01-getting-started.md │ │ │ │ ├── 02-grid.md │ │ │ │ ├── 03-fieldset.md │ │ │ │ ├── 04-tabs.md │ │ │ │ ├── 05-section.md │ │ │ │ ├── 06-split.md │ │ │ │ └── 07-custom.md │ │ │ ├── 05-actions.md │ │ │ └── 06-adding-an-infolist-to-a-livewire-component.md │ │ ├── resources │ │ │ ├── lang │ │ │ │ ├── ar │ │ │ │ │ └── components.php │ │ │ │ ├── az │ │ │ │ │ └── components.php │ │ │ │ ├── ckb │ │ │ │ │ └── components.php │ │ │ │ ├── de │ │ │ │ │ └── components.php │ │ │ │ ├── en │ │ │ │ │ └── components.php │ │ │ │ ├── es │ │ │ │ │ └── components.php │ │ │ │ ├── fa │ │ │ │ │ └── components.php │ │ │ │ ├── fi │ │ │ │ │ └── components.php │ │ │ │ ├── fr │ │ │ │ │ └── components.php │ │ │ │ ├── hu │ │ │ │ │ └── components.php │ │ │ │ ├── ja │ │ │ │ │ └── components.php │ │ │ │ ├── km │ │ │ │ │ └── components.php │ │ │ │ ├── ko │ │ │ │ │ └── components.php │ │ │ │ ├── ku │ │ │ │ │ └── components.php │ │ │ │ ├── lt │ │ │ │ │ └── components.php │ │ │ │ ├── no │ │ │ │ │ └── components.php │ │ │ │ ├── np │ │ │ │ │ └── components.php │ │ │ │ ├── pt_BR │ │ │ │ │ └── components.php │ │ │ │ ├── ru │ │ │ │ │ └── components.php │ │ │ │ ├── sv │ │ │ │ │ └── components.php │ │ │ │ ├── tr │ │ │ │ │ └── components.php │ │ │ │ ├── uk │ │ │ │ │ └── components.php │ │ │ │ ├── vi │ │ │ │ │ └── components.php │ │ │ │ └── zh_CN │ │ │ │ │ └── components.php │ │ │ └── views │ │ │ │ ├── component-container.blade.php │ │ │ │ └── components │ │ │ │ ├── actions.blade.php │ │ │ │ ├── actions │ │ │ │ └── action-container.blade.php │ │ │ │ ├── affixes.blade.php │ │ │ │ ├── color-entry.blade.php │ │ │ │ ├── entries │ │ │ │ └── placeholder.blade.php │ │ │ │ ├── entry-wrapper │ │ │ │ ├── helper-text.blade.php │ │ │ │ ├── hint.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── label.blade.php │ │ │ │ ├── fieldset.blade.php │ │ │ │ ├── grid.blade.php │ │ │ │ ├── group.blade.php │ │ │ │ ├── icon-entry.blade.php │ │ │ │ ├── image-entry.blade.php │ │ │ │ ├── repeatable-entry.blade.php │ │ │ │ ├── section.blade.php │ │ │ │ ├── split.blade.php │ │ │ │ ├── tabs.blade.php │ │ │ │ ├── tabs │ │ │ │ └── tab.blade.php │ │ │ │ └── text-entry.blade.php │ │ ├── src │ │ │ ├── Commands │ │ │ │ ├── Aliases │ │ │ │ │ ├── MakeEntryCommand.php │ │ │ │ │ └── MakeLayoutComponentCommand.php │ │ │ │ ├── MakeEntryCommand.php │ │ │ │ └── MakeLayoutComponentCommand.php │ │ │ ├── ComponentContainer.php │ │ │ ├── Components │ │ │ │ ├── Actions.php │ │ │ │ ├── Actions │ │ │ │ │ ├── Action.php │ │ │ │ │ ├── ActionContainer.php │ │ │ │ │ └── Concerns │ │ │ │ │ │ └── BelongsToInfolist.php │ │ │ │ ├── Card.php │ │ │ │ ├── ColorEntry.php │ │ │ │ ├── Component.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── BelongsToContainer.php │ │ │ │ │ ├── CanBeCollapsed.php │ │ │ │ │ ├── CanBeCompacted.php │ │ │ │ │ ├── CanBeHidden.php │ │ │ │ │ ├── CanFormatState.php │ │ │ │ │ ├── CanGetStateFromRelationships.php │ │ │ │ │ ├── CanGrow.php │ │ │ │ │ ├── CanOpenUrl.php │ │ │ │ │ ├── CanSpanColumns.php │ │ │ │ │ ├── Cloneable.php │ │ │ │ │ ├── EntanglesStateWithSingularRelationship.php │ │ │ │ │ ├── HasActions.php │ │ │ │ │ ├── HasAffixes.php │ │ │ │ │ ├── HasChildComponents.php │ │ │ │ │ ├── HasColor.php │ │ │ │ │ ├── HasContainerGridLayout.php │ │ │ │ │ ├── HasEntryWrapper.php │ │ │ │ │ ├── HasFontFamily.php │ │ │ │ │ ├── HasHelperText.php │ │ │ │ │ ├── HasHint.php │ │ │ │ │ ├── HasIcon.php │ │ │ │ │ ├── HasId.php │ │ │ │ │ ├── HasInlineLabel.php │ │ │ │ │ ├── HasKey.php │ │ │ │ │ ├── HasLabel.php │ │ │ │ │ ├── HasMaxWidth.php │ │ │ │ │ ├── HasMeta.php │ │ │ │ │ ├── HasName.php │ │ │ │ │ ├── HasState.php │ │ │ │ │ ├── HasTooltip.php │ │ │ │ │ └── HasWeight.php │ │ │ │ ├── Contracts │ │ │ │ │ ├── HasAffixActions.php │ │ │ │ │ └── HasHintActions.php │ │ │ │ ├── Entry.php │ │ │ │ ├── Fieldset.php │ │ │ │ ├── Grid.php │ │ │ │ ├── Group.php │ │ │ │ ├── IconEntry.php │ │ │ │ ├── IconEntry │ │ │ │ │ └── IconEntrySize.php │ │ │ │ ├── ImageEntry.php │ │ │ │ ├── RepeatableEntry.php │ │ │ │ ├── Section.php │ │ │ │ ├── Split.php │ │ │ │ ├── Tabs.php │ │ │ │ ├── Tabs │ │ │ │ │ └── Tab.php │ │ │ │ ├── TextEntry.php │ │ │ │ ├── TextEntry │ │ │ │ │ └── TextEntrySize.php │ │ │ │ ├── View.php │ │ │ │ └── ViewEntry.php │ │ │ ├── Concerns │ │ │ │ ├── BelongsToLivewire.php │ │ │ │ ├── BelongsToParentComponent.php │ │ │ │ ├── CanBeHidden.php │ │ │ │ ├── Cloneable.php │ │ │ │ ├── HasColumns.php │ │ │ │ ├── HasComponents.php │ │ │ │ ├── HasEntryWrapper.php │ │ │ │ ├── HasInlineLabels.php │ │ │ │ ├── HasState.php │ │ │ │ └── InteractsWithInfolists.php │ │ │ ├── Contracts │ │ │ │ └── HasInfolists.php │ │ │ ├── Infolist.php │ │ │ └── InfolistsServiceProvider.php │ │ └── stubs │ │ │ ├── Entry.stub │ │ │ ├── EntryView.stub │ │ │ ├── LayoutComponent.stub │ │ │ └── LayoutComponentView.stub │ ├── notifications │ │ ├── .stubs.php │ │ ├── composer.json │ │ ├── dist │ │ │ └── index.js │ │ ├── docs │ │ │ ├── 01-installation.md │ │ │ ├── 02-sending-notifications.md │ │ │ ├── 03-database-notifications.md │ │ │ ├── 04-broadcast-notifications.md │ │ │ ├── 05-customizing-notifications.md │ │ │ ├── 06-testing.md │ │ │ └── 07-upgrade-guide.md │ │ ├── resources │ │ │ ├── js │ │ │ │ ├── Notification.js │ │ │ │ ├── components │ │ │ │ │ └── notification.js │ │ │ │ └── index.js │ │ │ ├── lang │ │ │ │ ├── ar │ │ │ │ │ └── database.php │ │ │ │ ├── az │ │ │ │ │ └── database.php │ │ │ │ ├── bn │ │ │ │ │ └── database.php │ │ │ │ ├── bs │ │ │ │ │ └── database.php │ │ │ │ ├── ckb │ │ │ │ │ └── database.php │ │ │ │ ├── cs │ │ │ │ │ └── database.php │ │ │ │ ├── cy │ │ │ │ │ └── database.php │ │ │ │ ├── da │ │ │ │ │ └── database.php │ │ │ │ ├── de │ │ │ │ │ └── database.php │ │ │ │ ├── en │ │ │ │ │ └── database.php │ │ │ │ ├── es │ │ │ │ │ └── database.php │ │ │ │ ├── eu │ │ │ │ │ └── database.php │ │ │ │ ├── fa │ │ │ │ │ └── database.php │ │ │ │ ├── fi │ │ │ │ │ └── database.php │ │ │ │ ├── fr │ │ │ │ │ └── database.php │ │ │ │ ├── he │ │ │ │ │ └── database.php │ │ │ │ ├── hu │ │ │ │ │ └── database.php │ │ │ │ ├── id │ │ │ │ │ └── database.php │ │ │ │ ├── it │ │ │ │ │ └── database.php │ │ │ │ ├── ja │ │ │ │ │ └── database.php │ │ │ │ ├── km │ │ │ │ │ └── database.php │ │ │ │ ├── ko │ │ │ │ │ └── database.php │ │ │ │ ├── ku │ │ │ │ │ └── database.php │ │ │ │ ├── lt │ │ │ │ │ └── database.php │ │ │ │ ├── lv │ │ │ │ │ └── database.php │ │ │ │ ├── ms │ │ │ │ │ └── database.php │ │ │ │ ├── nl │ │ │ │ │ └── database.php │ │ │ │ ├── no │ │ │ │ │ └── database.php │ │ │ │ ├── np │ │ │ │ │ └── database.php │ │ │ │ ├── pl │ │ │ │ │ └── database.php │ │ │ │ ├── pt_BR │ │ │ │ │ └── database.php │ │ │ │ ├── ro │ │ │ │ │ └── database.php │ │ │ │ ├── ru │ │ │ │ │ └── database.php │ │ │ │ ├── sv │ │ │ │ │ └── database.php │ │ │ │ ├── sw │ │ │ │ │ └── database.php │ │ │ │ ├── tr │ │ │ │ │ └── database.php │ │ │ │ ├── uk │ │ │ │ │ └── database.php │ │ │ │ ├── vi │ │ │ │ │ └── database.php │ │ │ │ └── zh_CN │ │ │ │ │ └── database.php │ │ │ └── views │ │ │ │ ├── components │ │ │ │ ├── actions.blade.php │ │ │ │ ├── body.blade.php │ │ │ │ ├── close-button.blade.php │ │ │ │ ├── database │ │ │ │ │ ├── echo.blade.php │ │ │ │ │ ├── modal │ │ │ │ │ │ ├── actions.blade.php │ │ │ │ │ │ ├── heading.blade.php │ │ │ │ │ │ └── index.blade.php │ │ │ │ │ └── trigger.blade.php │ │ │ │ ├── date.blade.php │ │ │ │ ├── echo.blade.php │ │ │ │ ├── icon.blade.php │ │ │ │ ├── notification.blade.php │ │ │ │ └── title.blade.php │ │ │ │ ├── database-notifications.blade.php │ │ │ │ ├── notification.blade.php │ │ │ │ └── notifications.blade.php │ │ └── src │ │ │ ├── Actions │ │ │ ├── Action.php │ │ │ └── ActionGroup.php │ │ │ ├── BroadcastNotification.php │ │ │ ├── Collection.php │ │ │ ├── Concerns │ │ │ ├── CanBeInline.php │ │ │ ├── HasActions.php │ │ │ ├── HasBody.php │ │ │ ├── HasDate.php │ │ │ ├── HasDuration.php │ │ │ ├── HasIcon.php │ │ │ ├── HasIconColor.php │ │ │ ├── HasId.php │ │ │ ├── HasStatus.php │ │ │ └── HasTitle.php │ │ │ ├── DatabaseNotification.php │ │ │ ├── Events │ │ │ └── DatabaseNotificationsSent.php │ │ │ ├── Livewire │ │ │ ├── DatabaseNotifications.php │ │ │ └── Notifications.php │ │ │ ├── Notification.php │ │ │ ├── NotificationsServiceProvider.php │ │ │ └── Testing │ │ │ ├── Autoload.php │ │ │ └── TestsNotifications.php │ ├── spatie-laravel-media-library-plugin │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Forms │ │ │ └── Components │ │ │ │ └── SpatieMediaLibraryFileUpload.php │ │ │ ├── Infolists │ │ │ └── Components │ │ │ │ └── SpatieMediaLibraryImageEntry.php │ │ │ └── Tables │ │ │ └── Columns │ │ │ └── SpatieMediaLibraryImageColumn.php │ ├── support │ │ ├── composer.json │ │ ├── config │ │ │ └── filament.php │ │ ├── dist │ │ │ ├── async-alpine.js │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── docs │ │ │ ├── 01-overview.md │ │ │ ├── 02-assets.md │ │ │ ├── 03-icons.md │ │ │ ├── 04-colors.md │ │ │ ├── 05-style-customization.md │ │ │ ├── 06-render-hooks.md │ │ │ ├── 07-enums.md │ │ │ ├── 08-plugins │ │ │ │ ├── 01-getting-started.md │ │ │ │ ├── 02-build-a-panel-plugin.md │ │ │ │ └── 03-build-a-standalone-plugin.md │ │ │ └── 09-blade-components │ │ │ │ ├── 01-overview.md │ │ │ │ ├── 02-avatar.md │ │ │ │ ├── 02-badge.md │ │ │ │ ├── 02-breadcrumbs.md │ │ │ │ ├── 02-button.md │ │ │ │ ├── 02-checkbox.md │ │ │ │ ├── 02-dropdown.md │ │ │ │ ├── 02-fieldset.md │ │ │ │ ├── 02-icon-button.md │ │ │ │ ├── 02-input-wrapper.md │ │ │ │ ├── 02-input.md │ │ │ │ ├── 02-link.md │ │ │ │ ├── 02-loading-indicator.md │ │ │ │ ├── 02-modal.md │ │ │ │ ├── 02-pagination.md │ │ │ │ ├── 02-section.md │ │ │ │ ├── 02-select.md │ │ │ │ └── 02-tabs.md │ │ ├── resources │ │ │ ├── css │ │ │ │ └── components │ │ │ │ │ └── pagination.css │ │ │ ├── js │ │ │ │ ├── index.js │ │ │ │ └── sortable.js │ │ │ ├── lang │ │ │ │ ├── ar │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── az │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── bn │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── bs │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── ca │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── ckb │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── cs │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── cy │ │ │ │ │ └── components │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── da │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── de │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── en │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── es │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── eu │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── fa │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── fi │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── fr │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── he │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── hi │ │ │ │ │ └── components │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── hu │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── hy │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── id │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── it │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── ja │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── ka │ │ │ │ │ └── components │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── km │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── ko │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── ku │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── lt │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── lv │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── mn │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── ms │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── nl │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── no │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── np │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── pl │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── pt_BR │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── pt_PT │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── ro │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── ru │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── sv │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── sw │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── tr │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── uk │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── vi │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ ├── zh_CN │ │ │ │ │ └── components │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── copyable.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ └── pagination.php │ │ │ │ └── zh_TW │ │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── pagination.php │ │ │ └── views │ │ │ │ ├── assets.blade.php │ │ │ │ └── components │ │ │ │ ├── avatar.blade.php │ │ │ │ ├── badge.blade.php │ │ │ │ ├── breadcrumbs.blade.php │ │ │ │ ├── button │ │ │ │ ├── group.blade.php │ │ │ │ └── index.blade.php │ │ │ │ ├── card.blade.php │ │ │ │ ├── dropdown │ │ │ │ ├── header.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── list │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── item.blade.php │ │ │ │ ├── fieldset.blade.php │ │ │ │ ├── grid │ │ │ │ ├── column.blade.php │ │ │ │ └── index.blade.php │ │ │ │ ├── icon-button.blade.php │ │ │ │ ├── icon.blade.php │ │ │ │ ├── input │ │ │ │ ├── checkbox.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ ├── select.blade.php │ │ │ │ └── wrapper.blade.php │ │ │ │ ├── link.blade.php │ │ │ │ ├── loading-indicator.blade.php │ │ │ │ ├── loading-section.blade.php │ │ │ │ ├── modal │ │ │ │ ├── description.blade.php │ │ │ │ ├── heading.blade.php │ │ │ │ └── index.blade.php │ │ │ │ ├── pagination │ │ │ │ ├── index.blade.php │ │ │ │ └── item.blade.php │ │ │ │ ├── section │ │ │ │ ├── description.blade.php │ │ │ │ ├── heading.blade.php │ │ │ │ └── index.blade.php │ │ │ │ └── tabs │ │ │ │ ├── index.blade.php │ │ │ │ └── item.blade.php │ │ ├── src │ │ │ ├── Assets │ │ │ │ ├── AlpineComponent.php │ │ │ │ ├── Asset.php │ │ │ │ ├── AssetManager.php │ │ │ │ ├── Css.php │ │ │ │ ├── Js.php │ │ │ │ └── Theme.php │ │ │ ├── Colors │ │ │ │ ├── Color.php │ │ │ │ └── ColorManager.php │ │ │ ├── Commands │ │ │ │ ├── AssetsCommand.php │ │ │ │ ├── CheckTranslationsCommand.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── CanGeneratePanels.php │ │ │ │ │ ├── CanIndentStrings.php │ │ │ │ │ ├── CanManipulateFiles.php │ │ │ │ │ ├── CanReadModelSchemas.php │ │ │ │ │ └── CanValidateInput.php │ │ │ │ ├── InstallCommand.php │ │ │ │ └── UpgradeCommand.php │ │ │ ├── Components │ │ │ │ ├── Component.php │ │ │ │ └── ViewComponent.php │ │ │ ├── Concerns │ │ │ │ ├── CanBeContained.php │ │ │ │ ├── CanBeCopied.php │ │ │ │ ├── Configurable.php │ │ │ │ ├── EvaluatesClosures.php │ │ │ │ ├── HasAlignment.php │ │ │ │ ├── HasBadge.php │ │ │ │ ├── HasColor.php │ │ │ │ ├── HasDescription.php │ │ │ │ ├── HasExtraAlpineAttributes.php │ │ │ │ ├── HasExtraAttributes.php │ │ │ │ ├── HasHeading.php │ │ │ │ ├── HasIcon.php │ │ │ │ ├── HasIconColor.php │ │ │ │ ├── HasPlaceholder.php │ │ │ │ ├── HasVerticalAlignment.php │ │ │ │ ├── Macroable.php │ │ │ │ └── ResolvesDynamicLivewireProperties.php │ │ │ ├── Contracts │ │ │ │ ├── HasColor.php │ │ │ │ ├── HasIcon.php │ │ │ │ ├── HasLabel.php │ │ │ │ └── TranslatableContentDriver.php │ │ │ ├── Enums │ │ │ │ ├── ActionSize.php │ │ │ │ ├── Alignment.php │ │ │ │ ├── FontFamily.php │ │ │ │ ├── FontWeight.php │ │ │ │ ├── IconPosition.php │ │ │ │ ├── IconSize.php │ │ │ │ └── VerticalAlignment.php │ │ │ ├── Events │ │ │ │ └── FilamentUpgraded.php │ │ │ ├── Exceptions │ │ │ │ ├── Cancel.php │ │ │ │ └── Halt.php │ │ │ ├── Facades │ │ │ │ ├── FilamentAsset.php │ │ │ │ ├── FilamentColor.php │ │ │ │ ├── FilamentIcon.php │ │ │ │ └── FilamentView.php │ │ │ ├── Icons │ │ │ │ └── IconManager.php │ │ │ ├── Markdown.php │ │ │ ├── RawJs.php │ │ │ ├── Services │ │ │ │ └── RelationshipJoiner.php │ │ │ ├── SupportServiceProvider.php │ │ │ ├── View │ │ │ │ ├── Components │ │ │ │ │ └── Modal.php │ │ │ │ └── ViewManager.php │ │ │ └── helpers.php │ │ ├── stubs │ │ │ ├── DefaultPanelProvider.stub │ │ │ ├── PanelProvider.stub │ │ │ └── scaffolding │ │ │ │ ├── postcss.config.js │ │ │ │ ├── resources │ │ │ │ ├── css │ │ │ │ │ └── app.css │ │ │ │ ├── js │ │ │ │ │ └── app.js │ │ │ │ └── views │ │ │ │ │ └── components │ │ │ │ │ └── layouts │ │ │ │ │ └── app.blade.php │ │ │ │ ├── tailwind.config.js │ │ │ │ └── vite.config.js │ │ ├── tailwind.config.js │ │ └── tailwind.config.preset.js │ ├── tables │ │ ├── .stubs.php │ │ ├── composer.json │ │ ├── dist │ │ │ ├── components │ │ │ │ └── table.js │ │ │ └── index.js │ │ ├── docs │ │ │ ├── 01-installation.md │ │ │ ├── 02-getting-started.md │ │ │ ├── 03-columns │ │ │ │ ├── 01-getting-started.md │ │ │ │ ├── 02-text.md │ │ │ │ ├── 03-icon.md │ │ │ │ ├── 04-image.md │ │ │ │ ├── 05-color.md │ │ │ │ ├── 06-select.md │ │ │ │ ├── 07-toggle.md │ │ │ │ ├── 08-text-input.md │ │ │ │ ├── 09-checkbox.md │ │ │ │ ├── 10-custom.md │ │ │ │ ├── 11-relationships.md │ │ │ │ └── 12-advanced.md │ │ │ ├── 04-filters.md │ │ │ ├── 05-actions.md │ │ │ ├── 06-layout.md │ │ │ ├── 07-summaries.md │ │ │ ├── 08-grouping.md │ │ │ ├── 09-empty-state.md │ │ │ ├── 10-advanced.md │ │ │ ├── 11-adding-a-table-to-a-livewire-component.md │ │ │ ├── 12-testing.md │ │ │ └── 13-upgrade-guide.md │ │ ├── resources │ │ │ ├── js │ │ │ │ ├── components │ │ │ │ │ └── table.js │ │ │ │ └── index.js │ │ │ ├── lang │ │ │ │ ├── ar │ │ │ │ │ └── table.php │ │ │ │ ├── az │ │ │ │ │ └── table.php │ │ │ │ ├── bn │ │ │ │ │ └── table.php │ │ │ │ ├── bs │ │ │ │ │ └── table.php │ │ │ │ ├── ca │ │ │ │ │ └── table.php │ │ │ │ ├── ckb │ │ │ │ │ └── table.php │ │ │ │ ├── cs │ │ │ │ │ └── table.php │ │ │ │ ├── cy │ │ │ │ │ └── table.php │ │ │ │ ├── da │ │ │ │ │ └── table.php │ │ │ │ ├── de │ │ │ │ │ └── table.php │ │ │ │ ├── en │ │ │ │ │ └── table.php │ │ │ │ ├── es │ │ │ │ │ └── table.php │ │ │ │ ├── eu │ │ │ │ │ └── table.php │ │ │ │ ├── fa │ │ │ │ │ └── table.php │ │ │ │ ├── fi │ │ │ │ │ └── table.php │ │ │ │ ├── fr │ │ │ │ │ └── table.php │ │ │ │ ├── he │ │ │ │ │ └── table.php │ │ │ │ ├── hi │ │ │ │ │ └── table.php │ │ │ │ ├── hu │ │ │ │ │ └── table.php │ │ │ │ ├── hy │ │ │ │ │ └── table.php │ │ │ │ ├── id │ │ │ │ │ └── table.php │ │ │ │ ├── it │ │ │ │ │ └── table.php │ │ │ │ ├── ja │ │ │ │ │ └── table.php │ │ │ │ ├── ka │ │ │ │ │ └── table.php │ │ │ │ ├── km │ │ │ │ │ └── table.php │ │ │ │ ├── ko │ │ │ │ │ └── table.php │ │ │ │ ├── ku │ │ │ │ │ └── table.php │ │ │ │ ├── lt │ │ │ │ │ └── table.php │ │ │ │ ├── lv │ │ │ │ │ └── table.php │ │ │ │ ├── mn │ │ │ │ │ └── table.php │ │ │ │ ├── ms │ │ │ │ │ └── table.php │ │ │ │ ├── nl │ │ │ │ │ └── table.php │ │ │ │ ├── no │ │ │ │ │ └── table.php │ │ │ │ ├── np │ │ │ │ │ └── table.php │ │ │ │ ├── pl │ │ │ │ │ └── table.php │ │ │ │ ├── pt_BR │ │ │ │ │ └── table.php │ │ │ │ ├── pt_PT │ │ │ │ │ └── table.php │ │ │ │ ├── ro │ │ │ │ │ └── table.php │ │ │ │ ├── ru │ │ │ │ │ └── table.php │ │ │ │ ├── sv │ │ │ │ │ └── table.php │ │ │ │ ├── sw │ │ │ │ │ └── table.php │ │ │ │ ├── tr │ │ │ │ │ └── table.php │ │ │ │ ├── uk │ │ │ │ │ └── table.php │ │ │ │ ├── vi │ │ │ │ │ └── table.php │ │ │ │ ├── zh_CN │ │ │ │ │ └── table.php │ │ │ │ └── zh_TW │ │ │ │ │ └── table.php │ │ │ └── views │ │ │ │ ├── columns │ │ │ │ ├── checkbox-column.blade.php │ │ │ │ ├── color-column.blade.php │ │ │ │ ├── icon-column.blade.php │ │ │ │ ├── image-column.blade.php │ │ │ │ ├── layout │ │ │ │ │ ├── grid.blade.php │ │ │ │ │ ├── panel.blade.php │ │ │ │ │ ├── split.blade.php │ │ │ │ │ └── stack.blade.php │ │ │ │ ├── select-column.blade.php │ │ │ │ ├── summaries │ │ │ │ │ ├── icon-count.blade.php │ │ │ │ │ ├── range.blade.php │ │ │ │ │ ├── text.blade.php │ │ │ │ │ └── values.blade.php │ │ │ │ ├── text-column.blade.php │ │ │ │ ├── text-input-column.blade.php │ │ │ │ └── toggle-column.blade.php │ │ │ │ ├── components │ │ │ │ ├── actions.blade.php │ │ │ │ ├── actions │ │ │ │ │ └── cell.blade.php │ │ │ │ ├── cell.blade.php │ │ │ │ ├── column-toggle │ │ │ │ │ └── dropdown.blade.php │ │ │ │ ├── columns │ │ │ │ │ ├── column.blade.php │ │ │ │ │ ├── layout.blade.php │ │ │ │ │ └── placeholder.blade.php │ │ │ │ ├── container.blade.php │ │ │ │ ├── empty-state │ │ │ │ │ ├── description.blade.php │ │ │ │ │ ├── heading.blade.php │ │ │ │ │ └── index.blade.php │ │ │ │ ├── filters │ │ │ │ │ ├── dialog.blade.php │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── indicators.blade.php │ │ │ │ ├── group │ │ │ │ │ └── header.blade.php │ │ │ │ ├── groups.blade.php │ │ │ │ ├── header-cell.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── reorder │ │ │ │ │ ├── cell.blade.php │ │ │ │ │ ├── handle.blade.php │ │ │ │ │ └── indicator.blade.php │ │ │ │ ├── row.blade.php │ │ │ │ ├── search-field.blade.php │ │ │ │ ├── selection │ │ │ │ │ ├── cell.blade.php │ │ │ │ │ ├── checkbox.blade.php │ │ │ │ │ ├── group-cell.blade.php │ │ │ │ │ ├── group-checkbox.blade.php │ │ │ │ │ └── indicator.blade.php │ │ │ │ ├── summary │ │ │ │ │ ├── header-cell.blade.php │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── row.blade.php │ │ │ │ └── table.blade.php │ │ │ │ └── index.blade.php │ │ ├── src │ │ │ ├── Actions │ │ │ │ ├── Action.php │ │ │ │ ├── ActionGroup.php │ │ │ │ ├── AssociateAction.php │ │ │ │ ├── AttachAction.php │ │ │ │ ├── BulkAction.php │ │ │ │ ├── BulkActionGroup.php │ │ │ │ ├── ButtonAction.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── BelongsToTable.php │ │ │ │ │ ├── CanDeselectRecordsAfterCompletion.php │ │ │ │ │ └── InteractsWithRecords.php │ │ │ │ ├── Contracts │ │ │ │ │ └── HasTable.php │ │ │ │ ├── CreateAction.php │ │ │ │ ├── DeleteAction.php │ │ │ │ ├── DeleteBulkAction.php │ │ │ │ ├── DetachAction.php │ │ │ │ ├── DetachBulkAction.php │ │ │ │ ├── DissociateAction.php │ │ │ │ ├── DissociateBulkAction.php │ │ │ │ ├── EditAction.php │ │ │ │ ├── ForceDeleteAction.php │ │ │ │ ├── ForceDeleteBulkAction.php │ │ │ │ ├── HeaderActionsPosition.php │ │ │ │ ├── IconButtonAction.php │ │ │ │ ├── LinkAction.php │ │ │ │ ├── Modal │ │ │ │ │ └── Actions │ │ │ │ │ │ ├── Action.php │ │ │ │ │ │ └── ButtonAction.php │ │ │ │ ├── ReplicateAction.php │ │ │ │ ├── RestoreAction.php │ │ │ │ ├── RestoreBulkAction.php │ │ │ │ ├── SelectAction.php │ │ │ │ └── ViewAction.php │ │ │ ├── Columns │ │ │ │ ├── BadgeColumn.php │ │ │ │ ├── BooleanColumn.php │ │ │ │ ├── CheckboxColumn.php │ │ │ │ ├── ColorColumn.php │ │ │ │ ├── Column.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── BelongsToLayout.php │ │ │ │ │ ├── BelongsToTable.php │ │ │ │ │ ├── CanAggregateRelatedModels.php │ │ │ │ │ ├── CanBeCopied.php │ │ │ │ │ ├── CanBeDisabled.php │ │ │ │ │ ├── CanBeHidden.php │ │ │ │ │ ├── CanBeInline.php │ │ │ │ │ ├── CanBeSearchable.php │ │ │ │ │ ├── CanBeSortable.php │ │ │ │ │ ├── CanBeSummarized.php │ │ │ │ │ ├── CanBeToggled.php │ │ │ │ │ ├── CanBeValidated.php │ │ │ │ │ ├── CanCallAction.php │ │ │ │ │ ├── CanFormatState.php │ │ │ │ │ ├── CanGrow.php │ │ │ │ │ ├── CanOpenUrl.php │ │ │ │ │ ├── CanSpanColumns.php │ │ │ │ │ ├── CanUpdateState.php │ │ │ │ │ ├── CanWrapHeader.php │ │ │ │ │ ├── HasColor.php │ │ │ │ │ ├── HasDescription.php │ │ │ │ │ ├── HasExtraAttributes.php │ │ │ │ │ ├── HasExtraCellAttributes.php │ │ │ │ │ ├── HasExtraHeaderAttributes.php │ │ │ │ │ ├── HasFontFamily.php │ │ │ │ │ ├── HasIcon.php │ │ │ │ │ ├── HasLabel.php │ │ │ │ │ ├── HasName.php │ │ │ │ │ ├── HasRecord.php │ │ │ │ │ ├── HasRowLoopObject.php │ │ │ │ │ ├── HasSpace.php │ │ │ │ │ ├── HasState.php │ │ │ │ │ ├── HasTooltip.php │ │ │ │ │ ├── HasWeight.php │ │ │ │ │ └── InteractsWithTableQuery.php │ │ │ │ ├── Contracts │ │ │ │ │ └── Editable.php │ │ │ │ ├── IconColumn.php │ │ │ │ ├── IconColumn │ │ │ │ │ └── IconColumnSize.php │ │ │ │ ├── ImageColumn.php │ │ │ │ ├── Layout │ │ │ │ │ ├── Component.php │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Panel.php │ │ │ │ │ ├── Split.php │ │ │ │ │ ├── Stack.php │ │ │ │ │ └── View.php │ │ │ │ ├── SelectColumn.php │ │ │ │ ├── Summarizers │ │ │ │ │ ├── Average.php │ │ │ │ │ ├── Concerns │ │ │ │ │ │ ├── BelongsToColumn.php │ │ │ │ │ │ ├── CanFormatState.php │ │ │ │ │ │ ├── HasLabel.php │ │ │ │ │ │ └── InteractsWithTableQuery.php │ │ │ │ │ ├── Count.php │ │ │ │ │ ├── Range.php │ │ │ │ │ ├── Sum.php │ │ │ │ │ ├── Summarizer.php │ │ │ │ │ └── Values.php │ │ │ │ ├── TagsColumn.php │ │ │ │ ├── TextColumn.php │ │ │ │ ├── TextColumn │ │ │ │ │ └── TextColumnSize.php │ │ │ │ ├── TextInputColumn.php │ │ │ │ ├── ToggleColumn.php │ │ │ │ └── ViewColumn.php │ │ │ ├── Commands │ │ │ │ ├── Aliases │ │ │ │ │ └── MakeColumnCommand.php │ │ │ │ ├── Concerns │ │ │ │ │ └── CanGenerateTables.php │ │ │ │ ├── MakeColumnCommand.php │ │ │ │ └── MakeTableCommand.php │ │ │ ├── Concerns │ │ │ │ ├── CanBeStriped.php │ │ │ │ ├── CanDeferLoading.php │ │ │ │ ├── CanGroupRecords.php │ │ │ │ ├── CanPaginateRecords.php │ │ │ │ ├── CanPollRecords.php │ │ │ │ ├── CanReorderRecords.php │ │ │ │ ├── CanSearchRecords.php │ │ │ │ ├── CanSortRecords.php │ │ │ │ ├── CanSummarizeRecords.php │ │ │ │ ├── CanToggleColumns.php │ │ │ │ ├── HasActions.php │ │ │ │ ├── HasBulkActions.php │ │ │ │ ├── HasColumns.php │ │ │ │ ├── HasContent.php │ │ │ │ ├── HasEmptyState.php │ │ │ │ ├── HasFilters.php │ │ │ │ ├── HasHeader.php │ │ │ │ ├── HasRecordAction.php │ │ │ │ ├── HasRecordClasses.php │ │ │ │ ├── HasRecordUrl.php │ │ │ │ ├── HasRecords.php │ │ │ │ └── InteractsWithTable.php │ │ │ ├── Contracts │ │ │ │ └── HasTable.php │ │ │ ├── Enums │ │ │ │ ├── ActionsPosition.php │ │ │ │ ├── FiltersLayout.php │ │ │ │ └── RecordCheckboxPosition.php │ │ │ ├── Filters │ │ │ │ ├── BaseFilter.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── BelongsToTable.php │ │ │ │ │ ├── CanBeHidden.php │ │ │ │ │ ├── CanResetState.php │ │ │ │ │ ├── CanSpanColumns.php │ │ │ │ │ ├── HasColumns.php │ │ │ │ │ ├── HasDefaultState.php │ │ │ │ │ ├── HasFormSchema.php │ │ │ │ │ ├── HasIndicators.php │ │ │ │ │ ├── HasLabel.php │ │ │ │ │ ├── HasName.php │ │ │ │ │ ├── HasOptions.php │ │ │ │ │ ├── HasPlaceholder.php │ │ │ │ │ ├── HasRelationship.php │ │ │ │ │ └── InteractsWithTableQuery.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Indicator.php │ │ │ │ ├── MultiSelectFilter.php │ │ │ │ ├── SelectFilter.php │ │ │ │ ├── TernaryFilter.php │ │ │ │ └── TrashedFilter.php │ │ │ ├── Grouping │ │ │ │ └── Group.php │ │ │ ├── Table.php │ │ │ ├── Table │ │ │ │ └── Concerns │ │ │ │ │ ├── BelongsToLivewire.php │ │ │ │ │ ├── CanBeStriped.php │ │ │ │ │ ├── CanDeferLoading.php │ │ │ │ │ ├── CanGroupRecords.php │ │ │ │ │ ├── CanPaginateRecords.php │ │ │ │ │ ├── CanPollRecords.php │ │ │ │ │ ├── CanReorderRecords.php │ │ │ │ │ ├── CanSearchRecords.php │ │ │ │ │ ├── CanSortRecords.php │ │ │ │ │ ├── CanSummarizeRecords.php │ │ │ │ │ ├── CanToggleColumns.php │ │ │ │ │ ├── HasActions.php │ │ │ │ │ ├── HasBulkActions.php │ │ │ │ │ ├── HasColumns.php │ │ │ │ │ ├── HasContent.php │ │ │ │ │ ├── HasEmptyState.php │ │ │ │ │ ├── HasFilterIndicators.php │ │ │ │ │ ├── HasFilters.php │ │ │ │ │ ├── HasHeader.php │ │ │ │ │ ├── HasHeaderActions.php │ │ │ │ │ ├── HasQuery.php │ │ │ │ │ ├── HasQueryStringIdentifier.php │ │ │ │ │ ├── HasRecordAction.php │ │ │ │ │ ├── HasRecordClasses.php │ │ │ │ │ ├── HasRecordUrl.php │ │ │ │ │ └── HasRecords.php │ │ │ ├── TableComponent.php │ │ │ ├── TablesServiceProvider.php │ │ │ └── Testing │ │ │ │ ├── TestsActions.php │ │ │ │ ├── TestsBulkActions.php │ │ │ │ ├── TestsColumns.php │ │ │ │ ├── TestsFilters.php │ │ │ │ ├── TestsRecords.php │ │ │ │ └── TestsSummaries.php │ │ └── stubs │ │ │ ├── Column.stub │ │ │ ├── ColumnView.stub │ │ │ ├── Table.stub │ │ │ └── TableView.stub │ └── widgets │ │ ├── composer.json │ │ ├── dist │ │ └── components │ │ │ ├── chart.js │ │ │ └── stats-overview │ │ │ └── stat │ │ │ └── chart.js │ │ ├── docs │ │ ├── 01-installation.md │ │ ├── 02-stats-overview.md │ │ ├── 03-charts.md │ │ └── 04-adding-a-widget-to-a-blade-view.md │ │ ├── resources │ │ ├── js │ │ │ └── components │ │ │ │ ├── chart.js │ │ │ │ └── stats-overview │ │ │ │ └── stat │ │ │ │ └── chart.js │ │ └── views │ │ │ ├── chart-widget.blade.php │ │ │ ├── components │ │ │ ├── widget.blade.php │ │ │ └── widgets.blade.php │ │ │ ├── stats-overview-widget.blade.php │ │ │ ├── stats-overview-widget │ │ │ └── stat.blade.php │ │ │ └── table-widget.blade.php │ │ ├── src │ │ ├── BarChartWidget.php │ │ ├── BubbleChartWidget.php │ │ ├── ChartWidget.php │ │ ├── Commands │ │ │ ├── Aliases │ │ │ │ └── MakeWidgetCommand.php │ │ │ └── MakeWidgetCommand.php │ │ ├── Concerns │ │ │ └── CanPoll.php │ │ ├── DoughnutChartWidget.php │ │ ├── LineChartWidget.php │ │ ├── PieChartWidget.php │ │ ├── PolarAreaChartWidget.php │ │ ├── RadarChartWidget.php │ │ ├── ScatterChartWidget.php │ │ ├── StatsOverviewWidget.php │ │ ├── StatsOverviewWidget │ │ │ ├── Card.php │ │ │ └── Stat.php │ │ ├── TableWidget.php │ │ ├── Widget.php │ │ ├── WidgetConfiguration.php │ │ └── WidgetsServiceProvider.php │ │ └── stubs │ │ ├── ChartWidget.stub │ │ ├── StatsOverviewWidget.stub │ │ ├── TableWidget.stub │ │ ├── Widget.stub │ │ └── WidgetView.stub ├── filp │ └── whoops │ │ ├── .mailmap │ │ ├── LICENSE.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ └── Whoops │ │ ├── Exception │ │ ├── ErrorException.php │ │ ├── Formatter.php │ │ ├── Frame.php │ │ ├── FrameCollection.php │ │ └── Inspector.php │ │ ├── Handler │ │ ├── CallbackHandler.php │ │ ├── Handler.php │ │ ├── HandlerInterface.php │ │ ├── JsonResponseHandler.php │ │ ├── PlainTextHandler.php │ │ ├── PrettyPageHandler.php │ │ └── XmlResponseHandler.php │ │ ├── Inspector │ │ ├── InspectorFactory.php │ │ ├── InspectorFactoryInterface.php │ │ └── InspectorInterface.php │ │ ├── Resources │ │ ├── css │ │ │ ├── prism.css │ │ │ └── whoops.base.css │ │ ├── js │ │ │ ├── clipboard.min.js │ │ │ ├── prism.js │ │ │ ├── whoops.base.js │ │ │ └── zepto.min.js │ │ └── views │ │ │ ├── env_details.html.php │ │ │ ├── frame_code.html.php │ │ │ ├── frame_list.html.php │ │ │ ├── frames_container.html.php │ │ │ ├── frames_description.html.php │ │ │ ├── header.html.php │ │ │ ├── header_outer.html.php │ │ │ ├── layout.html.php │ │ │ ├── panel_details.html.php │ │ │ ├── panel_details_outer.html.php │ │ │ ├── panel_left.html.php │ │ │ └── panel_left_outer.html.php │ │ ├── Run.php │ │ ├── RunInterface.php │ │ └── Util │ │ ├── HtmlDumperOutput.php │ │ ├── Misc.php │ │ ├── SystemFacade.php │ │ └── TemplateHelper.php ├── flowframe │ └── laravel-trend │ │ ├── .php-cs-fixer.dist.php │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ ├── _meta.yml │ │ ├── drivers.md │ │ ├── index.md │ │ ├── installation-and-setup.md │ │ └── requirements.md │ │ └── src │ │ ├── Adapters │ │ ├── AbstractAdapter.php │ │ ├── MySqlAdapter.php │ │ ├── PgsqlAdapter.php │ │ └── SqliteAdapter.php │ │ ├── Trend.php │ │ ├── TrendServiceProvider.php │ │ └── TrendValue.php ├── friendsofphp │ └── php-cs-fixer │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE-v3.md │ │ ├── ci-integration.sh │ │ ├── composer.json │ │ ├── feature-or-bug.rst │ │ ├── logo.md │ │ ├── logo.png │ │ ├── php-cs-fixer │ │ └── src │ │ ├── AbstractDoctrineAnnotationFixer.php │ │ ├── AbstractFixer.php │ │ ├── AbstractFopenFlagFixer.php │ │ ├── AbstractFunctionReferenceFixer.php │ │ ├── AbstractNoUselessElseFixer.php │ │ ├── AbstractPhpdocToTypeDeclarationFixer.php │ │ ├── AbstractPhpdocTypesFixer.php │ │ ├── AbstractProxyFixer.php │ │ ├── Cache │ │ ├── Cache.php │ │ ├── CacheInterface.php │ │ ├── CacheManagerInterface.php │ │ ├── Directory.php │ │ ├── DirectoryInterface.php │ │ ├── FileCacheManager.php │ │ ├── FileHandler.php │ │ ├── FileHandlerInterface.php │ │ ├── NullCacheManager.php │ │ ├── Signature.php │ │ └── SignatureInterface.php │ │ ├── Config.php │ │ ├── ConfigInterface.php │ │ ├── ConfigurationException │ │ ├── InvalidConfigurationException.php │ │ ├── InvalidFixerConfigurationException.php │ │ ├── InvalidForEnvFixerConfigurationException.php │ │ └── RequiredFixerConfigurationException.php │ │ ├── Console │ │ ├── Application.php │ │ ├── Command │ │ │ ├── CheckCommand.php │ │ │ ├── DescribeCommand.php │ │ │ ├── DescribeNameNotFoundException.php │ │ │ ├── DocumentationCommand.php │ │ │ ├── FixCommand.php │ │ │ ├── FixCommandExitStatusCalculator.php │ │ │ ├── HelpCommand.php │ │ │ ├── ListFilesCommand.php │ │ │ ├── ListSetsCommand.php │ │ │ └── SelfUpdateCommand.php │ │ ├── ConfigurationResolver.php │ │ ├── Output │ │ │ ├── ErrorOutput.php │ │ │ ├── OutputContext.php │ │ │ └── Progress │ │ │ │ ├── DotsOutput.php │ │ │ │ ├── NullOutput.php │ │ │ │ ├── ProgressOutputFactory.php │ │ │ │ ├── ProgressOutputInterface.php │ │ │ │ └── ProgressOutputType.php │ │ ├── Report │ │ │ ├── FixReport │ │ │ │ ├── CheckstyleReporter.php │ │ │ │ ├── GitlabReporter.php │ │ │ │ ├── JsonReporter.php │ │ │ │ ├── JunitReporter.php │ │ │ │ ├── ReportSummary.php │ │ │ │ ├── ReporterFactory.php │ │ │ │ ├── ReporterInterface.php │ │ │ │ ├── TextReporter.php │ │ │ │ └── XmlReporter.php │ │ │ └── ListSetsReport │ │ │ │ ├── JsonReporter.php │ │ │ │ ├── ReportSummary.php │ │ │ │ ├── ReporterFactory.php │ │ │ │ ├── ReporterInterface.php │ │ │ │ └── TextReporter.php │ │ ├── SelfUpdate │ │ │ ├── GithubClient.php │ │ │ ├── GithubClientInterface.php │ │ │ ├── NewVersionChecker.php │ │ │ └── NewVersionCheckerInterface.php │ │ └── WarningsDetector.php │ │ ├── Differ │ │ ├── DiffConsoleFormatter.php │ │ ├── DifferInterface.php │ │ ├── FullDiffer.php │ │ ├── NullDiffer.php │ │ └── UnifiedDiffer.php │ │ ├── DocBlock │ │ ├── Annotation.php │ │ ├── DocBlock.php │ │ ├── Line.php │ │ ├── ShortDescription.php │ │ ├── Tag.php │ │ ├── TagComparator.php │ │ └── TypeExpression.php │ │ ├── Doctrine │ │ └── Annotation │ │ │ ├── DocLexer.php │ │ │ ├── Token.php │ │ │ └── Tokens.php │ │ ├── Documentation │ │ ├── DocumentationLocator.php │ │ ├── FixerDocumentGenerator.php │ │ ├── ListDocumentGenerator.php │ │ ├── RstUtils.php │ │ └── RuleSetDocumentationGenerator.php │ │ ├── Error │ │ ├── Error.php │ │ └── ErrorsManager.php │ │ ├── FileReader.php │ │ ├── FileRemoval.php │ │ ├── Finder.php │ │ ├── Fixer │ │ ├── AbstractIncrementOperatorFixer.php │ │ ├── AbstractPhpUnitFixer.php │ │ ├── AbstractShortOperatorFixer.php │ │ ├── Alias │ │ │ ├── ArrayPushFixer.php │ │ │ ├── BacktickToShellExecFixer.php │ │ │ ├── EregToPregFixer.php │ │ │ ├── MbStrFunctionsFixer.php │ │ │ ├── ModernizeStrposFixer.php │ │ │ ├── NoAliasFunctionsFixer.php │ │ │ ├── NoAliasLanguageConstructCallFixer.php │ │ │ ├── NoMixedEchoPrintFixer.php │ │ │ ├── PowToExponentiationFixer.php │ │ │ ├── RandomApiMigrationFixer.php │ │ │ └── SetTypeToCastFixer.php │ │ ├── ArrayNotation │ │ │ ├── ArraySyntaxFixer.php │ │ │ ├── NoMultilineWhitespaceAroundDoubleArrowFixer.php │ │ │ ├── NoTrailingCommaInSinglelineArrayFixer.php │ │ │ ├── NoWhitespaceBeforeCommaInArrayFixer.php │ │ │ ├── NormalizeIndexBraceFixer.php │ │ │ ├── ReturnToYieldFromFixer.php │ │ │ ├── TrimArraySpacesFixer.php │ │ │ ├── WhitespaceAfterCommaInArrayFixer.php │ │ │ └── YieldFromArrayToYieldsFixer.php │ │ ├── AttributeNotation │ │ │ └── AttributeEmptyParenthesesFixer.php │ │ ├── Basic │ │ │ ├── BracesFixer.php │ │ │ ├── BracesPositionFixer.php │ │ │ ├── CurlyBracesPositionFixer.php │ │ │ ├── EncodingFixer.php │ │ │ ├── NoMultipleStatementsPerLineFixer.php │ │ │ ├── NoTrailingCommaInSinglelineFixer.php │ │ │ ├── NonPrintableCharacterFixer.php │ │ │ ├── OctalNotationFixer.php │ │ │ ├── PsrAutoloadingFixer.php │ │ │ └── SingleLineEmptyBodyFixer.php │ │ ├── Casing │ │ │ ├── ClassReferenceNameCasingFixer.php │ │ │ ├── ConstantCaseFixer.php │ │ │ ├── IntegerLiteralCaseFixer.php │ │ │ ├── LowercaseKeywordsFixer.php │ │ │ ├── LowercaseStaticReferenceFixer.php │ │ │ ├── MagicConstantCasingFixer.php │ │ │ ├── MagicMethodCasingFixer.php │ │ │ ├── NativeFunctionCasingFixer.php │ │ │ ├── NativeFunctionTypeDeclarationCasingFixer.php │ │ │ └── NativeTypeDeclarationCasingFixer.php │ │ ├── CastNotation │ │ │ ├── CastSpacesFixer.php │ │ │ ├── LowercaseCastFixer.php │ │ │ ├── ModernizeTypesCastingFixer.php │ │ │ ├── NoShortBoolCastFixer.php │ │ │ ├── NoUnsetCastFixer.php │ │ │ └── ShortScalarCastFixer.php │ │ ├── ClassNotation │ │ │ ├── ClassAttributesSeparationFixer.php │ │ │ ├── ClassDefinitionFixer.php │ │ │ ├── FinalClassFixer.php │ │ │ ├── FinalInternalClassFixer.php │ │ │ ├── FinalPublicMethodForAbstractClassFixer.php │ │ │ ├── NoBlankLinesAfterClassOpeningFixer.php │ │ │ ├── NoNullPropertyInitializationFixer.php │ │ │ ├── NoPhp4ConstructorFixer.php │ │ │ ├── NoUnneededFinalMethodFixer.php │ │ │ ├── OrderedClassElementsFixer.php │ │ │ ├── OrderedInterfacesFixer.php │ │ │ ├── OrderedTraitsFixer.php │ │ │ ├── OrderedTypesFixer.php │ │ │ ├── PhpdocReadonlyClassCommentToKeywordFixer.php │ │ │ ├── ProtectedToPrivateFixer.php │ │ │ ├── SelfAccessorFixer.php │ │ │ ├── SelfStaticAccessorFixer.php │ │ │ ├── SingleClassElementPerStatementFixer.php │ │ │ ├── SingleTraitInsertPerStatementFixer.php │ │ │ └── VisibilityRequiredFixer.php │ │ ├── ClassUsage │ │ │ └── DateTimeImmutableFixer.php │ │ ├── Comment │ │ │ ├── CommentToPhpdocFixer.php │ │ │ ├── HeaderCommentFixer.php │ │ │ ├── MultilineCommentOpeningClosingFixer.php │ │ │ ├── NoEmptyCommentFixer.php │ │ │ ├── NoTrailingWhitespaceInCommentFixer.php │ │ │ ├── SingleLineCommentSpacingFixer.php │ │ │ └── SingleLineCommentStyleFixer.php │ │ ├── ConfigurableFixerInterface.php │ │ ├── ConstantNotation │ │ │ └── NativeConstantInvocationFixer.php │ │ ├── ControlStructure │ │ │ ├── ControlStructureBracesFixer.php │ │ │ ├── ControlStructureContinuationPositionFixer.php │ │ │ ├── ElseifFixer.php │ │ │ ├── EmptyLoopBodyFixer.php │ │ │ ├── EmptyLoopConditionFixer.php │ │ │ ├── IncludeFixer.php │ │ │ ├── NoAlternativeSyntaxFixer.php │ │ │ ├── NoBreakCommentFixer.php │ │ │ ├── NoSuperfluousElseifFixer.php │ │ │ ├── NoTrailingCommaInListCallFixer.php │ │ │ ├── NoUnneededBracesFixer.php │ │ │ ├── NoUnneededControlParenthesesFixer.php │ │ │ ├── NoUnneededCurlyBracesFixer.php │ │ │ ├── NoUselessElseFixer.php │ │ │ ├── SimplifiedIfReturnFixer.php │ │ │ ├── SwitchCaseSemicolonToColonFixer.php │ │ │ ├── SwitchCaseSpaceFixer.php │ │ │ ├── SwitchContinueToBreakFixer.php │ │ │ ├── TrailingCommaInMultilineFixer.php │ │ │ └── YodaStyleFixer.php │ │ ├── DeprecatedFixerInterface.php │ │ ├── DoctrineAnnotation │ │ │ ├── DoctrineAnnotationArrayAssignmentFixer.php │ │ │ ├── DoctrineAnnotationBracesFixer.php │ │ │ ├── DoctrineAnnotationIndentationFixer.php │ │ │ └── DoctrineAnnotationSpacesFixer.php │ │ ├── FixerInterface.php │ │ ├── FunctionNotation │ │ │ ├── CombineNestedDirnameFixer.php │ │ │ ├── DateTimeCreateFromFormatCallFixer.php │ │ │ ├── FopenFlagOrderFixer.php │ │ │ ├── FopenFlagsFixer.php │ │ │ ├── FunctionDeclarationFixer.php │ │ │ ├── FunctionTypehintSpaceFixer.php │ │ │ ├── ImplodeCallFixer.php │ │ │ ├── LambdaNotUsedImportFixer.php │ │ │ ├── MethodArgumentSpaceFixer.php │ │ │ ├── NativeFunctionInvocationFixer.php │ │ │ ├── NoSpacesAfterFunctionNameFixer.php │ │ │ ├── NoTrailingCommaInSinglelineFunctionCallFixer.php │ │ │ ├── NoUnreachableDefaultArgumentValueFixer.php │ │ │ ├── NoUselessSprintfFixer.php │ │ │ ├── NullableTypeDeclarationForDefaultNullValueFixer.php │ │ │ ├── PhpdocToParamTypeFixer.php │ │ │ ├── PhpdocToPropertyTypeFixer.php │ │ │ ├── PhpdocToReturnTypeFixer.php │ │ │ ├── RegularCallableCallFixer.php │ │ │ ├── ReturnTypeDeclarationFixer.php │ │ │ ├── SingleLineThrowFixer.php │ │ │ ├── StaticLambdaFixer.php │ │ │ ├── UseArrowFunctionsFixer.php │ │ │ └── VoidReturnFixer.php │ │ ├── Import │ │ │ ├── FullyQualifiedStrictTypesFixer.php │ │ │ ├── GlobalNamespaceImportFixer.php │ │ │ ├── GroupImportFixer.php │ │ │ ├── NoLeadingImportSlashFixer.php │ │ │ ├── NoUnneededImportAliasFixer.php │ │ │ ├── NoUnusedImportsFixer.php │ │ │ ├── OrderedImportsFixer.php │ │ │ ├── SingleImportPerStatementFixer.php │ │ │ └── SingleLineAfterImportsFixer.php │ │ ├── Indentation.php │ │ ├── LanguageConstruct │ │ │ ├── ClassKeywordRemoveFixer.php │ │ │ ├── CombineConsecutiveIssetsFixer.php │ │ │ ├── CombineConsecutiveUnsetsFixer.php │ │ │ ├── DeclareEqualNormalizeFixer.php │ │ │ ├── DeclareParenthesesFixer.php │ │ │ ├── DirConstantFixer.php │ │ │ ├── ErrorSuppressionFixer.php │ │ │ ├── ExplicitIndirectVariableFixer.php │ │ │ ├── FunctionToConstantFixer.php │ │ │ ├── GetClassToClassKeywordFixer.php │ │ │ ├── IsNullFixer.php │ │ │ ├── NoUnsetOnPropertyFixer.php │ │ │ ├── NullableTypeDeclarationFixer.php │ │ │ ├── SingleSpaceAfterConstructFixer.php │ │ │ └── SingleSpaceAroundConstructFixer.php │ │ ├── ListNotation │ │ │ └── ListSyntaxFixer.php │ │ ├── NamespaceNotation │ │ │ ├── BlankLineAfterNamespaceFixer.php │ │ │ ├── BlankLinesBeforeNamespaceFixer.php │ │ │ ├── CleanNamespaceFixer.php │ │ │ ├── NoBlankLinesBeforeNamespaceFixer.php │ │ │ ├── NoLeadingNamespaceWhitespaceFixer.php │ │ │ └── SingleBlankLineBeforeNamespaceFixer.php │ │ ├── Naming │ │ │ └── NoHomoglyphNamesFixer.php │ │ ├── Operator │ │ │ ├── AssignNullCoalescingToCoalesceEqualFixer.php │ │ │ ├── BinaryOperatorSpacesFixer.php │ │ │ ├── ConcatSpaceFixer.php │ │ │ ├── IncrementStyleFixer.php │ │ │ ├── LogicalOperatorsFixer.php │ │ │ ├── LongToShorthandOperatorFixer.php │ │ │ ├── NewWithBracesFixer.php │ │ │ ├── NewWithParenthesesFixer.php │ │ │ ├── NoSpaceAroundDoubleColonFixer.php │ │ │ ├── NoUselessConcatOperatorFixer.php │ │ │ ├── NoUselessNullsafeOperatorFixer.php │ │ │ ├── NotOperatorWithSpaceFixer.php │ │ │ ├── NotOperatorWithSuccessorSpaceFixer.php │ │ │ ├── ObjectOperatorWithoutWhitespaceFixer.php │ │ │ ├── OperatorLinebreakFixer.php │ │ │ ├── StandardizeIncrementFixer.php │ │ │ ├── StandardizeNotEqualsFixer.php │ │ │ ├── TernaryOperatorSpacesFixer.php │ │ │ ├── TernaryToElvisOperatorFixer.php │ │ │ ├── TernaryToNullCoalescingFixer.php │ │ │ └── UnaryOperatorSpacesFixer.php │ │ ├── PhpTag │ │ │ ├── BlankLineAfterOpeningTagFixer.php │ │ │ ├── EchoTagSyntaxFixer.php │ │ │ ├── FullOpeningTagFixer.php │ │ │ ├── LinebreakAfterOpeningTagFixer.php │ │ │ └── NoClosingTagFixer.php │ │ ├── PhpUnit │ │ │ ├── PhpUnitConstructFixer.php │ │ │ ├── PhpUnitDataProviderNameFixer.php │ │ │ ├── PhpUnitDataProviderReturnTypeFixer.php │ │ │ ├── PhpUnitDataProviderStaticFixer.php │ │ │ ├── PhpUnitDedicateAssertFixer.php │ │ │ ├── PhpUnitDedicateAssertInternalTypeFixer.php │ │ │ ├── PhpUnitExpectationFixer.php │ │ │ ├── PhpUnitFqcnAnnotationFixer.php │ │ │ ├── PhpUnitInternalClassFixer.php │ │ │ ├── PhpUnitMethodCasingFixer.php │ │ │ ├── PhpUnitMockFixer.php │ │ │ ├── PhpUnitMockShortWillReturnFixer.php │ │ │ ├── PhpUnitNamespacedFixer.php │ │ │ ├── PhpUnitNoExpectationAnnotationFixer.php │ │ │ ├── PhpUnitSetUpTearDownVisibilityFixer.php │ │ │ ├── PhpUnitSizeClassFixer.php │ │ │ ├── PhpUnitStrictFixer.php │ │ │ ├── PhpUnitTargetVersion.php │ │ │ ├── PhpUnitTestAnnotationFixer.php │ │ │ ├── PhpUnitTestCaseStaticMethodCallsFixer.php │ │ │ └── PhpUnitTestClassRequiresCoversFixer.php │ │ ├── Phpdoc │ │ │ ├── AlignMultilineCommentFixer.php │ │ │ ├── GeneralPhpdocAnnotationRemoveFixer.php │ │ │ ├── GeneralPhpdocTagRenameFixer.php │ │ │ ├── NoBlankLinesAfterPhpdocFixer.php │ │ │ ├── NoEmptyPhpdocFixer.php │ │ │ ├── NoSuperfluousPhpdocTagsFixer.php │ │ │ ├── PhpdocAddMissingParamAnnotationFixer.php │ │ │ ├── PhpdocAlignFixer.php │ │ │ ├── PhpdocAnnotationWithoutDotFixer.php │ │ │ ├── PhpdocIndentFixer.php │ │ │ ├── PhpdocInlineTagNormalizerFixer.php │ │ │ ├── PhpdocLineSpanFixer.php │ │ │ ├── PhpdocNoAccessFixer.php │ │ │ ├── PhpdocNoAliasTagFixer.php │ │ │ ├── PhpdocNoEmptyReturnFixer.php │ │ │ ├── PhpdocNoPackageFixer.php │ │ │ ├── PhpdocNoUselessInheritdocFixer.php │ │ │ ├── PhpdocOrderByValueFixer.php │ │ │ ├── PhpdocOrderFixer.php │ │ │ ├── PhpdocParamOrderFixer.php │ │ │ ├── PhpdocReturnSelfReferenceFixer.php │ │ │ ├── PhpdocScalarFixer.php │ │ │ ├── PhpdocSeparationFixer.php │ │ │ ├── PhpdocSingleLineVarSpacingFixer.php │ │ │ ├── PhpdocSummaryFixer.php │ │ │ ├── PhpdocTagCasingFixer.php │ │ │ ├── PhpdocTagTypeFixer.php │ │ │ ├── PhpdocToCommentFixer.php │ │ │ ├── PhpdocTrimConsecutiveBlankLineSeparationFixer.php │ │ │ ├── PhpdocTrimFixer.php │ │ │ ├── PhpdocTypesFixer.php │ │ │ ├── PhpdocTypesOrderFixer.php │ │ │ ├── PhpdocVarAnnotationCorrectOrderFixer.php │ │ │ └── PhpdocVarWithoutNameFixer.php │ │ ├── ReturnNotation │ │ │ ├── NoUselessReturnFixer.php │ │ │ ├── ReturnAssignmentFixer.php │ │ │ └── SimplifiedNullReturnFixer.php │ │ ├── Semicolon │ │ │ ├── MultilineWhitespaceBeforeSemicolonsFixer.php │ │ │ ├── NoEmptyStatementFixer.php │ │ │ ├── NoSinglelineWhitespaceBeforeSemicolonsFixer.php │ │ │ ├── SemicolonAfterInstructionFixer.php │ │ │ └── SpaceAfterSemicolonFixer.php │ │ ├── Strict │ │ │ ├── DeclareStrictTypesFixer.php │ │ │ ├── StrictComparisonFixer.php │ │ │ └── StrictParamFixer.php │ │ ├── StringNotation │ │ │ ├── EscapeImplicitBackslashesFixer.php │ │ │ ├── ExplicitStringVariableFixer.php │ │ │ ├── HeredocToNowdocFixer.php │ │ │ ├── NoBinaryStringFixer.php │ │ │ ├── NoTrailingWhitespaceInStringFixer.php │ │ │ ├── SimpleToComplexStringVariableFixer.php │ │ │ ├── SingleQuoteFixer.php │ │ │ ├── StringLengthToEmptyFixer.php │ │ │ └── StringLineEndingFixer.php │ │ ├── Whitespace │ │ │ ├── ArrayIndentationFixer.php │ │ │ ├── BlankLineBeforeStatementFixer.php │ │ │ ├── BlankLineBetweenImportGroupsFixer.php │ │ │ ├── CompactNullableTypeDeclarationFixer.php │ │ │ ├── CompactNullableTypehintFixer.php │ │ │ ├── HeredocIndentationFixer.php │ │ │ ├── IndentationTypeFixer.php │ │ │ ├── LineEndingFixer.php │ │ │ ├── MethodChainingIndentationFixer.php │ │ │ ├── NoExtraBlankLinesFixer.php │ │ │ ├── NoSpacesAroundOffsetFixer.php │ │ │ ├── NoSpacesInsideParenthesisFixer.php │ │ │ ├── NoTrailingWhitespaceFixer.php │ │ │ ├── NoWhitespaceInBlankLineFixer.php │ │ │ ├── SingleBlankLineAtEofFixer.php │ │ │ ├── SpacesInsideParenthesesFixer.php │ │ │ ├── StatementIndentationFixer.php │ │ │ ├── TypeDeclarationSpacesFixer.php │ │ │ └── TypesSpacesFixer.php │ │ └── WhitespacesAwareFixerInterface.php │ │ ├── FixerConfiguration │ │ ├── AliasedFixerOption.php │ │ ├── AliasedFixerOptionBuilder.php │ │ ├── AllowedValueSubset.php │ │ ├── DeprecatedFixerOption.php │ │ ├── DeprecatedFixerOptionInterface.php │ │ ├── FixerConfigurationResolver.php │ │ ├── FixerConfigurationResolverInterface.php │ │ ├── FixerOption.php │ │ ├── FixerOptionBuilder.php │ │ ├── FixerOptionInterface.php │ │ ├── FixerOptionSorter.php │ │ └── InvalidOptionsForEnvException.php │ │ ├── FixerDefinition │ │ ├── CodeSample.php │ │ ├── CodeSampleInterface.php │ │ ├── FileSpecificCodeSample.php │ │ ├── FileSpecificCodeSampleInterface.php │ │ ├── FixerDefinition.php │ │ ├── FixerDefinitionInterface.php │ │ ├── VersionSpecificCodeSample.php │ │ ├── VersionSpecificCodeSampleInterface.php │ │ ├── VersionSpecification.php │ │ └── VersionSpecificationInterface.php │ │ ├── FixerFactory.php │ │ ├── FixerFileProcessedEvent.php │ │ ├── FixerNameValidator.php │ │ ├── Indicator │ │ └── PhpUnitTestCaseIndicator.php │ │ ├── Linter │ │ ├── CachingLinter.php │ │ ├── Linter.php │ │ ├── LinterInterface.php │ │ ├── LintingException.php │ │ ├── LintingResultInterface.php │ │ ├── ProcessLinter.php │ │ ├── ProcessLinterProcessBuilder.php │ │ ├── ProcessLintingResult.php │ │ ├── TokenizerLinter.php │ │ ├── TokenizerLintingResult.php │ │ └── UnavailableLinterException.php │ │ ├── PharChecker.php │ │ ├── PharCheckerInterface.php │ │ ├── Preg.php │ │ ├── PregException.php │ │ ├── RuleSet │ │ ├── AbstractMigrationSetDescription.php │ │ ├── AbstractRuleSetDescription.php │ │ ├── RuleSet.php │ │ ├── RuleSetDescriptionInterface.php │ │ ├── RuleSetInterface.php │ │ ├── RuleSets.php │ │ └── Sets │ │ │ ├── DoctrineAnnotationSet.php │ │ │ ├── PERCS1x0RiskySet.php │ │ │ ├── PERCS1x0Set.php │ │ │ ├── PERCS2x0RiskySet.php │ │ │ ├── PERCS2x0Set.php │ │ │ ├── PERCSRiskySet.php │ │ │ ├── PERCSSet.php │ │ │ ├── PERRiskySet.php │ │ │ ├── PERSet.php │ │ │ ├── PHP54MigrationSet.php │ │ │ ├── PHP56MigrationRiskySet.php │ │ │ ├── PHP70MigrationRiskySet.php │ │ │ ├── PHP70MigrationSet.php │ │ │ ├── PHP71MigrationRiskySet.php │ │ │ ├── PHP71MigrationSet.php │ │ │ ├── PHP73MigrationSet.php │ │ │ ├── PHP74MigrationRiskySet.php │ │ │ ├── PHP74MigrationSet.php │ │ │ ├── PHP80MigrationRiskySet.php │ │ │ ├── PHP80MigrationSet.php │ │ │ ├── PHP81MigrationSet.php │ │ │ ├── PHP82MigrationSet.php │ │ │ ├── PHPUnit100MigrationRiskySet.php │ │ │ ├── PHPUnit30MigrationRiskySet.php │ │ │ ├── PHPUnit32MigrationRiskySet.php │ │ │ ├── PHPUnit35MigrationRiskySet.php │ │ │ ├── PHPUnit43MigrationRiskySet.php │ │ │ ├── PHPUnit48MigrationRiskySet.php │ │ │ ├── PHPUnit50MigrationRiskySet.php │ │ │ ├── PHPUnit52MigrationRiskySet.php │ │ │ ├── PHPUnit54MigrationRiskySet.php │ │ │ ├── PHPUnit55MigrationRiskySet.php │ │ │ ├── PHPUnit56MigrationRiskySet.php │ │ │ ├── PHPUnit57MigrationRiskySet.php │ │ │ ├── PHPUnit60MigrationRiskySet.php │ │ │ ├── PHPUnit75MigrationRiskySet.php │ │ │ ├── PHPUnit84MigrationRiskySet.php │ │ │ ├── PSR12RiskySet.php │ │ │ ├── PSR12Set.php │ │ │ ├── PSR1Set.php │ │ │ ├── PSR2Set.php │ │ │ ├── PhpCsFixerRiskySet.php │ │ │ ├── PhpCsFixerSet.php │ │ │ ├── SymfonyRiskySet.php │ │ │ └── SymfonySet.php │ │ ├── Runner │ │ ├── FileCachingLintingIterator.php │ │ ├── FileFilterIterator.php │ │ ├── FileLintingIterator.php │ │ └── Runner.php │ │ ├── StdinFileInfo.php │ │ ├── Tokenizer │ │ ├── AbstractTransformer.php │ │ ├── AbstractTypeTransformer.php │ │ ├── Analyzer │ │ │ ├── AlternativeSyntaxAnalyzer.php │ │ │ ├── Analysis │ │ │ │ ├── AbstractControlCaseStructuresAnalysis.php │ │ │ │ ├── ArgumentAnalysis.php │ │ │ │ ├── CaseAnalysis.php │ │ │ │ ├── DataProviderAnalysis.php │ │ │ │ ├── DefaultAnalysis.php │ │ │ │ ├── EnumAnalysis.php │ │ │ │ ├── MatchAnalysis.php │ │ │ │ ├── NamespaceAnalysis.php │ │ │ │ ├── NamespaceUseAnalysis.php │ │ │ │ ├── StartEndTokenAwareAnalysis.php │ │ │ │ ├── SwitchAnalysis.php │ │ │ │ └── TypeAnalysis.php │ │ │ ├── ArgumentsAnalyzer.php │ │ │ ├── AttributeAnalyzer.php │ │ │ ├── BlocksAnalyzer.php │ │ │ ├── ClassyAnalyzer.php │ │ │ ├── CommentsAnalyzer.php │ │ │ ├── ControlCaseStructuresAnalyzer.php │ │ │ ├── DataProviderAnalyzer.php │ │ │ ├── FunctionsAnalyzer.php │ │ │ ├── GotoLabelAnalyzer.php │ │ │ ├── NamespaceUsesAnalyzer.php │ │ │ ├── NamespacesAnalyzer.php │ │ │ ├── RangeAnalyzer.php │ │ │ ├── ReferenceAnalyzer.php │ │ │ └── WhitespacesAnalyzer.php │ │ ├── CT.php │ │ ├── CodeHasher.php │ │ ├── Token.php │ │ ├── Tokens.php │ │ ├── TokensAnalyzer.php │ │ ├── Transformer │ │ │ ├── ArrayTypehintTransformer.php │ │ │ ├── AttributeTransformer.php │ │ │ ├── BraceClassInstantiationTransformer.php │ │ │ ├── BraceTransformer.php │ │ │ ├── ClassConstantTransformer.php │ │ │ ├── ConstructorPromotionTransformer.php │ │ │ ├── DisjunctiveNormalFormTypeParenthesisTransformer.php │ │ │ ├── FirstClassCallableTransformer.php │ │ │ ├── ImportTransformer.php │ │ │ ├── NameQualifiedTransformer.php │ │ │ ├── NamedArgumentTransformer.php │ │ │ ├── NamespaceOperatorTransformer.php │ │ │ ├── NullableTypeTransformer.php │ │ │ ├── ReturnRefTransformer.php │ │ │ ├── SquareBraceTransformer.php │ │ │ ├── TypeAlternationTransformer.php │ │ │ ├── TypeColonTransformer.php │ │ │ ├── TypeIntersectionTransformer.php │ │ │ ├── UseTransformer.php │ │ │ └── WhitespacyCommentTransformer.php │ │ ├── TransformerInterface.php │ │ └── Transformers.php │ │ ├── ToolInfo.php │ │ ├── ToolInfoInterface.php │ │ ├── Utils.php │ │ ├── WhitespacesFixerConfig.php │ │ └── WordMatcher.php ├── fruitcake │ └── php-cors │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CorsService.php │ │ └── Exceptions │ │ └── InvalidOptionException.php ├── graham-campbell │ └── result-type │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── Error.php │ │ ├── Result.php │ │ └── Success.php ├── guzzlehttp │ ├── guzzle │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ └── src │ │ │ ├── BodySummarizer.php │ │ │ ├── BodySummarizerInterface.php │ │ │ ├── Client.php │ │ │ ├── ClientInterface.php │ │ │ ├── ClientTrait.php │ │ │ ├── Cookie │ │ │ ├── CookieJar.php │ │ │ ├── CookieJarInterface.php │ │ │ ├── FileCookieJar.php │ │ │ ├── SessionCookieJar.php │ │ │ └── SetCookie.php │ │ │ ├── Exception │ │ │ ├── BadResponseException.php │ │ │ ├── ClientException.php │ │ │ ├── ConnectException.php │ │ │ ├── GuzzleException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── RequestException.php │ │ │ ├── ServerException.php │ │ │ ├── TooManyRedirectsException.php │ │ │ └── TransferException.php │ │ │ ├── Handler │ │ │ ├── CurlFactory.php │ │ │ ├── CurlFactoryInterface.php │ │ │ ├── CurlHandler.php │ │ │ ├── CurlMultiHandler.php │ │ │ ├── EasyHandle.php │ │ │ ├── HeaderProcessor.php │ │ │ ├── MockHandler.php │ │ │ ├── Proxy.php │ │ │ └── StreamHandler.php │ │ │ ├── HandlerStack.php │ │ │ ├── MessageFormatter.php │ │ │ ├── MessageFormatterInterface.php │ │ │ ├── Middleware.php │ │ │ ├── Pool.php │ │ │ ├── PrepareBodyMiddleware.php │ │ │ ├── RedirectMiddleware.php │ │ │ ├── RequestOptions.php │ │ │ ├── RetryMiddleware.php │ │ │ ├── TransferStats.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ ├── promises │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AggregateException.php │ │ │ ├── CancellationException.php │ │ │ ├── Coroutine.php │ │ │ ├── Create.php │ │ │ ├── Each.php │ │ │ ├── EachPromise.php │ │ │ ├── FulfilledPromise.php │ │ │ ├── Is.php │ │ │ ├── Promise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── PromisorInterface.php │ │ │ ├── RejectedPromise.php │ │ │ ├── RejectionException.php │ │ │ ├── TaskQueue.php │ │ │ ├── TaskQueueInterface.php │ │ │ └── Utils.php │ ├── psr7 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AppendStream.php │ │ │ ├── BufferStream.php │ │ │ ├── CachingStream.php │ │ │ ├── DroppingStream.php │ │ │ ├── Exception │ │ │ └── MalformedUriException.php │ │ │ ├── FnStream.php │ │ │ ├── Header.php │ │ │ ├── HttpFactory.php │ │ │ ├── InflateStream.php │ │ │ ├── LazyOpenStream.php │ │ │ ├── LimitStream.php │ │ │ ├── Message.php │ │ │ ├── MessageTrait.php │ │ │ ├── MimeType.php │ │ │ ├── MultipartStream.php │ │ │ ├── NoSeekStream.php │ │ │ ├── PumpStream.php │ │ │ ├── Query.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Rfc7230.php │ │ │ ├── ServerRequest.php │ │ │ ├── Stream.php │ │ │ ├── StreamDecoratorTrait.php │ │ │ ├── StreamWrapper.php │ │ │ ├── UploadedFile.php │ │ │ ├── Uri.php │ │ │ ├── UriComparator.php │ │ │ ├── UriNormalizer.php │ │ │ ├── UriResolver.php │ │ │ └── Utils.php │ └── uri-template │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── UriTemplate.php ├── hamcrest │ └── hamcrest-php │ │ ├── .coveralls.yml │ │ ├── .github │ │ └── workflows │ │ │ └── tests.yml │ │ ├── .gitignore │ │ ├── .gush.yml │ │ ├── .travis.yml │ │ ├── CHANGES.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── generator │ │ ├── FactoryCall.php │ │ ├── FactoryClass.php │ │ ├── FactoryFile.php │ │ ├── FactoryGenerator.php │ │ ├── FactoryMethod.php │ │ ├── FactoryParameter.php │ │ ├── GlobalFunctionFile.php │ │ ├── StaticMethodFile.php │ │ ├── parts │ │ │ ├── file_header.txt │ │ │ ├── functions_footer.txt │ │ │ ├── functions_header.txt │ │ │ ├── functions_imports.txt │ │ │ ├── matchers_footer.txt │ │ │ ├── matchers_header.txt │ │ │ └── matchers_imports.txt │ │ └── run.php │ │ ├── hamcrest │ │ ├── Hamcrest.php │ │ └── Hamcrest │ │ │ ├── Arrays │ │ │ ├── IsArray.php │ │ │ ├── IsArrayContaining.php │ │ │ ├── IsArrayContainingInAnyOrder.php │ │ │ ├── IsArrayContainingInOrder.php │ │ │ ├── IsArrayContainingKey.php │ │ │ ├── IsArrayContainingKeyValuePair.php │ │ │ ├── IsArrayWithSize.php │ │ │ ├── MatchingOnce.php │ │ │ └── SeriesMatchingOnce.php │ │ │ ├── AssertionError.php │ │ │ ├── BaseDescription.php │ │ │ ├── BaseMatcher.php │ │ │ ├── Collection │ │ │ ├── IsEmptyTraversable.php │ │ │ └── IsTraversableWithSize.php │ │ │ ├── Core │ │ │ ├── AllOf.php │ │ │ ├── AnyOf.php │ │ │ ├── CombinableMatcher.php │ │ │ ├── DescribedAs.php │ │ │ ├── Every.php │ │ │ ├── HasToString.php │ │ │ ├── Is.php │ │ │ ├── IsAnything.php │ │ │ ├── IsCollectionContaining.php │ │ │ ├── IsEqual.php │ │ │ ├── IsIdentical.php │ │ │ ├── IsInstanceOf.php │ │ │ ├── IsNot.php │ │ │ ├── IsNull.php │ │ │ ├── IsSame.php │ │ │ ├── IsTypeOf.php │ │ │ ├── Set.php │ │ │ └── ShortcutCombination.php │ │ │ ├── Description.php │ │ │ ├── DiagnosingMatcher.php │ │ │ ├── FeatureMatcher.php │ │ │ ├── Internal │ │ │ └── SelfDescribingValue.php │ │ │ ├── Matcher.php │ │ │ ├── MatcherAssert.php │ │ │ ├── Matchers.php │ │ │ ├── NullDescription.php │ │ │ ├── Number │ │ │ ├── IsCloseTo.php │ │ │ └── OrderingComparison.php │ │ │ ├── SelfDescribing.php │ │ │ ├── StringDescription.php │ │ │ ├── Text │ │ │ ├── IsEmptyString.php │ │ │ ├── IsEqualIgnoringCase.php │ │ │ ├── IsEqualIgnoringWhiteSpace.php │ │ │ ├── MatchesPattern.php │ │ │ ├── StringContains.php │ │ │ ├── StringContainsIgnoringCase.php │ │ │ ├── StringContainsInOrder.php │ │ │ ├── StringEndsWith.php │ │ │ ├── StringStartsWith.php │ │ │ └── SubstringMatcher.php │ │ │ ├── Type │ │ │ ├── IsArray.php │ │ │ ├── IsBoolean.php │ │ │ ├── IsCallable.php │ │ │ ├── IsDouble.php │ │ │ ├── IsInteger.php │ │ │ ├── IsNumeric.php │ │ │ ├── IsObject.php │ │ │ ├── IsResource.php │ │ │ ├── IsScalar.php │ │ │ └── IsString.php │ │ │ ├── TypeSafeDiagnosingMatcher.php │ │ │ ├── TypeSafeMatcher.php │ │ │ ├── Util.php │ │ │ └── Xml │ │ │ └── HasXPath.php │ │ └── tests │ │ ├── Hamcrest │ │ ├── AbstractMatcherTest.php │ │ ├── Array │ │ │ ├── IsArrayContainingInAnyOrderTest.php │ │ │ ├── IsArrayContainingInOrderTest.php │ │ │ ├── IsArrayContainingKeyTest.php │ │ │ ├── IsArrayContainingKeyValuePairTest.php │ │ │ ├── IsArrayContainingTest.php │ │ │ ├── IsArrayTest.php │ │ │ └── IsArrayWithSizeTest.php │ │ ├── BaseMatcherTest.php │ │ ├── Collection │ │ │ ├── IsEmptyTraversableTest.php │ │ │ └── IsTraversableWithSizeTest.php │ │ ├── Core │ │ │ ├── AllOfTest.php │ │ │ ├── AnyOfTest.php │ │ │ ├── CombinableMatcherTest.php │ │ │ ├── DescribedAsTest.php │ │ │ ├── EveryTest.php │ │ │ ├── HasToStringTest.php │ │ │ ├── IsAnythingTest.php │ │ │ ├── IsCollectionContainingTest.php │ │ │ ├── IsEqualTest.php │ │ │ ├── IsIdenticalTest.php │ │ │ ├── IsInstanceOfTest.php │ │ │ ├── IsNotTest.php │ │ │ ├── IsNullTest.php │ │ │ ├── IsSameTest.php │ │ │ ├── IsTest.php │ │ │ ├── IsTypeOfTest.php │ │ │ ├── SampleBaseClass.php │ │ │ ├── SampleSubClass.php │ │ │ └── SetTest.php │ │ ├── FeatureMatcherTest.php │ │ ├── InvokedMatcherTest.php │ │ ├── MatcherAssertTest.php │ │ ├── Number │ │ │ ├── IsCloseToTest.php │ │ │ └── OrderingComparisonTest.php │ │ ├── StringDescriptionTest.php │ │ ├── Text │ │ │ ├── IsEmptyStringTest.php │ │ │ ├── IsEqualIgnoringCaseTest.php │ │ │ ├── IsEqualIgnoringWhiteSpaceTest.php │ │ │ ├── MatchesPatternTest.php │ │ │ ├── StringContainsIgnoringCaseTest.php │ │ │ ├── StringContainsInOrderTest.php │ │ │ ├── StringContainsTest.php │ │ │ ├── StringEndsWithTest.php │ │ │ └── StringStartsWithTest.php │ │ ├── Type │ │ │ ├── IsArrayTest.php │ │ │ ├── IsBooleanTest.php │ │ │ ├── IsCallableTest.php │ │ │ ├── IsDoubleTest.php │ │ │ ├── IsIntegerTest.php │ │ │ ├── IsNumericTest.php │ │ │ ├── IsObjectTest.php │ │ │ ├── IsResourceTest.php │ │ │ ├── IsScalarTest.php │ │ │ └── IsStringTest.php │ │ ├── UtilTest.php │ │ └── Xml │ │ │ └── HasXPathTest.php │ │ ├── bootstrap.php │ │ └── phpunit.xml.dist ├── intervention │ └── image │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── provides.json │ │ └── src │ │ ├── Intervention │ │ └── Image │ │ │ ├── AbstractColor.php │ │ │ ├── AbstractDecoder.php │ │ │ ├── AbstractDriver.php │ │ │ ├── AbstractEncoder.php │ │ │ ├── AbstractFont.php │ │ │ ├── AbstractShape.php │ │ │ ├── Commands │ │ │ ├── AbstractCommand.php │ │ │ ├── Argument.php │ │ │ ├── ChecksumCommand.php │ │ │ ├── CircleCommand.php │ │ │ ├── EllipseCommand.php │ │ │ ├── ExifCommand.php │ │ │ ├── IptcCommand.php │ │ │ ├── LineCommand.php │ │ │ ├── OrientateCommand.php │ │ │ ├── PolygonCommand.php │ │ │ ├── PsrResponseCommand.php │ │ │ ├── RectangleCommand.php │ │ │ ├── ResponseCommand.php │ │ │ ├── StreamCommand.php │ │ │ └── TextCommand.php │ │ │ ├── Constraint.php │ │ │ ├── Exception │ │ │ ├── ImageException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── MissingDependencyException.php │ │ │ ├── NotFoundException.php │ │ │ ├── NotReadableException.php │ │ │ ├── NotSupportedException.php │ │ │ ├── NotWritableException.php │ │ │ └── RuntimeException.php │ │ │ ├── Facades │ │ │ └── Image.php │ │ │ ├── File.php │ │ │ ├── Filters │ │ │ ├── DemoFilter.php │ │ │ └── FilterInterface.php │ │ │ ├── Gd │ │ │ ├── Color.php │ │ │ ├── Commands │ │ │ │ ├── BackupCommand.php │ │ │ │ ├── BlurCommand.php │ │ │ │ ├── BrightnessCommand.php │ │ │ │ ├── ColorizeCommand.php │ │ │ │ ├── ContrastCommand.php │ │ │ │ ├── CropCommand.php │ │ │ │ ├── DestroyCommand.php │ │ │ │ ├── FillCommand.php │ │ │ │ ├── FitCommand.php │ │ │ │ ├── FlipCommand.php │ │ │ │ ├── GammaCommand.php │ │ │ │ ├── GetSizeCommand.php │ │ │ │ ├── GreyscaleCommand.php │ │ │ │ ├── HeightenCommand.php │ │ │ │ ├── InsertCommand.php │ │ │ │ ├── InterlaceCommand.php │ │ │ │ ├── InvertCommand.php │ │ │ │ ├── LimitColorsCommand.php │ │ │ │ ├── MaskCommand.php │ │ │ │ ├── OpacityCommand.php │ │ │ │ ├── PickColorCommand.php │ │ │ │ ├── PixelCommand.php │ │ │ │ ├── PixelateCommand.php │ │ │ │ ├── ResetCommand.php │ │ │ │ ├── ResizeCanvasCommand.php │ │ │ │ ├── ResizeCommand.php │ │ │ │ ├── RotateCommand.php │ │ │ │ ├── SharpenCommand.php │ │ │ │ ├── TrimCommand.php │ │ │ │ └── WidenCommand.php │ │ │ ├── Decoder.php │ │ │ ├── Driver.php │ │ │ ├── Encoder.php │ │ │ ├── Font.php │ │ │ └── Shapes │ │ │ │ ├── CircleShape.php │ │ │ │ ├── EllipseShape.php │ │ │ │ ├── LineShape.php │ │ │ │ ├── PolygonShape.php │ │ │ │ └── RectangleShape.php │ │ │ ├── Image.php │ │ │ ├── ImageManager.php │ │ │ ├── ImageManagerStatic.php │ │ │ ├── ImageServiceProvider.php │ │ │ ├── ImageServiceProviderLaravel4.php │ │ │ ├── ImageServiceProviderLaravelRecent.php │ │ │ ├── ImageServiceProviderLeague.php │ │ │ ├── ImageServiceProviderLumen.php │ │ │ ├── Imagick │ │ │ ├── Color.php │ │ │ ├── Commands │ │ │ │ ├── BackupCommand.php │ │ │ │ ├── BlurCommand.php │ │ │ │ ├── BrightnessCommand.php │ │ │ │ ├── ColorizeCommand.php │ │ │ │ ├── ContrastCommand.php │ │ │ │ ├── CropCommand.php │ │ │ │ ├── DestroyCommand.php │ │ │ │ ├── ExifCommand.php │ │ │ │ ├── FillCommand.php │ │ │ │ ├── FitCommand.php │ │ │ │ ├── FlipCommand.php │ │ │ │ ├── GammaCommand.php │ │ │ │ ├── GetSizeCommand.php │ │ │ │ ├── GreyscaleCommand.php │ │ │ │ ├── HeightenCommand.php │ │ │ │ ├── InsertCommand.php │ │ │ │ ├── InterlaceCommand.php │ │ │ │ ├── InvertCommand.php │ │ │ │ ├── LimitColorsCommand.php │ │ │ │ ├── MaskCommand.php │ │ │ │ ├── OpacityCommand.php │ │ │ │ ├── PickColorCommand.php │ │ │ │ ├── PixelCommand.php │ │ │ │ ├── PixelateCommand.php │ │ │ │ ├── ResetCommand.php │ │ │ │ ├── ResizeCanvasCommand.php │ │ │ │ ├── ResizeCommand.php │ │ │ │ ├── RotateCommand.php │ │ │ │ ├── SharpenCommand.php │ │ │ │ ├── TrimCommand.php │ │ │ │ └── WidenCommand.php │ │ │ ├── Decoder.php │ │ │ ├── Driver.php │ │ │ ├── Encoder.php │ │ │ ├── Font.php │ │ │ └── Shapes │ │ │ │ ├── CircleShape.php │ │ │ │ ├── EllipseShape.php │ │ │ │ ├── LineShape.php │ │ │ │ ├── PolygonShape.php │ │ │ │ └── RectangleShape.php │ │ │ ├── Point.php │ │ │ ├── Response.php │ │ │ └── Size.php │ │ └── config │ │ └── config.php ├── jaybizzle │ └── crawler-detect │ │ ├── .github │ │ └── workflows │ │ │ ├── php-cs-fixer.yml │ │ │ └── test.yml │ │ ├── .php_cs.dist │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── export.php │ │ ├── raw │ │ ├── Crawlers.json │ │ ├── Crawlers.txt │ │ ├── Exclusions.json │ │ ├── Exclusions.txt │ │ ├── Headers.json │ │ └── Headers.txt │ │ └── src │ │ ├── CrawlerDetect.php │ │ └── Fixtures │ │ ├── AbstractProvider.php │ │ ├── Crawlers.php │ │ ├── Exclusions.php │ │ └── Headers.php ├── jenssegers │ └── agent │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Agent.php │ │ ├── AgentServiceProvider.php │ │ └── Facades │ │ └── Agent.php ├── kirschbaum-development │ └── eloquent-power-joins │ │ ├── .github │ │ └── workflows │ │ │ └── ci.yaml │ │ ├── .php_cs │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ └── config.php │ │ ├── screenshots │ │ ├── eloquent-power-joins.jpg │ │ └── mysql-cpu-graph.png │ │ └── src │ │ ├── EloquentJoins.php │ │ ├── FakeJoinCallback.php │ │ ├── JoinsHelper.php │ │ ├── Mixins │ │ ├── JoinRelationship.php │ │ ├── QueryBuilderExtraMethods.php │ │ ├── QueryRelationshipExistence.php │ │ └── RelationshipsExtraMethods.php │ │ ├── PowerJoinClause.php │ │ ├── PowerJoins.php │ │ ├── PowerJoinsServiceProvider.php │ │ └── StaticCache.php ├── laravel-lang │ ├── attributes │ │ ├── .run │ │ │ ├── build.run.xml │ │ │ └── dev.run.xml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── locales │ │ │ ├── af │ │ │ │ └── php.json │ │ │ ├── ar │ │ │ │ └── php.json │ │ │ ├── az │ │ │ │ └── php.json │ │ │ ├── be │ │ │ │ └── php.json │ │ │ ├── bg │ │ │ │ └── php.json │ │ │ ├── bn │ │ │ │ └── php.json │ │ │ ├── bs │ │ │ │ └── php.json │ │ │ ├── ca │ │ │ │ └── php.json │ │ │ ├── cs │ │ │ │ └── php.json │ │ │ ├── cy │ │ │ │ └── php.json │ │ │ ├── da │ │ │ │ └── php.json │ │ │ ├── de │ │ │ │ └── php.json │ │ │ ├── de_CH │ │ │ │ └── php.json │ │ │ ├── el │ │ │ │ └── php.json │ │ │ ├── en │ │ │ │ └── php.json │ │ │ ├── es │ │ │ │ └── php.json │ │ │ ├── et │ │ │ │ └── php.json │ │ │ ├── eu │ │ │ │ └── php.json │ │ │ ├── fa │ │ │ │ └── php.json │ │ │ ├── fi │ │ │ │ └── php.json │ │ │ ├── fil │ │ │ │ └── php.json │ │ │ ├── fr │ │ │ │ └── php.json │ │ │ ├── gl │ │ │ │ └── php.json │ │ │ ├── gu │ │ │ │ └── php.json │ │ │ ├── he │ │ │ │ └── php.json │ │ │ ├── hi │ │ │ │ └── php.json │ │ │ ├── hr │ │ │ │ └── php.json │ │ │ ├── hu │ │ │ │ └── php.json │ │ │ ├── hy │ │ │ │ └── php.json │ │ │ ├── id │ │ │ │ └── php.json │ │ │ ├── is │ │ │ │ └── php.json │ │ │ ├── it │ │ │ │ └── php.json │ │ │ ├── ja │ │ │ │ └── php.json │ │ │ ├── ka │ │ │ │ └── php.json │ │ │ ├── kk │ │ │ │ └── php.json │ │ │ ├── km │ │ │ │ └── php.json │ │ │ ├── kn │ │ │ │ └── php.json │ │ │ ├── ko │ │ │ │ └── php.json │ │ │ ├── lt │ │ │ │ └── php.json │ │ │ ├── lv │ │ │ │ └── php.json │ │ │ ├── mk │ │ │ │ └── php.json │ │ │ ├── mn │ │ │ │ └── php.json │ │ │ ├── mr │ │ │ │ └── php.json │ │ │ ├── ms │ │ │ │ └── php.json │ │ │ ├── nb │ │ │ │ └── php.json │ │ │ ├── ne │ │ │ │ └── php.json │ │ │ ├── nl │ │ │ │ └── php.json │ │ │ ├── nn │ │ │ │ └── php.json │ │ │ ├── oc │ │ │ │ └── php.json │ │ │ ├── pl │ │ │ │ └── php.json │ │ │ ├── ps │ │ │ │ └── php.json │ │ │ ├── pt │ │ │ │ └── php.json │ │ │ ├── pt_BR │ │ │ │ └── php.json │ │ │ ├── ro │ │ │ │ └── php.json │ │ │ ├── ru │ │ │ │ └── php.json │ │ │ ├── sc │ │ │ │ └── php.json │ │ │ ├── si │ │ │ │ └── php.json │ │ │ ├── sk │ │ │ │ └── php.json │ │ │ ├── sl │ │ │ │ └── php.json │ │ │ ├── sq │ │ │ │ └── php.json │ │ │ ├── sr_Cyrl │ │ │ │ └── php.json │ │ │ ├── sr_Latn │ │ │ │ └── php.json │ │ │ ├── sr_Latn_ME │ │ │ │ └── php.json │ │ │ ├── sv │ │ │ │ └── php.json │ │ │ ├── sw │ │ │ │ └── php.json │ │ │ ├── tg │ │ │ │ └── php.json │ │ │ ├── th │ │ │ │ └── php.json │ │ │ ├── tk │ │ │ │ └── php.json │ │ │ ├── tl │ │ │ │ └── php.json │ │ │ ├── tr │ │ │ │ └── php.json │ │ │ ├── ug │ │ │ │ └── php.json │ │ │ ├── uk │ │ │ │ └── php.json │ │ │ ├── ur │ │ │ │ └── php.json │ │ │ ├── uz_Cyrl │ │ │ │ └── php.json │ │ │ ├── uz_Latn │ │ │ │ └── php.json │ │ │ ├── vi │ │ │ │ └── php.json │ │ │ ├── zh_CN │ │ │ │ └── php.json │ │ │ ├── zh_HK │ │ │ │ └── php.json │ │ │ └── zh_TW │ │ │ │ └── php.json │ │ ├── source │ │ │ └── validation.php │ │ └── src │ │ │ ├── Plugin.php │ │ │ ├── Plugins │ │ │ ├── Laravel.php │ │ │ └── Lumen.php │ │ │ └── ServiceProvider.php │ ├── common │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ ├── http-statuses │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── locales │ │ │ ├── af │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── ar │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── az │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── be │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── bg │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── bn │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── bs │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── ca │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── cs │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── cy │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── da │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── de │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── de_CH │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── el │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── en │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── es │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── et │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── eu │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── fa │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── fi │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── fil │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── fr │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── gl │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── gu │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── he │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── hi │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── hr │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── hu │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── hy │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── id │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── is │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── it │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── ja │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── ka │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── kk │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── km │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── kn │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── ko │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── lt │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── lv │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── mk │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── mn │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── mr │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── ms │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── nb │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── ne │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── nl │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── nn │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── oc │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── pl │ │ │ │ ├── _excludes.json │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── ps │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── pt │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── pt_BR │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── ro │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── ru │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── sc │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── si │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── sk │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── sl │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── sq │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── sr_Cyrl │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── sr_Latn │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── sr_Latn_ME │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── sv │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── sw │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── tg │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── th │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── tk │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── tl │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── tr │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── ug │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── uk │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── ur │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── uz_Cyrl │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── uz_Latn │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── vi │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── zh_CN │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ ├── zh_HK │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ │ └── zh_TW │ │ │ │ ├── json.json │ │ │ │ └── php.json │ │ ├── source │ │ │ ├── numerical.php │ │ │ └── textual.json │ │ └── src │ │ │ ├── Plugin.php │ │ │ ├── Plugins │ │ │ └── Main.php │ │ │ └── ServiceProvider.php │ ├── lang │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── locales │ │ │ ├── af │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── ar │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── az │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── be │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── bg │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── bn │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── bs │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── ca │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── cs │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── cy │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── da │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── de │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── de_CH │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── el │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── en │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── es │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── et │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── eu │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── fa │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── fi │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── fil │ │ │ │ ├── _excludes.json │ │ │ │ ├── _not_translatable.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── fr │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── gl │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── gu │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── he │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── hi │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── hr │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── hu │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── hy │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── id │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── is │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── it │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── ja │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── ka │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── kk │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── km │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── kn │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── ko │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── lt │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── lv │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── mk │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── mn │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── mr │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── ms │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── nb │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── ne │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── nl │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── nn │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── oc │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── pl │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── ps │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── pt │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── pt_BR │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── ro │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── ru │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── sc │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── si │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── sk │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── sl │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── sq │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── sr_Cyrl │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── sr_Latn │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── sr_Latn_ME │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── sv │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── sw │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── tg │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── th │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── tk │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── tl │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── tr │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── ug │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── uk │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── ur │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── uz_Cyrl │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── uz_Latn │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── vi │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── zh_CN │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ ├── zh_HK │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ │ └── zh_TW │ │ │ │ ├── _excludes.json │ │ │ │ ├── json-inline.json │ │ │ │ ├── json.json │ │ │ │ ├── php-inline.json │ │ │ │ └── php.json │ │ ├── source │ │ │ ├── breeze │ │ │ │ ├── 1.x │ │ │ │ │ └── breeze.json │ │ │ │ └── master │ │ │ │ │ └── breeze.json │ │ │ ├── cashier │ │ │ │ └── stripe │ │ │ │ │ ├── 13.x │ │ │ │ │ └── stripe.json │ │ │ │ │ ├── 14.x │ │ │ │ │ └── stripe.json │ │ │ │ │ └── master │ │ │ │ │ └── stripe.json │ │ │ ├── fortify │ │ │ │ ├── 1.x │ │ │ │ │ └── fortify.json │ │ │ │ └── master │ │ │ │ │ └── fortify.json │ │ │ ├── framework │ │ │ │ ├── 10.x │ │ │ │ │ ├── auth.php │ │ │ │ │ ├── framework.json │ │ │ │ │ ├── pagination.php │ │ │ │ │ ├── passwords.php │ │ │ │ │ └── validation.php │ │ │ │ ├── extended.json │ │ │ │ └── master │ │ │ │ │ ├── auth.php │ │ │ │ │ ├── framework.json │ │ │ │ │ ├── pagination.php │ │ │ │ │ ├── passwords.php │ │ │ │ │ └── validation.php │ │ │ ├── jetstream │ │ │ │ ├── 2.x │ │ │ │ │ └── jetstream.json │ │ │ │ ├── 3.x │ │ │ │ │ └── jetstream.json │ │ │ │ ├── 4.x │ │ │ │ │ └── jetstream.json │ │ │ │ ├── extended.json │ │ │ │ └── master │ │ │ │ │ └── jetstream.json │ │ │ ├── lumen-framework │ │ │ │ ├── 10.x │ │ │ │ │ └── validation.php │ │ │ │ ├── extended.json │ │ │ │ └── master │ │ │ │ │ └── validation.php │ │ │ ├── nova │ │ │ │ ├── 4.x │ │ │ │ │ ├── nova.json │ │ │ │ │ └── validation.php │ │ │ │ ├── dusk-suite │ │ │ │ │ └── master │ │ │ │ │ │ ├── dusk-suite.json │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ └── validation.php │ │ │ │ └── log-viewer │ │ │ │ │ └── main │ │ │ │ │ └── log-viewer.json │ │ │ ├── spark │ │ │ │ ├── aurelius-mollie │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── teams.php │ │ │ │ │ │ └── validation.php │ │ │ │ ├── aurelius │ │ │ │ │ ├── 11.x │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── teams.php │ │ │ │ │ │ └── validation.php │ │ │ │ │ ├── 12.x │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── teams.php │ │ │ │ │ │ └── validation.php │ │ │ │ │ └── master │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── teams.php │ │ │ │ │ │ └── validation.php │ │ │ │ ├── spark-paddle.json │ │ │ │ └── spark-stripe.json │ │ │ └── ui │ │ │ │ ├── 4.x │ │ │ │ └── ui.json │ │ │ │ └── master │ │ │ │ └── ui.json │ │ └── src │ │ │ ├── Plugin.php │ │ │ ├── Plugins │ │ │ ├── Breeze │ │ │ │ ├── Master.php │ │ │ │ └── V1.php │ │ │ ├── Cashier │ │ │ │ └── Stripe │ │ │ │ │ ├── Master.php │ │ │ │ │ ├── V13.php │ │ │ │ │ └── V14.php │ │ │ ├── Fortify │ │ │ │ ├── Master.php │ │ │ │ └── V1.php │ │ │ ├── Jetstream │ │ │ │ ├── Master.php │ │ │ │ ├── V2.php │ │ │ │ ├── V3.php │ │ │ │ └── V4.php │ │ │ ├── Laravel │ │ │ │ ├── Master.php │ │ │ │ └── V10.php │ │ │ ├── Lumen │ │ │ │ ├── Master.php │ │ │ │ └── V10.php │ │ │ ├── Nova │ │ │ │ ├── DuskSuite │ │ │ │ │ └── Main.php │ │ │ │ ├── LogViewer │ │ │ │ │ └── Main.php │ │ │ │ └── V4.php │ │ │ ├── Spark │ │ │ │ ├── Aurelius │ │ │ │ │ ├── Master.php │ │ │ │ │ ├── V11.php │ │ │ │ │ └── V12.php │ │ │ │ ├── AureliusMollie │ │ │ │ │ └── V2.php │ │ │ │ ├── Paddle.php │ │ │ │ └── Stripe.php │ │ │ └── UI │ │ │ │ ├── Master.php │ │ │ │ └── V4.php │ │ │ └── ServiceProvider.php │ ├── locales │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ │ ├── private.php │ │ │ └── public.php │ │ └── src │ │ │ ├── Concerns │ │ │ ├── About.php │ │ │ ├── Aliases.php │ │ │ ├── Localized.php │ │ │ ├── Mapping.php │ │ │ ├── Pathable.php │ │ │ └── Registry.php │ │ │ ├── Data │ │ │ ├── LocaleData.php │ │ │ └── NativeData.php │ │ │ ├── Enums │ │ │ ├── Config.php │ │ │ └── Locale.php │ │ │ ├── Facades │ │ │ └── Locales.php │ │ │ ├── ServiceProvider.php │ │ │ └── Services │ │ │ ├── Locales.php │ │ │ ├── RawLocales.php │ │ │ └── Resolver.php │ ├── native-locale-names │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ ├── status.md │ │ │ └── statuses │ │ │ │ ├── _combined.md │ │ │ │ ├── af.md │ │ │ │ ├── ar.md │ │ │ │ ├── az.md │ │ │ │ ├── be.md │ │ │ │ ├── bg.md │ │ │ │ ├── bn.md │ │ │ │ ├── bs.md │ │ │ │ ├── ca.md │ │ │ │ ├── cs.md │ │ │ │ ├── cy.md │ │ │ │ ├── da.md │ │ │ │ ├── de.md │ │ │ │ ├── de_CH.md │ │ │ │ ├── el.md │ │ │ │ ├── es.md │ │ │ │ ├── et.md │ │ │ │ ├── eu.md │ │ │ │ ├── fa.md │ │ │ │ ├── fi.md │ │ │ │ ├── fil.md │ │ │ │ ├── fr.md │ │ │ │ ├── gl.md │ │ │ │ ├── gu.md │ │ │ │ ├── he.md │ │ │ │ ├── hi.md │ │ │ │ ├── hr.md │ │ │ │ ├── hu.md │ │ │ │ ├── hy.md │ │ │ │ ├── id.md │ │ │ │ ├── is.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ka.md │ │ │ │ ├── kk.md │ │ │ │ ├── km.md │ │ │ │ ├── kn.md │ │ │ │ ├── ko.md │ │ │ │ ├── lt.md │ │ │ │ ├── lv.md │ │ │ │ ├── mk.md │ │ │ │ ├── mn.md │ │ │ │ ├── mr.md │ │ │ │ ├── ms.md │ │ │ │ ├── nb.md │ │ │ │ ├── ne.md │ │ │ │ ├── nl.md │ │ │ │ ├── nn.md │ │ │ │ ├── oc.md │ │ │ │ ├── pl.md │ │ │ │ ├── ps.md │ │ │ │ ├── pt.md │ │ │ │ ├── pt_BR.md │ │ │ │ ├── ro.md │ │ │ │ ├── ru.md │ │ │ │ ├── sc.md │ │ │ │ ├── si.md │ │ │ │ ├── sk.md │ │ │ │ ├── sl.md │ │ │ │ ├── sq.md │ │ │ │ ├── sr_Cyrl.md │ │ │ │ ├── sr_Latn.md │ │ │ │ ├── sr_Latn_ME.md │ │ │ │ ├── sv.md │ │ │ │ ├── sw.md │ │ │ │ ├── tg.md │ │ │ │ ├── th.md │ │ │ │ ├── tk.md │ │ │ │ ├── tl.md │ │ │ │ ├── tr.md │ │ │ │ ├── ug.md │ │ │ │ ├── uk.md │ │ │ │ ├── ur.md │ │ │ │ ├── uz_Cyrl.md │ │ │ │ ├── uz_Latn.md │ │ │ │ ├── vi.md │ │ │ │ ├── zh_CN.md │ │ │ │ ├── zh_HK.md │ │ │ │ └── zh_TW.md │ │ ├── locales │ │ │ ├── _combined │ │ │ │ └── json.json │ │ │ ├── af │ │ │ │ └── json.json │ │ │ ├── ar │ │ │ │ └── json.json │ │ │ ├── az │ │ │ │ └── json.json │ │ │ ├── be │ │ │ │ └── json.json │ │ │ ├── bg │ │ │ │ └── json.json │ │ │ ├── bn │ │ │ │ └── json.json │ │ │ ├── bs │ │ │ │ └── json.json │ │ │ ├── ca │ │ │ │ └── json.json │ │ │ ├── cs │ │ │ │ └── json.json │ │ │ ├── cy │ │ │ │ └── json.json │ │ │ ├── da │ │ │ │ └── json.json │ │ │ ├── de │ │ │ │ └── json.json │ │ │ ├── de_CH │ │ │ │ └── json.json │ │ │ ├── el │ │ │ │ └── json.json │ │ │ ├── en │ │ │ │ └── json.json │ │ │ ├── es │ │ │ │ └── json.json │ │ │ ├── et │ │ │ │ └── json.json │ │ │ ├── eu │ │ │ │ └── json.json │ │ │ ├── fa │ │ │ │ └── json.json │ │ │ ├── fi │ │ │ │ └── json.json │ │ │ ├── fil │ │ │ │ └── json.json │ │ │ ├── fr │ │ │ │ └── json.json │ │ │ ├── gl │ │ │ │ └── json.json │ │ │ ├── gu │ │ │ │ └── json.json │ │ │ ├── he │ │ │ │ └── json.json │ │ │ ├── hi │ │ │ │ └── json.json │ │ │ ├── hr │ │ │ │ └── json.json │ │ │ ├── hu │ │ │ │ └── json.json │ │ │ ├── hy │ │ │ │ └── json.json │ │ │ ├── id │ │ │ │ └── json.json │ │ │ ├── is │ │ │ │ └── json.json │ │ │ ├── it │ │ │ │ └── json.json │ │ │ ├── ja │ │ │ │ └── json.json │ │ │ ├── ka │ │ │ │ └── json.json │ │ │ ├── kk │ │ │ │ └── json.json │ │ │ ├── km │ │ │ │ └── json.json │ │ │ ├── kn │ │ │ │ └── json.json │ │ │ ├── ko │ │ │ │ └── json.json │ │ │ ├── lt │ │ │ │ └── json.json │ │ │ ├── lv │ │ │ │ └── json.json │ │ │ ├── mk │ │ │ │ └── json.json │ │ │ ├── mn │ │ │ │ └── json.json │ │ │ ├── mr │ │ │ │ └── json.json │ │ │ ├── ms │ │ │ │ └── json.json │ │ │ ├── nb │ │ │ │ └── json.json │ │ │ ├── ne │ │ │ │ └── json.json │ │ │ ├── nl │ │ │ │ └── json.json │ │ │ ├── nn │ │ │ │ └── json.json │ │ │ ├── oc │ │ │ │ └── json.json │ │ │ ├── pl │ │ │ │ └── json.json │ │ │ ├── ps │ │ │ │ └── json.json │ │ │ ├── pt │ │ │ │ └── json.json │ │ │ ├── pt_BR │ │ │ │ └── json.json │ │ │ ├── ro │ │ │ │ └── json.json │ │ │ ├── ru │ │ │ │ └── json.json │ │ │ ├── sc │ │ │ │ └── json.json │ │ │ ├── si │ │ │ │ └── json.json │ │ │ ├── sk │ │ │ │ └── json.json │ │ │ ├── sl │ │ │ │ └── json.json │ │ │ ├── sq │ │ │ │ └── json.json │ │ │ ├── sr_Cyrl │ │ │ │ └── json.json │ │ │ ├── sr_Latn │ │ │ │ └── json.json │ │ │ ├── sr_Latn_ME │ │ │ │ └── json.json │ │ │ ├── sv │ │ │ │ └── json.json │ │ │ ├── sw │ │ │ │ └── json.json │ │ │ ├── tg │ │ │ │ └── json.json │ │ │ ├── th │ │ │ │ └── json.json │ │ │ ├── tk │ │ │ │ └── json.json │ │ │ ├── tl │ │ │ │ └── json.json │ │ │ ├── tr │ │ │ │ └── json.json │ │ │ ├── ug │ │ │ │ └── json.json │ │ │ ├── uk │ │ │ │ └── json.json │ │ │ ├── ur │ │ │ │ └── json.json │ │ │ ├── uz_Cyrl │ │ │ │ └── json.json │ │ │ ├── uz_Latn │ │ │ │ └── json.json │ │ │ ├── vi │ │ │ │ └── json.json │ │ │ ├── zh_CN │ │ │ │ └── json.json │ │ │ ├── zh_HK │ │ │ │ └── json.json │ │ │ └── zh_TW │ │ │ │ └── json.json │ │ ├── source │ │ │ └── locales.json │ │ └── src │ │ │ ├── Enums │ │ │ └── SortBy.php │ │ │ ├── Helpers │ │ │ ├── Arr.php │ │ │ └── Path.php │ │ │ └── Native.php │ └── publisher │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ ├── private.php │ │ └── public.php │ │ ├── helper.php │ │ ├── pint.json │ │ └── src │ │ ├── Concerns │ │ ├── About.php │ │ ├── Aliases.php │ │ ├── Decorator.php │ │ ├── Has.php │ │ ├── Output.php │ │ └── Path.php │ │ ├── Console │ │ ├── Add.php │ │ ├── Base.php │ │ ├── Remove.php │ │ ├── Reset.php │ │ └── Update.php │ │ ├── Constants │ │ ├── Locales.php │ │ └── Types.php │ │ ├── Exceptions │ │ ├── BaseException.php │ │ ├── ProtectedLocaleException.php │ │ ├── UnknownLocaleCodeException.php │ │ └── UnknownPluginInstanceException.php │ │ ├── Facades │ │ └── Helpers │ │ │ └── Locales.php │ │ ├── Helpers │ │ ├── Arr.php │ │ ├── Config.php │ │ └── Locales.php │ │ ├── Plugins │ │ ├── Plugin.php │ │ └── Provider.php │ │ ├── Processors │ │ ├── Add.php │ │ ├── Processor.php │ │ ├── Remove.php │ │ ├── Reset.php │ │ └── Update.php │ │ ├── Resources │ │ └── Translation.php │ │ ├── ServiceProvider.php │ │ ├── Services │ │ ├── Converters │ │ │ ├── Extensions │ │ │ │ └── SmartPunctExtension.php │ │ │ └── Text │ │ │ │ ├── BaseDecorator.php │ │ │ │ ├── CommonDecorator.php │ │ │ │ └── SmartPunctuationDecorator.php │ │ ├── Filesystem │ │ │ ├── Base.php │ │ │ ├── Json.php │ │ │ ├── Manager.php │ │ │ └── Php.php │ │ └── Renderer │ │ │ └── ParagraphRenderer.php │ │ └── TextDecorator.php ├── laravel │ ├── breeze │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── src │ │ │ ├── BreezeServiceProvider.php │ │ │ └── Console │ │ │ │ ├── InstallCommand.php │ │ │ │ ├── InstallsApiStack.php │ │ │ │ ├── InstallsBladeStack.php │ │ │ │ ├── InstallsInertiaStacks.php │ │ │ │ └── InstallsLivewireStack.php │ │ └── stubs │ │ │ ├── api │ │ │ ├── App │ │ │ │ ├── Http │ │ │ │ │ ├── Controllers │ │ │ │ │ │ └── Auth │ │ │ │ │ │ │ ├── AuthenticatedSessionController.php │ │ │ │ │ │ │ ├── EmailVerificationNotificationController.php │ │ │ │ │ │ │ ├── NewPasswordController.php │ │ │ │ │ │ │ ├── PasswordResetLinkController.php │ │ │ │ │ │ │ ├── RegisteredUserController.php │ │ │ │ │ │ │ └── VerifyEmailController.php │ │ │ │ │ ├── Middleware │ │ │ │ │ │ └── EnsureEmailIsVerified.php │ │ │ │ │ └── Requests │ │ │ │ │ │ └── Auth │ │ │ │ │ │ └── LoginRequest.php │ │ │ │ └── Providers │ │ │ │ │ └── AuthServiceProvider.php │ │ │ ├── config │ │ │ │ ├── cors.php │ │ │ │ └── sanctum.php │ │ │ ├── pest-tests │ │ │ │ ├── Feature │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── AuthenticationTest.php │ │ │ │ │ │ ├── EmailVerificationTest.php │ │ │ │ │ │ ├── PasswordResetTest.php │ │ │ │ │ │ └── RegistrationTest.php │ │ │ │ │ └── ExampleTest.php │ │ │ │ ├── Pest.php │ │ │ │ └── Unit │ │ │ │ │ └── ExampleTest.php │ │ │ ├── routes │ │ │ │ ├── api.php │ │ │ │ ├── auth.php │ │ │ │ └── web.php │ │ │ └── tests │ │ │ │ └── Feature │ │ │ │ └── Auth │ │ │ │ ├── AuthenticationTest.php │ │ │ │ ├── EmailVerificationTest.php │ │ │ │ ├── PasswordResetTest.php │ │ │ │ └── RegistrationTest.php │ │ │ ├── default │ │ │ ├── App │ │ │ │ ├── Http │ │ │ │ │ ├── Controllers │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ │ ├── AuthenticatedSessionController.php │ │ │ │ │ │ │ ├── ConfirmablePasswordController.php │ │ │ │ │ │ │ ├── EmailVerificationNotificationController.php │ │ │ │ │ │ │ ├── EmailVerificationPromptController.php │ │ │ │ │ │ │ ├── NewPasswordController.php │ │ │ │ │ │ │ ├── PasswordController.php │ │ │ │ │ │ │ ├── PasswordResetLinkController.php │ │ │ │ │ │ │ ├── RegisteredUserController.php │ │ │ │ │ │ │ └── VerifyEmailController.php │ │ │ │ │ │ └── ProfileController.php │ │ │ │ │ └── Requests │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ └── LoginRequest.php │ │ │ │ │ │ └── ProfileUpdateRequest.php │ │ │ │ └── View │ │ │ │ │ └── Components │ │ │ │ │ ├── AppLayout.php │ │ │ │ │ └── GuestLayout.php │ │ │ ├── pest-tests │ │ │ │ ├── Feature │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── AuthenticationTest.php │ │ │ │ │ │ ├── EmailVerificationTest.php │ │ │ │ │ │ ├── PasswordConfirmationTest.php │ │ │ │ │ │ ├── PasswordResetTest.php │ │ │ │ │ │ ├── PasswordUpdateTest.php │ │ │ │ │ │ └── RegistrationTest.php │ │ │ │ │ ├── ExampleTest.php │ │ │ │ │ └── ProfileTest.php │ │ │ │ ├── Pest.php │ │ │ │ └── Unit │ │ │ │ │ └── ExampleTest.php │ │ │ ├── postcss.config.js │ │ │ ├── resources │ │ │ │ ├── css │ │ │ │ │ └── app.css │ │ │ │ ├── js │ │ │ │ │ └── app.js │ │ │ │ └── views │ │ │ │ │ ├── auth │ │ │ │ │ ├── confirm-password.blade.php │ │ │ │ │ ├── forgot-password.blade.php │ │ │ │ │ ├── login.blade.php │ │ │ │ │ ├── register.blade.php │ │ │ │ │ ├── reset-password.blade.php │ │ │ │ │ └── verify-email.blade.php │ │ │ │ │ ├── components │ │ │ │ │ ├── application-logo.blade.php │ │ │ │ │ ├── auth-session-status.blade.php │ │ │ │ │ ├── danger-button.blade.php │ │ │ │ │ ├── dropdown-link.blade.php │ │ │ │ │ ├── dropdown.blade.php │ │ │ │ │ ├── input-error.blade.php │ │ │ │ │ ├── input-label.blade.php │ │ │ │ │ ├── modal.blade.php │ │ │ │ │ ├── nav-link.blade.php │ │ │ │ │ ├── primary-button.blade.php │ │ │ │ │ ├── responsive-nav-link.blade.php │ │ │ │ │ ├── secondary-button.blade.php │ │ │ │ │ └── text-input.blade.php │ │ │ │ │ ├── dashboard.blade.php │ │ │ │ │ ├── layouts │ │ │ │ │ ├── app.blade.php │ │ │ │ │ ├── guest.blade.php │ │ │ │ │ └── navigation.blade.php │ │ │ │ │ └── profile │ │ │ │ │ ├── edit.blade.php │ │ │ │ │ └── partials │ │ │ │ │ ├── delete-user-form.blade.php │ │ │ │ │ ├── update-password-form.blade.php │ │ │ │ │ └── update-profile-information-form.blade.php │ │ │ ├── routes │ │ │ │ ├── auth.php │ │ │ │ └── web.php │ │ │ ├── tailwind.config.js │ │ │ ├── tests │ │ │ │ └── Feature │ │ │ │ │ ├── Auth │ │ │ │ │ ├── AuthenticationTest.php │ │ │ │ │ ├── EmailVerificationTest.php │ │ │ │ │ ├── PasswordConfirmationTest.php │ │ │ │ │ ├── PasswordResetTest.php │ │ │ │ │ ├── PasswordUpdateTest.php │ │ │ │ │ └── RegistrationTest.php │ │ │ │ │ └── ProfileTest.php │ │ │ └── vite.config.js │ │ │ ├── inertia-common │ │ │ ├── app │ │ │ │ └── Http │ │ │ │ │ ├── Controllers │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── AuthenticatedSessionController.php │ │ │ │ │ │ ├── ConfirmablePasswordController.php │ │ │ │ │ │ ├── EmailVerificationNotificationController.php │ │ │ │ │ │ ├── EmailVerificationPromptController.php │ │ │ │ │ │ ├── NewPasswordController.php │ │ │ │ │ │ ├── PasswordController.php │ │ │ │ │ │ ├── PasswordResetLinkController.php │ │ │ │ │ │ ├── RegisteredUserController.php │ │ │ │ │ │ └── VerifyEmailController.php │ │ │ │ │ └── ProfileController.php │ │ │ │ │ └── Middleware │ │ │ │ │ └── HandleInertiaRequests.php │ │ │ ├── jsconfig.json │ │ │ ├── pest-tests │ │ │ │ └── Feature │ │ │ │ │ ├── Auth │ │ │ │ │ └── PasswordUpdateTest.php │ │ │ │ │ └── ProfileTest.php │ │ │ ├── routes │ │ │ │ ├── auth.php │ │ │ │ └── web.php │ │ │ ├── tailwind.config.js │ │ │ └── tests │ │ │ │ └── Feature │ │ │ │ ├── Auth │ │ │ │ └── PasswordUpdateTest.php │ │ │ │ └── ProfileTest.php │ │ │ ├── inertia-react-ts │ │ │ ├── resources │ │ │ │ └── js │ │ │ │ │ ├── Components │ │ │ │ │ ├── ApplicationLogo.tsx │ │ │ │ │ ├── Checkbox.tsx │ │ │ │ │ ├── DangerButton.tsx │ │ │ │ │ ├── Dropdown.tsx │ │ │ │ │ ├── InputError.tsx │ │ │ │ │ ├── InputLabel.tsx │ │ │ │ │ ├── Modal.tsx │ │ │ │ │ ├── NavLink.tsx │ │ │ │ │ ├── PrimaryButton.tsx │ │ │ │ │ ├── ResponsiveNavLink.tsx │ │ │ │ │ ├── SecondaryButton.tsx │ │ │ │ │ └── TextInput.tsx │ │ │ │ │ ├── Layouts │ │ │ │ │ ├── AuthenticatedLayout.tsx │ │ │ │ │ └── GuestLayout.tsx │ │ │ │ │ ├── Pages │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── ConfirmPassword.tsx │ │ │ │ │ │ ├── ForgotPassword.tsx │ │ │ │ │ │ ├── Login.tsx │ │ │ │ │ │ ├── Register.tsx │ │ │ │ │ │ ├── ResetPassword.tsx │ │ │ │ │ │ └── VerifyEmail.tsx │ │ │ │ │ ├── Dashboard.tsx │ │ │ │ │ ├── Profile │ │ │ │ │ │ ├── Edit.tsx │ │ │ │ │ │ └── Partials │ │ │ │ │ │ │ ├── DeleteUserForm.tsx │ │ │ │ │ │ │ ├── UpdatePasswordForm.tsx │ │ │ │ │ │ │ └── UpdateProfileInformationForm.tsx │ │ │ │ │ └── Welcome.tsx │ │ │ │ │ ├── app.tsx │ │ │ │ │ ├── ssr.tsx │ │ │ │ │ └── types │ │ │ │ │ ├── global.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── vite-env.d.ts │ │ │ └── tsconfig.json │ │ │ ├── inertia-react │ │ │ ├── resources │ │ │ │ ├── js │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── ApplicationLogo.jsx │ │ │ │ │ │ ├── Checkbox.jsx │ │ │ │ │ │ ├── DangerButton.jsx │ │ │ │ │ │ ├── Dropdown.jsx │ │ │ │ │ │ ├── InputError.jsx │ │ │ │ │ │ ├── InputLabel.jsx │ │ │ │ │ │ ├── Modal.jsx │ │ │ │ │ │ ├── NavLink.jsx │ │ │ │ │ │ ├── PrimaryButton.jsx │ │ │ │ │ │ ├── ResponsiveNavLink.jsx │ │ │ │ │ │ ├── SecondaryButton.jsx │ │ │ │ │ │ └── TextInput.jsx │ │ │ │ │ ├── Layouts │ │ │ │ │ │ ├── AuthenticatedLayout.jsx │ │ │ │ │ │ └── GuestLayout.jsx │ │ │ │ │ ├── Pages │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ │ ├── ConfirmPassword.jsx │ │ │ │ │ │ │ ├── ForgotPassword.jsx │ │ │ │ │ │ │ ├── Login.jsx │ │ │ │ │ │ │ ├── Register.jsx │ │ │ │ │ │ │ ├── ResetPassword.jsx │ │ │ │ │ │ │ └── VerifyEmail.jsx │ │ │ │ │ │ ├── Dashboard.jsx │ │ │ │ │ │ ├── Profile │ │ │ │ │ │ │ ├── Edit.jsx │ │ │ │ │ │ │ └── Partials │ │ │ │ │ │ │ │ ├── DeleteUserForm.jsx │ │ │ │ │ │ │ │ ├── UpdatePasswordForm.jsx │ │ │ │ │ │ │ │ └── UpdateProfileInformationForm.jsx │ │ │ │ │ │ └── Welcome.jsx │ │ │ │ │ ├── app.jsx │ │ │ │ │ └── ssr.jsx │ │ │ │ └── views │ │ │ │ │ └── app.blade.php │ │ │ └── vite.config.js │ │ │ ├── inertia-vue-ts │ │ │ ├── resources │ │ │ │ └── js │ │ │ │ │ ├── Components │ │ │ │ │ ├── ApplicationLogo.vue │ │ │ │ │ ├── Checkbox.vue │ │ │ │ │ ├── DangerButton.vue │ │ │ │ │ ├── Dropdown.vue │ │ │ │ │ ├── DropdownLink.vue │ │ │ │ │ ├── InputError.vue │ │ │ │ │ ├── InputLabel.vue │ │ │ │ │ ├── Modal.vue │ │ │ │ │ ├── NavLink.vue │ │ │ │ │ ├── PrimaryButton.vue │ │ │ │ │ ├── ResponsiveNavLink.vue │ │ │ │ │ ├── SecondaryButton.vue │ │ │ │ │ └── TextInput.vue │ │ │ │ │ ├── Layouts │ │ │ │ │ ├── AuthenticatedLayout.vue │ │ │ │ │ └── GuestLayout.vue │ │ │ │ │ ├── Pages │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── ConfirmPassword.vue │ │ │ │ │ │ ├── ForgotPassword.vue │ │ │ │ │ │ ├── Login.vue │ │ │ │ │ │ ├── Register.vue │ │ │ │ │ │ ├── ResetPassword.vue │ │ │ │ │ │ └── VerifyEmail.vue │ │ │ │ │ ├── Dashboard.vue │ │ │ │ │ ├── Profile │ │ │ │ │ │ ├── Edit.vue │ │ │ │ │ │ └── Partials │ │ │ │ │ │ │ ├── DeleteUserForm.vue │ │ │ │ │ │ │ ├── UpdatePasswordForm.vue │ │ │ │ │ │ │ └── UpdateProfileInformationForm.vue │ │ │ │ │ └── Welcome.vue │ │ │ │ │ ├── app.ts │ │ │ │ │ ├── ssr.ts │ │ │ │ │ └── types │ │ │ │ │ ├── global.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── vite-env.d.ts │ │ │ └── tsconfig.json │ │ │ ├── inertia-vue │ │ │ ├── resources │ │ │ │ ├── js │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── ApplicationLogo.vue │ │ │ │ │ │ ├── Checkbox.vue │ │ │ │ │ │ ├── DangerButton.vue │ │ │ │ │ │ ├── Dropdown.vue │ │ │ │ │ │ ├── DropdownLink.vue │ │ │ │ │ │ ├── InputError.vue │ │ │ │ │ │ ├── InputLabel.vue │ │ │ │ │ │ ├── Modal.vue │ │ │ │ │ │ ├── NavLink.vue │ │ │ │ │ │ ├── PrimaryButton.vue │ │ │ │ │ │ ├── ResponsiveNavLink.vue │ │ │ │ │ │ ├── SecondaryButton.vue │ │ │ │ │ │ └── TextInput.vue │ │ │ │ │ ├── Layouts │ │ │ │ │ │ ├── AuthenticatedLayout.vue │ │ │ │ │ │ └── GuestLayout.vue │ │ │ │ │ ├── Pages │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ │ ├── ConfirmPassword.vue │ │ │ │ │ │ │ ├── ForgotPassword.vue │ │ │ │ │ │ │ ├── Login.vue │ │ │ │ │ │ │ ├── Register.vue │ │ │ │ │ │ │ ├── ResetPassword.vue │ │ │ │ │ │ │ └── VerifyEmail.vue │ │ │ │ │ │ ├── Dashboard.vue │ │ │ │ │ │ ├── Profile │ │ │ │ │ │ │ ├── Edit.vue │ │ │ │ │ │ │ └── Partials │ │ │ │ │ │ │ │ ├── DeleteUserForm.vue │ │ │ │ │ │ │ │ ├── UpdatePasswordForm.vue │ │ │ │ │ │ │ │ └── UpdateProfileInformationForm.vue │ │ │ │ │ │ └── Welcome.vue │ │ │ │ │ ├── app.js │ │ │ │ │ └── ssr.js │ │ │ │ └── views │ │ │ │ │ └── app.blade.php │ │ │ └── vite.config.js │ │ │ ├── livewire-common │ │ │ ├── app │ │ │ │ └── Livewire │ │ │ │ │ ├── Actions │ │ │ │ │ └── Logout.php │ │ │ │ │ └── Forms │ │ │ │ │ └── LoginForm.php │ │ │ ├── pest-tests │ │ │ │ ├── Feature │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── AuthenticationTest.php │ │ │ │ │ │ ├── EmailVerificationTest.php │ │ │ │ │ │ ├── PasswordConfirmationTest.php │ │ │ │ │ │ ├── PasswordResetTest.php │ │ │ │ │ │ ├── PasswordUpdateTest.php │ │ │ │ │ │ └── RegistrationTest.php │ │ │ │ │ ├── ExampleTest.php │ │ │ │ │ └── ProfileTest.php │ │ │ │ ├── Pest.php │ │ │ │ └── Unit │ │ │ │ │ └── ExampleTest.php │ │ │ ├── resources │ │ │ │ └── views │ │ │ │ │ ├── components │ │ │ │ │ └── action-message.blade.php │ │ │ │ │ ├── dashboard.blade.php │ │ │ │ │ ├── layouts │ │ │ │ │ ├── app.blade.php │ │ │ │ │ └── guest.blade.php │ │ │ │ │ ├── profile.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ ├── routes │ │ │ │ ├── auth.php │ │ │ │ └── web.php │ │ │ └── tests │ │ │ │ └── Feature │ │ │ │ ├── Auth │ │ │ │ ├── AuthenticationTest.php │ │ │ │ ├── EmailVerificationTest.php │ │ │ │ ├── PasswordConfirmationTest.php │ │ │ │ ├── PasswordResetTest.php │ │ │ │ ├── PasswordUpdateTest.php │ │ │ │ └── RegistrationTest.php │ │ │ │ └── ProfileTest.php │ │ │ ├── livewire-functional │ │ │ └── resources │ │ │ │ └── views │ │ │ │ └── livewire │ │ │ │ ├── layout │ │ │ │ └── navigation.blade.php │ │ │ │ ├── pages │ │ │ │ └── auth │ │ │ │ │ ├── confirm-password.blade.php │ │ │ │ │ ├── forgot-password.blade.php │ │ │ │ │ ├── login.blade.php │ │ │ │ │ ├── register.blade.php │ │ │ │ │ ├── reset-password.blade.php │ │ │ │ │ └── verify-email.blade.php │ │ │ │ ├── profile │ │ │ │ ├── delete-user-form.blade.php │ │ │ │ ├── update-password-form.blade.php │ │ │ │ └── update-profile-information-form.blade.php │ │ │ │ └── welcome │ │ │ │ └── navigation.blade.php │ │ │ └── livewire │ │ │ └── resources │ │ │ └── views │ │ │ └── livewire │ │ │ ├── layout │ │ │ └── navigation.blade.php │ │ │ ├── pages │ │ │ └── auth │ │ │ │ ├── confirm-password.blade.php │ │ │ │ ├── forgot-password.blade.php │ │ │ │ ├── login.blade.php │ │ │ │ ├── register.blade.php │ │ │ │ ├── reset-password.blade.php │ │ │ │ └── verify-email.blade.php │ │ │ ├── profile │ │ │ ├── delete-user-form.blade.php │ │ │ ├── update-password-form.blade.php │ │ │ └── update-profile-information-form.blade.php │ │ │ └── welcome │ │ │ └── navigation.blade.php │ ├── framework │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Illuminate │ │ │ ├── Auth │ │ │ ├── Access │ │ │ │ ├── AuthorizationException.php │ │ │ │ ├── Events │ │ │ │ │ └── GateEvaluated.php │ │ │ │ ├── Gate.php │ │ │ │ ├── HandlesAuthorization.php │ │ │ │ └── Response.php │ │ │ ├── AuthManager.php │ │ │ ├── AuthServiceProvider.php │ │ │ ├── Authenticatable.php │ │ │ ├── AuthenticationException.php │ │ │ ├── Console │ │ │ │ ├── ClearResetsCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── make │ │ │ │ │ └── views │ │ │ │ │ └── layouts │ │ │ │ │ └── app.stub │ │ │ ├── CreatesUserProviders.php │ │ │ ├── DatabaseUserProvider.php │ │ │ ├── EloquentUserProvider.php │ │ │ ├── Events │ │ │ │ ├── Attempting.php │ │ │ │ ├── Authenticated.php │ │ │ │ ├── CurrentDeviceLogout.php │ │ │ │ ├── Failed.php │ │ │ │ ├── Lockout.php │ │ │ │ ├── Login.php │ │ │ │ ├── Logout.php │ │ │ │ ├── OtherDeviceLogout.php │ │ │ │ ├── PasswordReset.php │ │ │ │ ├── Registered.php │ │ │ │ ├── Validated.php │ │ │ │ └── Verified.php │ │ │ ├── GenericUser.php │ │ │ ├── GuardHelpers.php │ │ │ ├── LICENSE.md │ │ │ ├── Listeners │ │ │ │ └── SendEmailVerificationNotification.php │ │ │ ├── Middleware │ │ │ │ ├── Authenticate.php │ │ │ │ ├── AuthenticateWithBasicAuth.php │ │ │ │ ├── Authorize.php │ │ │ │ ├── EnsureEmailIsVerified.php │ │ │ │ └── RequirePassword.php │ │ │ ├── MustVerifyEmail.php │ │ │ ├── Notifications │ │ │ │ ├── ResetPassword.php │ │ │ │ └── VerifyEmail.php │ │ │ ├── Passwords │ │ │ │ ├── CanResetPassword.php │ │ │ │ ├── DatabaseTokenRepository.php │ │ │ │ ├── PasswordBroker.php │ │ │ │ ├── PasswordBrokerManager.php │ │ │ │ ├── PasswordResetServiceProvider.php │ │ │ │ └── TokenRepositoryInterface.php │ │ │ ├── Recaller.php │ │ │ ├── RequestGuard.php │ │ │ ├── SessionGuard.php │ │ │ ├── TokenGuard.php │ │ │ └── composer.json │ │ │ ├── Broadcasting │ │ │ ├── BroadcastController.php │ │ │ ├── BroadcastEvent.php │ │ │ ├── BroadcastException.php │ │ │ ├── BroadcastManager.php │ │ │ ├── BroadcastServiceProvider.php │ │ │ ├── Broadcasters │ │ │ │ ├── AblyBroadcaster.php │ │ │ │ ├── Broadcaster.php │ │ │ │ ├── LogBroadcaster.php │ │ │ │ ├── NullBroadcaster.php │ │ │ │ ├── PusherBroadcaster.php │ │ │ │ ├── RedisBroadcaster.php │ │ │ │ └── UsePusherChannelConventions.php │ │ │ ├── Channel.php │ │ │ ├── EncryptedPrivateChannel.php │ │ │ ├── InteractsWithBroadcasting.php │ │ │ ├── InteractsWithSockets.php │ │ │ ├── LICENSE.md │ │ │ ├── PendingBroadcast.php │ │ │ ├── PresenceChannel.php │ │ │ ├── PrivateChannel.php │ │ │ ├── UniqueBroadcastEvent.php │ │ │ └── composer.json │ │ │ ├── Bus │ │ │ ├── Batch.php │ │ │ ├── BatchFactory.php │ │ │ ├── BatchRepository.php │ │ │ ├── Batchable.php │ │ │ ├── BusServiceProvider.php │ │ │ ├── ChainedBatch.php │ │ │ ├── DatabaseBatchRepository.php │ │ │ ├── Dispatcher.php │ │ │ ├── Events │ │ │ │ └── BatchDispatched.php │ │ │ ├── LICENSE.md │ │ │ ├── PendingBatch.php │ │ │ ├── PrunableBatchRepository.php │ │ │ ├── Queueable.php │ │ │ ├── UniqueLock.php │ │ │ ├── UpdatedBatchJobCounts.php │ │ │ └── composer.json │ │ │ ├── Cache │ │ │ ├── ApcStore.php │ │ │ ├── ApcWrapper.php │ │ │ ├── ArrayLock.php │ │ │ ├── ArrayStore.php │ │ │ ├── CacheLock.php │ │ │ ├── CacheManager.php │ │ │ ├── CacheServiceProvider.php │ │ │ ├── Console │ │ │ │ ├── CacheTableCommand.php │ │ │ │ ├── ClearCommand.php │ │ │ │ ├── ForgetCommand.php │ │ │ │ ├── PruneStaleTagsCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── cache.stub │ │ │ ├── DatabaseLock.php │ │ │ ├── DatabaseStore.php │ │ │ ├── DynamoDbLock.php │ │ │ ├── DynamoDbStore.php │ │ │ ├── Events │ │ │ │ ├── CacheEvent.php │ │ │ │ ├── CacheHit.php │ │ │ │ ├── CacheMissed.php │ │ │ │ ├── KeyForgotten.php │ │ │ │ └── KeyWritten.php │ │ │ ├── FileLock.php │ │ │ ├── FileStore.php │ │ │ ├── HasCacheLock.php │ │ │ ├── LICENSE.md │ │ │ ├── Lock.php │ │ │ ├── LuaScripts.php │ │ │ ├── MemcachedConnector.php │ │ │ ├── MemcachedLock.php │ │ │ ├── MemcachedStore.php │ │ │ ├── NoLock.php │ │ │ ├── NullStore.php │ │ │ ├── PhpRedisLock.php │ │ │ ├── RateLimiter.php │ │ │ ├── RateLimiting │ │ │ │ ├── GlobalLimit.php │ │ │ │ ├── Limit.php │ │ │ │ └── Unlimited.php │ │ │ ├── RedisLock.php │ │ │ ├── RedisStore.php │ │ │ ├── RedisTagSet.php │ │ │ ├── RedisTaggedCache.php │ │ │ ├── Repository.php │ │ │ ├── RetrievesMultipleKeys.php │ │ │ ├── TagSet.php │ │ │ ├── TaggableStore.php │ │ │ ├── TaggedCache.php │ │ │ └── composer.json │ │ │ ├── Collections │ │ │ ├── Arr.php │ │ │ ├── Collection.php │ │ │ ├── Enumerable.php │ │ │ ├── HigherOrderCollectionProxy.php │ │ │ ├── ItemNotFoundException.php │ │ │ ├── LICENSE.md │ │ │ ├── LazyCollection.php │ │ │ ├── MultipleItemsFoundException.php │ │ │ ├── Traits │ │ │ │ └── EnumeratesValues.php │ │ │ ├── composer.json │ │ │ └── helpers.php │ │ │ ├── Conditionable │ │ │ ├── HigherOrderWhenProxy.php │ │ │ ├── LICENSE.md │ │ │ ├── Traits │ │ │ │ └── Conditionable.php │ │ │ └── composer.json │ │ │ ├── Config │ │ │ ├── LICENSE.md │ │ │ ├── Repository.php │ │ │ └── composer.json │ │ │ ├── Console │ │ │ ├── Application.php │ │ │ ├── BufferedConsoleOutput.php │ │ │ ├── CacheCommandMutex.php │ │ │ ├── Command.php │ │ │ ├── CommandMutex.php │ │ │ ├── Concerns │ │ │ │ ├── CallsCommands.php │ │ │ │ ├── ConfiguresPrompts.php │ │ │ │ ├── CreatesMatchingTest.php │ │ │ │ ├── HasParameters.php │ │ │ │ ├── InteractsWithIO.php │ │ │ │ ├── InteractsWithSignals.php │ │ │ │ └── PromptsForMissingInput.php │ │ │ ├── ConfirmableTrait.php │ │ │ ├── ContainerCommandLoader.php │ │ │ ├── Contracts │ │ │ │ └── NewLineAware.php │ │ │ ├── Events │ │ │ │ ├── ArtisanStarting.php │ │ │ │ ├── CommandFinished.php │ │ │ │ ├── CommandStarting.php │ │ │ │ ├── ScheduledBackgroundTaskFinished.php │ │ │ │ ├── ScheduledTaskFailed.php │ │ │ │ ├── ScheduledTaskFinished.php │ │ │ │ ├── ScheduledTaskSkipped.php │ │ │ │ └── ScheduledTaskStarting.php │ │ │ ├── GeneratorCommand.php │ │ │ ├── LICENSE.md │ │ │ ├── MigrationGeneratorCommand.php │ │ │ ├── OutputStyle.php │ │ │ ├── Parser.php │ │ │ ├── QuestionHelper.php │ │ │ ├── Scheduling │ │ │ │ ├── CacheAware.php │ │ │ │ ├── CacheEventMutex.php │ │ │ │ ├── CacheSchedulingMutex.php │ │ │ │ ├── CallbackEvent.php │ │ │ │ ├── CommandBuilder.php │ │ │ │ ├── Event.php │ │ │ │ ├── EventMutex.php │ │ │ │ ├── ManagesFrequencies.php │ │ │ │ ├── Schedule.php │ │ │ │ ├── ScheduleClearCacheCommand.php │ │ │ │ ├── ScheduleFinishCommand.php │ │ │ │ ├── ScheduleInterruptCommand.php │ │ │ │ ├── ScheduleListCommand.php │ │ │ │ ├── ScheduleRunCommand.php │ │ │ │ ├── ScheduleTestCommand.php │ │ │ │ ├── ScheduleWorkCommand.php │ │ │ │ └── SchedulingMutex.php │ │ │ ├── Signals.php │ │ │ ├── View │ │ │ │ └── Components │ │ │ │ │ ├── Alert.php │ │ │ │ │ ├── Ask.php │ │ │ │ │ ├── AskWithCompletion.php │ │ │ │ │ ├── BulletList.php │ │ │ │ │ ├── Choice.php │ │ │ │ │ ├── Component.php │ │ │ │ │ ├── Confirm.php │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── Info.php │ │ │ │ │ ├── Line.php │ │ │ │ │ ├── Mutators │ │ │ │ │ ├── EnsureDynamicContentIsHighlighted.php │ │ │ │ │ ├── EnsureNoPunctuation.php │ │ │ │ │ ├── EnsurePunctuation.php │ │ │ │ │ └── EnsureRelativePaths.php │ │ │ │ │ ├── Secret.php │ │ │ │ │ ├── Task.php │ │ │ │ │ ├── TwoColumnDetail.php │ │ │ │ │ └── Warn.php │ │ │ ├── composer.json │ │ │ └── resources │ │ │ │ └── views │ │ │ │ └── components │ │ │ │ ├── alert.php │ │ │ │ ├── bullet-list.php │ │ │ │ ├── line.php │ │ │ │ └── two-column-detail.php │ │ │ ├── Container │ │ │ ├── BoundMethod.php │ │ │ ├── Container.php │ │ │ ├── ContextualBindingBuilder.php │ │ │ ├── EntryNotFoundException.php │ │ │ ├── LICENSE.md │ │ │ ├── RewindableGenerator.php │ │ │ ├── Util.php │ │ │ └── composer.json │ │ │ ├── Contracts │ │ │ ├── Auth │ │ │ │ ├── Access │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ └── Gate.php │ │ │ │ ├── Authenticatable.php │ │ │ │ ├── CanResetPassword.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Guard.php │ │ │ │ ├── Middleware │ │ │ │ │ └── AuthenticatesRequests.php │ │ │ │ ├── MustVerifyEmail.php │ │ │ │ ├── PasswordBroker.php │ │ │ │ ├── PasswordBrokerFactory.php │ │ │ │ ├── StatefulGuard.php │ │ │ │ ├── SupportsBasicAuth.php │ │ │ │ └── UserProvider.php │ │ │ ├── Broadcasting │ │ │ │ ├── Broadcaster.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HasBroadcastChannel.php │ │ │ │ ├── ShouldBeUnique.php │ │ │ │ ├── ShouldBroadcast.php │ │ │ │ └── ShouldBroadcastNow.php │ │ │ ├── Bus │ │ │ │ ├── Dispatcher.php │ │ │ │ └── QueueingDispatcher.php │ │ │ ├── Cache │ │ │ │ ├── Factory.php │ │ │ │ ├── Lock.php │ │ │ │ ├── LockProvider.php │ │ │ │ ├── LockTimeoutException.php │ │ │ │ ├── Repository.php │ │ │ │ └── Store.php │ │ │ ├── Config │ │ │ │ └── Repository.php │ │ │ ├── Console │ │ │ │ ├── Application.php │ │ │ │ ├── Isolatable.php │ │ │ │ ├── Kernel.php │ │ │ │ └── PromptsForMissingInput.php │ │ │ ├── Container │ │ │ │ ├── BindingResolutionException.php │ │ │ │ ├── CircularDependencyException.php │ │ │ │ ├── Container.php │ │ │ │ └── ContextualBindingBuilder.php │ │ │ ├── Cookie │ │ │ │ ├── Factory.php │ │ │ │ └── QueueingFactory.php │ │ │ ├── Database │ │ │ │ ├── Eloquent │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── Castable.php │ │ │ │ │ ├── CastsAttributes.php │ │ │ │ │ ├── CastsInboundAttributes.php │ │ │ │ │ ├── DeviatesCastableAttributes.php │ │ │ │ │ ├── SerializesCastableAttributes.php │ │ │ │ │ └── SupportsPartialRelations.php │ │ │ │ ├── Events │ │ │ │ │ └── MigrationEvent.php │ │ │ │ ├── ModelIdentifier.php │ │ │ │ └── Query │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── ConditionExpression.php │ │ │ │ │ └── Expression.php │ │ │ ├── Debug │ │ │ │ └── ExceptionHandler.php │ │ │ ├── Encryption │ │ │ │ ├── DecryptException.php │ │ │ │ ├── EncryptException.php │ │ │ │ ├── Encrypter.php │ │ │ │ └── StringEncrypter.php │ │ │ ├── Events │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── ShouldDispatchAfterCommit.php │ │ │ │ └── ShouldHandleEventsAfterCommit.php │ │ │ ├── Filesystem │ │ │ │ ├── Cloud.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ ├── Filesystem.php │ │ │ │ └── LockTimeoutException.php │ │ │ ├── Foundation │ │ │ │ ├── Application.php │ │ │ │ ├── CachesConfiguration.php │ │ │ │ ├── CachesRoutes.php │ │ │ │ ├── ExceptionRenderer.php │ │ │ │ └── MaintenanceMode.php │ │ │ ├── Hashing │ │ │ │ └── Hasher.php │ │ │ ├── Http │ │ │ │ └── Kernel.php │ │ │ ├── LICENSE.md │ │ │ ├── Mail │ │ │ │ ├── Attachable.php │ │ │ │ ├── Factory.php │ │ │ │ ├── MailQueue.php │ │ │ │ ├── Mailable.php │ │ │ │ └── Mailer.php │ │ │ ├── Notifications │ │ │ │ ├── Dispatcher.php │ │ │ │ └── Factory.php │ │ │ ├── Pagination │ │ │ │ ├── CursorPaginator.php │ │ │ │ ├── LengthAwarePaginator.php │ │ │ │ └── Paginator.php │ │ │ ├── Pipeline │ │ │ │ ├── Hub.php │ │ │ │ └── Pipeline.php │ │ │ ├── Process │ │ │ │ ├── InvokedProcess.php │ │ │ │ └── ProcessResult.php │ │ │ ├── Queue │ │ │ │ ├── ClearableQueue.php │ │ │ │ ├── EntityNotFoundException.php │ │ │ │ ├── EntityResolver.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Job.php │ │ │ │ ├── Monitor.php │ │ │ │ ├── Queue.php │ │ │ │ ├── QueueableCollection.php │ │ │ │ ├── QueueableEntity.php │ │ │ │ ├── ShouldBeEncrypted.php │ │ │ │ ├── ShouldBeUnique.php │ │ │ │ ├── ShouldBeUniqueUntilProcessing.php │ │ │ │ ├── ShouldQueue.php │ │ │ │ └── ShouldQueueAfterCommit.php │ │ │ ├── Redis │ │ │ │ ├── Connection.php │ │ │ │ ├── Connector.php │ │ │ │ ├── Factory.php │ │ │ │ └── LimiterTimeoutException.php │ │ │ ├── Routing │ │ │ │ ├── BindingRegistrar.php │ │ │ │ ├── Registrar.php │ │ │ │ ├── ResponseFactory.php │ │ │ │ ├── UrlGenerator.php │ │ │ │ └── UrlRoutable.php │ │ │ ├── Session │ │ │ │ ├── Middleware │ │ │ │ │ └── AuthenticatesSessions.php │ │ │ │ └── Session.php │ │ │ ├── Support │ │ │ │ ├── Arrayable.php │ │ │ │ ├── CanBeEscapedWhenCastToString.php │ │ │ │ ├── DeferrableProvider.php │ │ │ │ ├── DeferringDisplayableValue.php │ │ │ │ ├── Htmlable.php │ │ │ │ ├── Jsonable.php │ │ │ │ ├── MessageBag.php │ │ │ │ ├── MessageProvider.php │ │ │ │ ├── Renderable.php │ │ │ │ ├── Responsable.php │ │ │ │ └── ValidatedData.php │ │ │ ├── Translation │ │ │ │ ├── HasLocalePreference.php │ │ │ │ ├── Loader.php │ │ │ │ └── Translator.php │ │ │ ├── Validation │ │ │ │ ├── DataAwareRule.php │ │ │ │ ├── Factory.php │ │ │ │ ├── ImplicitRule.php │ │ │ │ ├── InvokableRule.php │ │ │ │ ├── Rule.php │ │ │ │ ├── UncompromisedVerifier.php │ │ │ │ ├── ValidatesWhenResolved.php │ │ │ │ ├── ValidationRule.php │ │ │ │ ├── Validator.php │ │ │ │ └── ValidatorAwareRule.php │ │ │ ├── View │ │ │ │ ├── Engine.php │ │ │ │ ├── Factory.php │ │ │ │ ├── View.php │ │ │ │ └── ViewCompilationException.php │ │ │ └── composer.json │ │ │ ├── Cookie │ │ │ ├── CookieJar.php │ │ │ ├── CookieServiceProvider.php │ │ │ ├── CookieValuePrefix.php │ │ │ ├── LICENSE.md │ │ │ ├── Middleware │ │ │ │ ├── AddQueuedCookiesToResponse.php │ │ │ │ └── EncryptCookies.php │ │ │ └── composer.json │ │ │ ├── Database │ │ │ ├── Capsule │ │ │ │ └── Manager.php │ │ │ ├── ClassMorphViolationException.php │ │ │ ├── Concerns │ │ │ │ ├── BuildsQueries.php │ │ │ │ ├── CompilesJsonPaths.php │ │ │ │ ├── ExplainsQueries.php │ │ │ │ ├── ManagesTransactions.php │ │ │ │ └── ParsesSearchPath.php │ │ │ ├── ConfigurationUrlParser.php │ │ │ ├── Connection.php │ │ │ ├── ConnectionInterface.php │ │ │ ├── ConnectionResolver.php │ │ │ ├── ConnectionResolverInterface.php │ │ │ ├── Connectors │ │ │ │ ├── ConnectionFactory.php │ │ │ │ ├── Connector.php │ │ │ │ ├── ConnectorInterface.php │ │ │ │ ├── MySqlConnector.php │ │ │ │ ├── PostgresConnector.php │ │ │ │ ├── SQLiteConnector.php │ │ │ │ └── SqlServerConnector.php │ │ │ ├── Console │ │ │ │ ├── DatabaseInspectionCommand.php │ │ │ │ ├── DbCommand.php │ │ │ │ ├── DumpCommand.php │ │ │ │ ├── Factories │ │ │ │ │ ├── FactoryMakeCommand.php │ │ │ │ │ └── stubs │ │ │ │ │ │ └── factory.stub │ │ │ │ ├── Migrations │ │ │ │ │ ├── BaseCommand.php │ │ │ │ │ ├── FreshCommand.php │ │ │ │ │ ├── InstallCommand.php │ │ │ │ │ ├── MigrateCommand.php │ │ │ │ │ ├── MigrateMakeCommand.php │ │ │ │ │ ├── RefreshCommand.php │ │ │ │ │ ├── ResetCommand.php │ │ │ │ │ ├── RollbackCommand.php │ │ │ │ │ ├── StatusCommand.php │ │ │ │ │ └── TableGuesser.php │ │ │ │ ├── MonitorCommand.php │ │ │ │ ├── PruneCommand.php │ │ │ │ ├── Seeds │ │ │ │ │ ├── SeedCommand.php │ │ │ │ │ ├── SeederMakeCommand.php │ │ │ │ │ ├── WithoutModelEvents.php │ │ │ │ │ └── stubs │ │ │ │ │ │ └── seeder.stub │ │ │ │ ├── ShowCommand.php │ │ │ │ ├── ShowModelCommand.php │ │ │ │ ├── TableCommand.php │ │ │ │ └── WipeCommand.php │ │ │ ├── DBAL │ │ │ │ └── TimestampType.php │ │ │ ├── DatabaseManager.php │ │ │ ├── DatabaseServiceProvider.php │ │ │ ├── DatabaseTransactionRecord.php │ │ │ ├── DatabaseTransactionsManager.php │ │ │ ├── DeadlockException.php │ │ │ ├── DetectsConcurrencyErrors.php │ │ │ ├── DetectsLostConnections.php │ │ │ ├── Eloquent │ │ │ │ ├── BroadcastableModelEventOccurred.php │ │ │ │ ├── BroadcastsEvents.php │ │ │ │ ├── BroadcastsEventsAfterCommit.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Casts │ │ │ │ │ ├── ArrayObject.php │ │ │ │ │ ├── AsArrayObject.php │ │ │ │ │ ├── AsCollection.php │ │ │ │ │ ├── AsEncryptedArrayObject.php │ │ │ │ │ ├── AsEncryptedCollection.php │ │ │ │ │ ├── AsEnumArrayObject.php │ │ │ │ │ ├── AsEnumCollection.php │ │ │ │ │ ├── AsStringable.php │ │ │ │ │ ├── Attribute.php │ │ │ │ │ └── Json.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── GuardsAttributes.php │ │ │ │ │ ├── HasAttributes.php │ │ │ │ │ ├── HasEvents.php │ │ │ │ │ ├── HasGlobalScopes.php │ │ │ │ │ ├── HasRelationships.php │ │ │ │ │ ├── HasTimestamps.php │ │ │ │ │ ├── HasUlids.php │ │ │ │ │ ├── HasUniqueIds.php │ │ │ │ │ ├── HasUuids.php │ │ │ │ │ ├── HidesAttributes.php │ │ │ │ │ └── QueriesRelationships.php │ │ │ │ ├── Factories │ │ │ │ │ ├── BelongsToManyRelationship.php │ │ │ │ │ ├── BelongsToRelationship.php │ │ │ │ │ ├── CrossJoinSequence.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── HasFactory.php │ │ │ │ │ ├── Relationship.php │ │ │ │ │ └── Sequence.php │ │ │ │ ├── HigherOrderBuilderProxy.php │ │ │ │ ├── InvalidCastException.php │ │ │ │ ├── JsonEncodingException.php │ │ │ │ ├── MassAssignmentException.php │ │ │ │ ├── MassPrunable.php │ │ │ │ ├── MissingAttributeException.php │ │ │ │ ├── Model.php │ │ │ │ ├── ModelNotFoundException.php │ │ │ │ ├── PendingHasThroughRelationship.php │ │ │ │ ├── Prunable.php │ │ │ │ ├── QueueEntityResolver.php │ │ │ │ ├── RelationNotFoundException.php │ │ │ │ ├── Relations │ │ │ │ │ ├── BelongsTo.php │ │ │ │ │ ├── BelongsToMany.php │ │ │ │ │ ├── Concerns │ │ │ │ │ │ ├── AsPivot.php │ │ │ │ │ │ ├── CanBeOneOfMany.php │ │ │ │ │ │ ├── ComparesRelatedModels.php │ │ │ │ │ │ ├── InteractsWithDictionary.php │ │ │ │ │ │ ├── InteractsWithPivotTable.php │ │ │ │ │ │ └── SupportsDefaultModels.php │ │ │ │ │ ├── HasMany.php │ │ │ │ │ ├── HasManyThrough.php │ │ │ │ │ ├── HasOne.php │ │ │ │ │ ├── HasOneOrMany.php │ │ │ │ │ ├── HasOneThrough.php │ │ │ │ │ ├── MorphMany.php │ │ │ │ │ ├── MorphOne.php │ │ │ │ │ ├── MorphOneOrMany.php │ │ │ │ │ ├── MorphPivot.php │ │ │ │ │ ├── MorphTo.php │ │ │ │ │ ├── MorphToMany.php │ │ │ │ │ ├── Pivot.php │ │ │ │ │ └── Relation.php │ │ │ │ ├── Scope.php │ │ │ │ ├── SoftDeletes.php │ │ │ │ └── SoftDeletingScope.php │ │ │ ├── Events │ │ │ │ ├── ConnectionEstablished.php │ │ │ │ ├── ConnectionEvent.php │ │ │ │ ├── DatabaseBusy.php │ │ │ │ ├── DatabaseRefreshed.php │ │ │ │ ├── MigrationEnded.php │ │ │ │ ├── MigrationEvent.php │ │ │ │ ├── MigrationStarted.php │ │ │ │ ├── MigrationsEnded.php │ │ │ │ ├── MigrationsEvent.php │ │ │ │ ├── MigrationsStarted.php │ │ │ │ ├── ModelPruningFinished.php │ │ │ │ ├── ModelPruningStarting.php │ │ │ │ ├── ModelsPruned.php │ │ │ │ ├── NoPendingMigrations.php │ │ │ │ ├── QueryExecuted.php │ │ │ │ ├── SchemaDumped.php │ │ │ │ ├── SchemaLoaded.php │ │ │ │ ├── StatementPrepared.php │ │ │ │ ├── TransactionBeginning.php │ │ │ │ ├── TransactionCommitted.php │ │ │ │ ├── TransactionCommitting.php │ │ │ │ └── TransactionRolledBack.php │ │ │ ├── Grammar.php │ │ │ ├── LICENSE.md │ │ │ ├── LazyLoadingViolationException.php │ │ │ ├── LostConnectionException.php │ │ │ ├── MigrationServiceProvider.php │ │ │ ├── Migrations │ │ │ │ ├── DatabaseMigrationRepository.php │ │ │ │ ├── Migration.php │ │ │ │ ├── MigrationCreator.php │ │ │ │ ├── MigrationRepositoryInterface.php │ │ │ │ ├── Migrator.php │ │ │ │ └── stubs │ │ │ │ │ ├── migration.create.stub │ │ │ │ │ ├── migration.stub │ │ │ │ │ └── migration.update.stub │ │ │ ├── MultipleColumnsSelectedException.php │ │ │ ├── MultipleRecordsFoundException.php │ │ │ ├── MySqlConnection.php │ │ │ ├── PDO │ │ │ │ ├── Concerns │ │ │ │ │ └── ConnectsToDatabase.php │ │ │ │ ├── Connection.php │ │ │ │ ├── MySqlDriver.php │ │ │ │ ├── PostgresDriver.php │ │ │ │ ├── SQLiteDriver.php │ │ │ │ ├── SqlServerConnection.php │ │ │ │ └── SqlServerDriver.php │ │ │ ├── PostgresConnection.php │ │ │ ├── Query │ │ │ │ ├── Builder.php │ │ │ │ ├── Expression.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── IndexHint.php │ │ │ │ ├── JoinClause.php │ │ │ │ └── Processors │ │ │ │ │ ├── MySqlProcessor.php │ │ │ │ │ ├── PostgresProcessor.php │ │ │ │ │ ├── Processor.php │ │ │ │ │ ├── SQLiteProcessor.php │ │ │ │ │ └── SqlServerProcessor.php │ │ │ ├── QueryException.php │ │ │ ├── README.md │ │ │ ├── RecordsNotFoundException.php │ │ │ ├── SQLiteConnection.php │ │ │ ├── SQLiteDatabaseDoesNotExistException.php │ │ │ ├── Schema │ │ │ │ ├── Blueprint.php │ │ │ │ ├── Builder.php │ │ │ │ ├── ColumnDefinition.php │ │ │ │ ├── ForeignIdColumnDefinition.php │ │ │ │ ├── ForeignKeyDefinition.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── ChangeColumn.php │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── RenameColumn.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── IndexDefinition.php │ │ │ │ ├── MySqlBuilder.php │ │ │ │ ├── MySqlSchemaState.php │ │ │ │ ├── PostgresBuilder.php │ │ │ │ ├── PostgresSchemaState.php │ │ │ │ ├── SQLiteBuilder.php │ │ │ │ ├── SchemaState.php │ │ │ │ ├── SqlServerBuilder.php │ │ │ │ └── SqliteSchemaState.php │ │ │ ├── Seeder.php │ │ │ ├── SqlServerConnection.php │ │ │ ├── UniqueConstraintViolationException.php │ │ │ └── composer.json │ │ │ ├── Encryption │ │ │ ├── Encrypter.php │ │ │ ├── EncryptionServiceProvider.php │ │ │ ├── LICENSE.md │ │ │ ├── MissingAppKeyException.php │ │ │ └── composer.json │ │ │ ├── Events │ │ │ ├── CallQueuedListener.php │ │ │ ├── Dispatcher.php │ │ │ ├── EventServiceProvider.php │ │ │ ├── InvokeQueuedClosure.php │ │ │ ├── LICENSE.md │ │ │ ├── NullDispatcher.php │ │ │ ├── QueuedClosure.php │ │ │ ├── composer.json │ │ │ └── functions.php │ │ │ ├── Filesystem │ │ │ ├── AwsS3V3Adapter.php │ │ │ ├── Filesystem.php │ │ │ ├── FilesystemAdapter.php │ │ │ ├── FilesystemManager.php │ │ │ ├── FilesystemServiceProvider.php │ │ │ ├── LICENSE.md │ │ │ ├── LockableFile.php │ │ │ └── composer.json │ │ │ ├── Foundation │ │ │ ├── AliasLoader.php │ │ │ ├── Application.php │ │ │ ├── Auth │ │ │ │ ├── Access │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ └── AuthorizesRequests.php │ │ │ │ ├── EmailVerificationRequest.php │ │ │ │ └── User.php │ │ │ ├── Bootstrap │ │ │ │ ├── BootProviders.php │ │ │ │ ├── HandleExceptions.php │ │ │ │ ├── LoadConfiguration.php │ │ │ │ ├── LoadEnvironmentVariables.php │ │ │ │ ├── RegisterFacades.php │ │ │ │ ├── RegisterProviders.php │ │ │ │ └── SetRequestForConsole.php │ │ │ ├── Bus │ │ │ │ ├── Dispatchable.php │ │ │ │ ├── DispatchesJobs.php │ │ │ │ ├── PendingChain.php │ │ │ │ ├── PendingClosureDispatch.php │ │ │ │ └── PendingDispatch.php │ │ │ ├── CacheBasedMaintenanceMode.php │ │ │ ├── ComposerScripts.php │ │ │ ├── Concerns │ │ │ │ └── ResolvesDumpSource.php │ │ │ ├── Console │ │ │ │ ├── AboutCommand.php │ │ │ │ ├── CastMakeCommand.php │ │ │ │ ├── ChannelListCommand.php │ │ │ │ ├── ChannelMakeCommand.php │ │ │ │ ├── ClearCompiledCommand.php │ │ │ │ ├── CliDumper.php │ │ │ │ ├── ClosureCommand.php │ │ │ │ ├── ComponentMakeCommand.php │ │ │ │ ├── ConfigCacheCommand.php │ │ │ │ ├── ConfigClearCommand.php │ │ │ │ ├── ConfigShowCommand.php │ │ │ │ ├── ConsoleMakeCommand.php │ │ │ │ ├── DocsCommand.php │ │ │ │ ├── DownCommand.php │ │ │ │ ├── EnvironmentCommand.php │ │ │ │ ├── EnvironmentDecryptCommand.php │ │ │ │ ├── EnvironmentEncryptCommand.php │ │ │ │ ├── EventCacheCommand.php │ │ │ │ ├── EventClearCommand.php │ │ │ │ ├── EventGenerateCommand.php │ │ │ │ ├── EventListCommand.php │ │ │ │ ├── EventMakeCommand.php │ │ │ │ ├── ExceptionMakeCommand.php │ │ │ │ ├── JobMakeCommand.php │ │ │ │ ├── Kernel.php │ │ │ │ ├── KeyGenerateCommand.php │ │ │ │ ├── LangPublishCommand.php │ │ │ │ ├── ListenerMakeCommand.php │ │ │ │ ├── MailMakeCommand.php │ │ │ │ ├── ModelMakeCommand.php │ │ │ │ ├── NotificationMakeCommand.php │ │ │ │ ├── ObserverMakeCommand.php │ │ │ │ ├── OptimizeClearCommand.php │ │ │ │ ├── OptimizeCommand.php │ │ │ │ ├── PackageDiscoverCommand.php │ │ │ │ ├── PolicyMakeCommand.php │ │ │ │ ├── ProviderMakeCommand.php │ │ │ │ ├── QueuedCommand.php │ │ │ │ ├── RequestMakeCommand.php │ │ │ │ ├── ResourceMakeCommand.php │ │ │ │ ├── RouteCacheCommand.php │ │ │ │ ├── RouteClearCommand.php │ │ │ │ ├── RouteListCommand.php │ │ │ │ ├── RuleMakeCommand.php │ │ │ │ ├── ScopeMakeCommand.php │ │ │ │ ├── ServeCommand.php │ │ │ │ ├── StorageLinkCommand.php │ │ │ │ ├── StubPublishCommand.php │ │ │ │ ├── TestMakeCommand.php │ │ │ │ ├── UpCommand.php │ │ │ │ ├── VendorPublishCommand.php │ │ │ │ ├── ViewCacheCommand.php │ │ │ │ ├── ViewClearCommand.php │ │ │ │ ├── ViewMakeCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── cast.inbound.stub │ │ │ │ │ ├── cast.stub │ │ │ │ │ ├── channel.stub │ │ │ │ │ ├── console.stub │ │ │ │ │ ├── event.stub │ │ │ │ │ ├── exception-render-report.stub │ │ │ │ │ ├── exception-render.stub │ │ │ │ │ ├── exception-report.stub │ │ │ │ │ ├── exception.stub │ │ │ │ │ ├── job.queued.stub │ │ │ │ │ ├── job.stub │ │ │ │ │ ├── listener-duck.stub │ │ │ │ │ ├── listener-queued-duck.stub │ │ │ │ │ ├── listener-queued.stub │ │ │ │ │ ├── listener.stub │ │ │ │ │ ├── mail.stub │ │ │ │ │ ├── maintenance-mode.stub │ │ │ │ │ ├── markdown-mail.stub │ │ │ │ │ ├── markdown-notification.stub │ │ │ │ │ ├── markdown.stub │ │ │ │ │ ├── model.morph-pivot.stub │ │ │ │ │ ├── model.pivot.stub │ │ │ │ │ ├── model.stub │ │ │ │ │ ├── notification.stub │ │ │ │ │ ├── observer.plain.stub │ │ │ │ │ ├── observer.stub │ │ │ │ │ ├── pest.stub │ │ │ │ │ ├── pest.unit.stub │ │ │ │ │ ├── policy.plain.stub │ │ │ │ │ ├── policy.stub │ │ │ │ │ ├── provider.stub │ │ │ │ │ ├── request.stub │ │ │ │ │ ├── resource-collection.stub │ │ │ │ │ ├── resource.stub │ │ │ │ │ ├── routes.stub │ │ │ │ │ ├── rule.implicit.stub │ │ │ │ │ ├── rule.stub │ │ │ │ │ ├── scope.stub │ │ │ │ │ ├── test.stub │ │ │ │ │ ├── test.unit.stub │ │ │ │ │ ├── view-component.stub │ │ │ │ │ ├── view.pest.stub │ │ │ │ │ ├── view.stub │ │ │ │ │ └── view.test.stub │ │ │ ├── EnvironmentDetector.php │ │ │ ├── Events │ │ │ │ ├── DiscoverEvents.php │ │ │ │ ├── Dispatchable.php │ │ │ │ ├── LocaleUpdated.php │ │ │ │ ├── MaintenanceModeDisabled.php │ │ │ │ ├── MaintenanceModeEnabled.php │ │ │ │ ├── PublishingStubs.php │ │ │ │ └── VendorTagPublished.php │ │ │ ├── Exceptions │ │ │ │ ├── Handler.php │ │ │ │ ├── RegisterErrorViewPaths.php │ │ │ │ ├── ReportableHandler.php │ │ │ │ ├── Whoops │ │ │ │ │ ├── WhoopsExceptionRenderer.php │ │ │ │ │ └── WhoopsHandler.php │ │ │ │ └── views │ │ │ │ │ ├── 401.blade.php │ │ │ │ │ ├── 402.blade.php │ │ │ │ │ ├── 403.blade.php │ │ │ │ │ ├── 404.blade.php │ │ │ │ │ ├── 419.blade.php │ │ │ │ │ ├── 429.blade.php │ │ │ │ │ ├── 500.blade.php │ │ │ │ │ ├── 503.blade.php │ │ │ │ │ ├── layout.blade.php │ │ │ │ │ └── minimal.blade.php │ │ │ ├── FileBasedMaintenanceMode.php │ │ │ ├── Http │ │ │ │ ├── Events │ │ │ │ │ └── RequestHandled.php │ │ │ │ ├── FormRequest.php │ │ │ │ ├── HtmlDumper.php │ │ │ │ ├── Kernel.php │ │ │ │ ├── MaintenanceModeBypassCookie.php │ │ │ │ └── Middleware │ │ │ │ │ ├── CheckForMaintenanceMode.php │ │ │ │ │ ├── ConvertEmptyStringsToNull.php │ │ │ │ │ ├── HandlePrecognitiveRequests.php │ │ │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ │ │ ├── TransformsRequest.php │ │ │ │ │ ├── TrimStrings.php │ │ │ │ │ ├── ValidatePostSize.php │ │ │ │ │ └── VerifyCsrfToken.php │ │ │ ├── Inspiring.php │ │ │ ├── MaintenanceModeManager.php │ │ │ ├── Mix.php │ │ │ ├── PackageManifest.php │ │ │ ├── Precognition.php │ │ │ ├── ProviderRepository.php │ │ │ ├── Providers │ │ │ │ ├── ArtisanServiceProvider.php │ │ │ │ ├── ComposerServiceProvider.php │ │ │ │ ├── ConsoleSupportServiceProvider.php │ │ │ │ ├── FormRequestServiceProvider.php │ │ │ │ └── FoundationServiceProvider.php │ │ │ ├── Routing │ │ │ │ ├── PrecognitionCallableDispatcher.php │ │ │ │ └── PrecognitionControllerDispatcher.php │ │ │ ├── Support │ │ │ │ └── Providers │ │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ │ ├── EventServiceProvider.php │ │ │ │ │ └── RouteServiceProvider.php │ │ │ ├── Testing │ │ │ │ ├── Concerns │ │ │ │ │ ├── InteractsWithAuthentication.php │ │ │ │ │ ├── InteractsWithConsole.php │ │ │ │ │ ├── InteractsWithContainer.php │ │ │ │ │ ├── InteractsWithDatabase.php │ │ │ │ │ ├── InteractsWithDeprecationHandling.php │ │ │ │ │ ├── InteractsWithExceptionHandling.php │ │ │ │ │ ├── InteractsWithRedis.php │ │ │ │ │ ├── InteractsWithSession.php │ │ │ │ │ ├── InteractsWithTime.php │ │ │ │ │ ├── InteractsWithViews.php │ │ │ │ │ └── MakesHttpRequests.php │ │ │ │ ├── DatabaseMigrations.php │ │ │ │ ├── DatabaseTransactions.php │ │ │ │ ├── DatabaseTransactionsManager.php │ │ │ │ ├── DatabaseTruncation.php │ │ │ │ ├── LazilyRefreshDatabase.php │ │ │ │ ├── RefreshDatabase.php │ │ │ │ ├── RefreshDatabaseState.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── Traits │ │ │ │ │ └── CanConfigureMigrationCommands.php │ │ │ │ ├── WithConsoleEvents.php │ │ │ │ ├── WithFaker.php │ │ │ │ ├── WithoutEvents.php │ │ │ │ ├── WithoutMiddleware.php │ │ │ │ └── Wormhole.php │ │ │ ├── Validation │ │ │ │ └── ValidatesRequests.php │ │ │ ├── Vite.php │ │ │ ├── ViteManifestNotFoundException.php │ │ │ ├── helpers.php │ │ │ ├── resources │ │ │ │ └── server.php │ │ │ └── stubs │ │ │ │ └── facade.stub │ │ │ ├── Hashing │ │ │ ├── AbstractHasher.php │ │ │ ├── Argon2IdHasher.php │ │ │ ├── ArgonHasher.php │ │ │ ├── BcryptHasher.php │ │ │ ├── HashManager.php │ │ │ ├── HashServiceProvider.php │ │ │ ├── LICENSE.md │ │ │ └── composer.json │ │ │ ├── Http │ │ │ ├── Client │ │ │ │ ├── Concerns │ │ │ │ │ └── DeterminesStatusCode.php │ │ │ │ ├── ConnectionException.php │ │ │ │ ├── Events │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ ├── RequestSending.php │ │ │ │ │ └── ResponseReceived.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HttpClientException.php │ │ │ │ ├── PendingRequest.php │ │ │ │ ├── Pool.php │ │ │ │ ├── Request.php │ │ │ │ ├── RequestException.php │ │ │ │ ├── Response.php │ │ │ │ └── ResponseSequence.php │ │ │ ├── Concerns │ │ │ │ ├── CanBePrecognitive.php │ │ │ │ ├── InteractsWithContentTypes.php │ │ │ │ ├── InteractsWithFlashData.php │ │ │ │ └── InteractsWithInput.php │ │ │ ├── Exceptions │ │ │ │ ├── HttpResponseException.php │ │ │ │ ├── PostTooLargeException.php │ │ │ │ └── ThrottleRequestsException.php │ │ │ ├── File.php │ │ │ ├── FileHelpers.php │ │ │ ├── JsonResponse.php │ │ │ ├── LICENSE.md │ │ │ ├── Middleware │ │ │ │ ├── AddLinkHeadersForPreloadedAssets.php │ │ │ │ ├── CheckResponseForModifications.php │ │ │ │ ├── FrameGuard.php │ │ │ │ ├── HandleCors.php │ │ │ │ ├── SetCacheHeaders.php │ │ │ │ ├── TrustHosts.php │ │ │ │ └── TrustProxies.php │ │ │ ├── RedirectResponse.php │ │ │ ├── Request.php │ │ │ ├── Resources │ │ │ │ ├── CollectsResources.php │ │ │ │ ├── ConditionallyLoadsAttributes.php │ │ │ │ ├── DelegatesToResource.php │ │ │ │ ├── Json │ │ │ │ │ ├── AnonymousResourceCollection.php │ │ │ │ │ ├── JsonResource.php │ │ │ │ │ ├── PaginatedResourceResponse.php │ │ │ │ │ ├── ResourceCollection.php │ │ │ │ │ └── ResourceResponse.php │ │ │ │ ├── MergeValue.php │ │ │ │ ├── MissingValue.php │ │ │ │ └── PotentiallyMissing.php │ │ │ ├── Response.php │ │ │ ├── ResponseTrait.php │ │ │ ├── Testing │ │ │ │ ├── File.php │ │ │ │ ├── FileFactory.php │ │ │ │ └── MimeType.php │ │ │ ├── UploadedFile.php │ │ │ └── composer.json │ │ │ ├── Log │ │ │ ├── Events │ │ │ │ └── MessageLogged.php │ │ │ ├── LICENSE.md │ │ │ ├── LogManager.php │ │ │ ├── LogServiceProvider.php │ │ │ ├── Logger.php │ │ │ ├── ParsesLogConfiguration.php │ │ │ └── composer.json │ │ │ ├── Macroable │ │ │ ├── LICENSE.md │ │ │ ├── Traits │ │ │ │ └── Macroable.php │ │ │ └── composer.json │ │ │ ├── Mail │ │ │ ├── Attachment.php │ │ │ ├── Events │ │ │ │ ├── MessageSending.php │ │ │ │ └── MessageSent.php │ │ │ ├── LICENSE.md │ │ │ ├── MailManager.php │ │ │ ├── MailServiceProvider.php │ │ │ ├── Mailable.php │ │ │ ├── Mailables │ │ │ │ ├── Address.php │ │ │ │ ├── Attachment.php │ │ │ │ ├── Content.php │ │ │ │ ├── Envelope.php │ │ │ │ └── Headers.php │ │ │ ├── Mailer.php │ │ │ ├── Markdown.php │ │ │ ├── Message.php │ │ │ ├── PendingMail.php │ │ │ ├── SendQueuedMailable.php │ │ │ ├── SentMessage.php │ │ │ ├── TextMessage.php │ │ │ ├── Transport │ │ │ │ ├── ArrayTransport.php │ │ │ │ ├── LogTransport.php │ │ │ │ ├── SesTransport.php │ │ │ │ └── SesV2Transport.php │ │ │ ├── composer.json │ │ │ └── resources │ │ │ │ └── views │ │ │ │ ├── html │ │ │ │ ├── button.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ ├── message.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ ├── table.blade.php │ │ │ │ └── themes │ │ │ │ │ └── default.css │ │ │ │ └── text │ │ │ │ ├── button.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ ├── message.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ └── table.blade.php │ │ │ ├── Notifications │ │ │ ├── Action.php │ │ │ ├── AnonymousNotifiable.php │ │ │ ├── ChannelManager.php │ │ │ ├── Channels │ │ │ │ ├── BroadcastChannel.php │ │ │ │ ├── DatabaseChannel.php │ │ │ │ └── MailChannel.php │ │ │ ├── Console │ │ │ │ ├── NotificationTableCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── notifications.stub │ │ │ ├── DatabaseNotification.php │ │ │ ├── DatabaseNotificationCollection.php │ │ │ ├── Events │ │ │ │ ├── BroadcastNotificationCreated.php │ │ │ │ ├── NotificationFailed.php │ │ │ │ ├── NotificationSending.php │ │ │ │ └── NotificationSent.php │ │ │ ├── HasDatabaseNotifications.php │ │ │ ├── LICENSE.md │ │ │ ├── Messages │ │ │ │ ├── BroadcastMessage.php │ │ │ │ ├── DatabaseMessage.php │ │ │ │ ├── MailMessage.php │ │ │ │ └── SimpleMessage.php │ │ │ ├── Notifiable.php │ │ │ ├── Notification.php │ │ │ ├── NotificationSender.php │ │ │ ├── NotificationServiceProvider.php │ │ │ ├── RoutesNotifications.php │ │ │ ├── SendQueuedNotifications.php │ │ │ ├── composer.json │ │ │ └── resources │ │ │ │ └── views │ │ │ │ └── email.blade.php │ │ │ ├── Pagination │ │ │ ├── AbstractCursorPaginator.php │ │ │ ├── AbstractPaginator.php │ │ │ ├── Cursor.php │ │ │ ├── CursorPaginator.php │ │ │ ├── LICENSE.md │ │ │ ├── LengthAwarePaginator.php │ │ │ ├── PaginationServiceProvider.php │ │ │ ├── PaginationState.php │ │ │ ├── Paginator.php │ │ │ ├── UrlWindow.php │ │ │ ├── composer.json │ │ │ └── resources │ │ │ │ └── views │ │ │ │ ├── bootstrap-4.blade.php │ │ │ │ ├── bootstrap-5.blade.php │ │ │ │ ├── default.blade.php │ │ │ │ ├── semantic-ui.blade.php │ │ │ │ ├── simple-bootstrap-4.blade.php │ │ │ │ ├── simple-bootstrap-5.blade.php │ │ │ │ ├── simple-default.blade.php │ │ │ │ ├── simple-tailwind.blade.php │ │ │ │ └── tailwind.blade.php │ │ │ ├── Pipeline │ │ │ ├── Hub.php │ │ │ ├── LICENSE.md │ │ │ ├── Pipeline.php │ │ │ ├── PipelineServiceProvider.php │ │ │ └── composer.json │ │ │ ├── Process │ │ │ ├── Exceptions │ │ │ │ ├── ProcessFailedException.php │ │ │ │ └── ProcessTimedOutException.php │ │ │ ├── Factory.php │ │ │ ├── FakeInvokedProcess.php │ │ │ ├── FakeProcessDescription.php │ │ │ ├── FakeProcessResult.php │ │ │ ├── FakeProcessSequence.php │ │ │ ├── InvokedProcess.php │ │ │ ├── InvokedProcessPool.php │ │ │ ├── LICENSE.md │ │ │ ├── PendingProcess.php │ │ │ ├── Pipe.php │ │ │ ├── Pool.php │ │ │ ├── ProcessPoolResults.php │ │ │ ├── ProcessResult.php │ │ │ └── composer.json │ │ │ ├── Queue │ │ │ ├── Attributes │ │ │ │ └── WithoutRelations.php │ │ │ ├── BeanstalkdQueue.php │ │ │ ├── CallQueuedClosure.php │ │ │ ├── CallQueuedHandler.php │ │ │ ├── Capsule │ │ │ │ └── Manager.php │ │ │ ├── Connectors │ │ │ │ ├── BeanstalkdConnector.php │ │ │ │ ├── ConnectorInterface.php │ │ │ │ ├── DatabaseConnector.php │ │ │ │ ├── NullConnector.php │ │ │ │ ├── RedisConnector.php │ │ │ │ ├── SqsConnector.php │ │ │ │ └── SyncConnector.php │ │ │ ├── Console │ │ │ │ ├── BatchesTableCommand.php │ │ │ │ ├── ClearCommand.php │ │ │ │ ├── FailedTableCommand.php │ │ │ │ ├── FlushFailedCommand.php │ │ │ │ ├── ForgetFailedCommand.php │ │ │ │ ├── ListFailedCommand.php │ │ │ │ ├── ListenCommand.php │ │ │ │ ├── MonitorCommand.php │ │ │ │ ├── PruneBatchesCommand.php │ │ │ │ ├── PruneFailedJobsCommand.php │ │ │ │ ├── RestartCommand.php │ │ │ │ ├── RetryBatchCommand.php │ │ │ │ ├── RetryCommand.php │ │ │ │ ├── TableCommand.php │ │ │ │ ├── WorkCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── batches.stub │ │ │ │ │ ├── failed_jobs.stub │ │ │ │ │ └── jobs.stub │ │ │ ├── DatabaseQueue.php │ │ │ ├── Events │ │ │ │ ├── JobExceptionOccurred.php │ │ │ │ ├── JobFailed.php │ │ │ │ ├── JobPopped.php │ │ │ │ ├── JobPopping.php │ │ │ │ ├── JobProcessed.php │ │ │ │ ├── JobProcessing.php │ │ │ │ ├── JobQueued.php │ │ │ │ ├── JobReleasedAfterException.php │ │ │ │ ├── JobRetryRequested.php │ │ │ │ ├── JobTimedOut.php │ │ │ │ ├── Looping.php │ │ │ │ ├── QueueBusy.php │ │ │ │ └── WorkerStopping.php │ │ │ ├── Failed │ │ │ │ ├── CountableFailedJobProvider.php │ │ │ │ ├── DatabaseFailedJobProvider.php │ │ │ │ ├── DatabaseUuidFailedJobProvider.php │ │ │ │ ├── DynamoDbFailedJobProvider.php │ │ │ │ ├── FailedJobProviderInterface.php │ │ │ │ ├── FileFailedJobProvider.php │ │ │ │ ├── NullFailedJobProvider.php │ │ │ │ └── PrunableFailedJobProvider.php │ │ │ ├── InteractsWithQueue.php │ │ │ ├── InvalidPayloadException.php │ │ │ ├── Jobs │ │ │ │ ├── BeanstalkdJob.php │ │ │ │ ├── DatabaseJob.php │ │ │ │ ├── DatabaseJobRecord.php │ │ │ │ ├── Job.php │ │ │ │ ├── JobName.php │ │ │ │ ├── RedisJob.php │ │ │ │ ├── SqsJob.php │ │ │ │ └── SyncJob.php │ │ │ ├── LICENSE.md │ │ │ ├── Listener.php │ │ │ ├── ListenerOptions.php │ │ │ ├── LuaScripts.php │ │ │ ├── ManuallyFailedException.php │ │ │ ├── MaxAttemptsExceededException.php │ │ │ ├── Middleware │ │ │ │ ├── RateLimited.php │ │ │ │ ├── RateLimitedWithRedis.php │ │ │ │ ├── SkipIfBatchCancelled.php │ │ │ │ ├── ThrottlesExceptions.php │ │ │ │ ├── ThrottlesExceptionsWithRedis.php │ │ │ │ └── WithoutOverlapping.php │ │ │ ├── NullQueue.php │ │ │ ├── Queue.php │ │ │ ├── QueueManager.php │ │ │ ├── QueueServiceProvider.php │ │ │ ├── README.md │ │ │ ├── RedisQueue.php │ │ │ ├── SerializesAndRestoresModelIdentifiers.php │ │ │ ├── SerializesModels.php │ │ │ ├── SqsQueue.php │ │ │ ├── SyncQueue.php │ │ │ ├── TimeoutExceededException.php │ │ │ ├── Worker.php │ │ │ ├── WorkerOptions.php │ │ │ └── composer.json │ │ │ ├── Redis │ │ │ ├── Connections │ │ │ │ ├── Connection.php │ │ │ │ ├── PacksPhpRedisValues.php │ │ │ │ ├── PhpRedisClusterConnection.php │ │ │ │ ├── PhpRedisConnection.php │ │ │ │ ├── PredisClusterConnection.php │ │ │ │ └── PredisConnection.php │ │ │ ├── Connectors │ │ │ │ ├── PhpRedisConnector.php │ │ │ │ └── PredisConnector.php │ │ │ ├── Events │ │ │ │ └── CommandExecuted.php │ │ │ ├── LICENSE.md │ │ │ ├── Limiters │ │ │ │ ├── ConcurrencyLimiter.php │ │ │ │ ├── ConcurrencyLimiterBuilder.php │ │ │ │ ├── DurationLimiter.php │ │ │ │ └── DurationLimiterBuilder.php │ │ │ ├── RedisManager.php │ │ │ ├── RedisServiceProvider.php │ │ │ └── composer.json │ │ │ ├── Routing │ │ │ ├── AbstractRouteCollection.php │ │ │ ├── CallableDispatcher.php │ │ │ ├── CompiledRouteCollection.php │ │ │ ├── Console │ │ │ │ ├── ControllerMakeCommand.php │ │ │ │ ├── MiddlewareMakeCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── controller.api.stub │ │ │ │ │ ├── controller.invokable.stub │ │ │ │ │ ├── controller.model.api.stub │ │ │ │ │ ├── controller.model.stub │ │ │ │ │ ├── controller.nested.api.stub │ │ │ │ │ ├── controller.nested.singleton.api.stub │ │ │ │ │ ├── controller.nested.singleton.stub │ │ │ │ │ ├── controller.nested.stub │ │ │ │ │ ├── controller.plain.stub │ │ │ │ │ ├── controller.singleton.api.stub │ │ │ │ │ ├── controller.singleton.stub │ │ │ │ │ ├── controller.stub │ │ │ │ │ └── middleware.stub │ │ │ ├── Contracts │ │ │ │ ├── CallableDispatcher.php │ │ │ │ └── ControllerDispatcher.php │ │ │ ├── Controller.php │ │ │ ├── ControllerDispatcher.php │ │ │ ├── ControllerMiddlewareOptions.php │ │ │ ├── Controllers │ │ │ │ ├── HasMiddleware.php │ │ │ │ └── Middleware.php │ │ │ ├── CreatesRegularExpressionRouteConstraints.php │ │ │ ├── Events │ │ │ │ ├── PreparingResponse.php │ │ │ │ ├── ResponsePrepared.php │ │ │ │ ├── RouteMatched.php │ │ │ │ └── Routing.php │ │ │ ├── Exceptions │ │ │ │ ├── BackedEnumCaseNotFoundException.php │ │ │ │ ├── InvalidSignatureException.php │ │ │ │ ├── StreamedResponseException.php │ │ │ │ └── UrlGenerationException.php │ │ │ ├── FiltersControllerMiddleware.php │ │ │ ├── ImplicitRouteBinding.php │ │ │ ├── LICENSE.md │ │ │ ├── Matching │ │ │ │ ├── HostValidator.php │ │ │ │ ├── MethodValidator.php │ │ │ │ ├── SchemeValidator.php │ │ │ │ ├── UriValidator.php │ │ │ │ └── ValidatorInterface.php │ │ │ ├── Middleware │ │ │ │ ├── SubstituteBindings.php │ │ │ │ ├── ThrottleRequests.php │ │ │ │ ├── ThrottleRequestsWithRedis.php │ │ │ │ └── ValidateSignature.php │ │ │ ├── MiddlewareNameResolver.php │ │ │ ├── PendingResourceRegistration.php │ │ │ ├── PendingSingletonResourceRegistration.php │ │ │ ├── Pipeline.php │ │ │ ├── RedirectController.php │ │ │ ├── Redirector.php │ │ │ ├── ResolvesRouteDependencies.php │ │ │ ├── ResourceRegistrar.php │ │ │ ├── ResponseFactory.php │ │ │ ├── Route.php │ │ │ ├── RouteAction.php │ │ │ ├── RouteBinding.php │ │ │ ├── RouteCollection.php │ │ │ ├── RouteCollectionInterface.php │ │ │ ├── RouteDependencyResolverTrait.php │ │ │ ├── RouteFileRegistrar.php │ │ │ ├── RouteGroup.php │ │ │ ├── RouteParameterBinder.php │ │ │ ├── RouteRegistrar.php │ │ │ ├── RouteSignatureParameters.php │ │ │ ├── RouteUri.php │ │ │ ├── RouteUrlGenerator.php │ │ │ ├── Router.php │ │ │ ├── RoutingServiceProvider.php │ │ │ ├── SortedMiddleware.php │ │ │ ├── UrlGenerator.php │ │ │ ├── ViewController.php │ │ │ └── composer.json │ │ │ ├── Session │ │ │ ├── ArraySessionHandler.php │ │ │ ├── CacheBasedSessionHandler.php │ │ │ ├── Console │ │ │ │ ├── SessionTableCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── database.stub │ │ │ ├── CookieSessionHandler.php │ │ │ ├── DatabaseSessionHandler.php │ │ │ ├── EncryptedStore.php │ │ │ ├── ExistenceAwareInterface.php │ │ │ ├── FileSessionHandler.php │ │ │ ├── LICENSE.md │ │ │ ├── Middleware │ │ │ │ ├── AuthenticateSession.php │ │ │ │ └── StartSession.php │ │ │ ├── NullSessionHandler.php │ │ │ ├── SessionManager.php │ │ │ ├── SessionServiceProvider.php │ │ │ ├── Store.php │ │ │ ├── SymfonySessionDecorator.php │ │ │ ├── TokenMismatchException.php │ │ │ └── composer.json │ │ │ ├── Support │ │ │ ├── AggregateServiceProvider.php │ │ │ ├── Benchmark.php │ │ │ ├── Carbon.php │ │ │ ├── Composer.php │ │ │ ├── ConfigurationUrlParser.php │ │ │ ├── DateFactory.php │ │ │ ├── DefaultProviders.php │ │ │ ├── Env.php │ │ │ ├── Exceptions │ │ │ │ └── MathException.php │ │ │ ├── Facades │ │ │ │ ├── App.php │ │ │ │ ├── Artisan.php │ │ │ │ ├── Auth.php │ │ │ │ ├── Blade.php │ │ │ │ ├── Broadcast.php │ │ │ │ ├── Bus.php │ │ │ │ ├── Cache.php │ │ │ │ ├── Config.php │ │ │ │ ├── Cookie.php │ │ │ │ ├── Crypt.php │ │ │ │ ├── DB.php │ │ │ │ ├── Date.php │ │ │ │ ├── Event.php │ │ │ │ ├── Facade.php │ │ │ │ ├── File.php │ │ │ │ ├── Gate.php │ │ │ │ ├── Hash.php │ │ │ │ ├── Http.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Log.php │ │ │ │ ├── Mail.php │ │ │ │ ├── Notification.php │ │ │ │ ├── ParallelTesting.php │ │ │ │ ├── Password.php │ │ │ │ ├── Pipeline.php │ │ │ │ ├── Process.php │ │ │ │ ├── Queue.php │ │ │ │ ├── RateLimiter.php │ │ │ │ ├── Redirect.php │ │ │ │ ├── Redis.php │ │ │ │ ├── Request.php │ │ │ │ ├── Response.php │ │ │ │ ├── Route.php │ │ │ │ ├── Schema.php │ │ │ │ ├── Session.php │ │ │ │ ├── Storage.php │ │ │ │ ├── URL.php │ │ │ │ ├── Validator.php │ │ │ │ ├── View.php │ │ │ │ └── Vite.php │ │ │ ├── Fluent.php │ │ │ ├── HigherOrderTapProxy.php │ │ │ ├── HtmlString.php │ │ │ ├── InteractsWithTime.php │ │ │ ├── Js.php │ │ │ ├── LICENSE.md │ │ │ ├── Lottery.php │ │ │ ├── Manager.php │ │ │ ├── MessageBag.php │ │ │ ├── MultipleInstanceManager.php │ │ │ ├── NamespacedItemResolver.php │ │ │ ├── Optional.php │ │ │ ├── Pluralizer.php │ │ │ ├── ProcessUtils.php │ │ │ ├── Reflector.php │ │ │ ├── ServiceProvider.php │ │ │ ├── Sleep.php │ │ │ ├── Str.php │ │ │ ├── Stringable.php │ │ │ ├── Testing │ │ │ │ └── Fakes │ │ │ │ │ ├── BatchFake.php │ │ │ │ │ ├── BatchRepositoryFake.php │ │ │ │ │ ├── BusFake.php │ │ │ │ │ ├── EventFake.php │ │ │ │ │ ├── Fake.php │ │ │ │ │ ├── MailFake.php │ │ │ │ │ ├── NotificationFake.php │ │ │ │ │ ├── PendingBatchFake.php │ │ │ │ │ ├── PendingChainFake.php │ │ │ │ │ ├── PendingMailFake.php │ │ │ │ │ └── QueueFake.php │ │ │ ├── Timebox.php │ │ │ ├── Traits │ │ │ │ ├── CapsuleManagerTrait.php │ │ │ │ ├── ForwardsCalls.php │ │ │ │ ├── Localizable.php │ │ │ │ ├── ReflectsClosures.php │ │ │ │ └── Tappable.php │ │ │ ├── ValidatedInput.php │ │ │ ├── ViewErrorBag.php │ │ │ ├── composer.json │ │ │ └── helpers.php │ │ │ ├── Testing │ │ │ ├── Assert.php │ │ │ ├── AssertableJsonString.php │ │ │ ├── Concerns │ │ │ │ ├── AssertsStatusCodes.php │ │ │ │ ├── RunsInParallel.php │ │ │ │ └── TestDatabases.php │ │ │ ├── Constraints │ │ │ │ ├── ArraySubset.php │ │ │ │ ├── CountInDatabase.php │ │ │ │ ├── HasInDatabase.php │ │ │ │ ├── NotSoftDeletedInDatabase.php │ │ │ │ ├── SeeInOrder.php │ │ │ │ └── SoftDeletedInDatabase.php │ │ │ ├── Exceptions │ │ │ │ └── InvalidArgumentException.php │ │ │ ├── Fluent │ │ │ │ ├── AssertableJson.php │ │ │ │ └── Concerns │ │ │ │ │ ├── Debugging.php │ │ │ │ │ ├── Has.php │ │ │ │ │ ├── Interaction.php │ │ │ │ │ └── Matching.php │ │ │ ├── LICENSE.md │ │ │ ├── LoggedExceptionCollection.php │ │ │ ├── ParallelConsoleOutput.php │ │ │ ├── ParallelRunner.php │ │ │ ├── ParallelTesting.php │ │ │ ├── ParallelTestingServiceProvider.php │ │ │ ├── PendingCommand.php │ │ │ ├── TestComponent.php │ │ │ ├── TestResponse.php │ │ │ ├── TestView.php │ │ │ └── composer.json │ │ │ ├── Translation │ │ │ ├── ArrayLoader.php │ │ │ ├── CreatesPotentiallyTranslatedStrings.php │ │ │ ├── FileLoader.php │ │ │ ├── LICENSE.md │ │ │ ├── MessageSelector.php │ │ │ ├── PotentiallyTranslatedString.php │ │ │ ├── TranslationServiceProvider.php │ │ │ ├── Translator.php │ │ │ ├── composer.json │ │ │ └── lang │ │ │ │ └── en │ │ │ │ ├── auth.php │ │ │ │ ├── pagination.php │ │ │ │ ├── passwords.php │ │ │ │ └── validation.php │ │ │ ├── Validation │ │ │ ├── ClosureValidationRule.php │ │ │ ├── Concerns │ │ │ │ ├── FilterEmailValidation.php │ │ │ │ ├── FormatsMessages.php │ │ │ │ ├── ReplacesAttributes.php │ │ │ │ └── ValidatesAttributes.php │ │ │ ├── ConditionalRules.php │ │ │ ├── DatabasePresenceVerifier.php │ │ │ ├── DatabasePresenceVerifierInterface.php │ │ │ ├── Factory.php │ │ │ ├── InvokableValidationRule.php │ │ │ ├── LICENSE.md │ │ │ ├── NestedRules.php │ │ │ ├── NotPwnedVerifier.php │ │ │ ├── PresenceVerifierInterface.php │ │ │ ├── Rule.php │ │ │ ├── Rules │ │ │ │ ├── Can.php │ │ │ │ ├── DatabaseRule.php │ │ │ │ ├── Dimensions.php │ │ │ │ ├── Enum.php │ │ │ │ ├── ExcludeIf.php │ │ │ │ ├── Exists.php │ │ │ │ ├── File.php │ │ │ │ ├── ImageFile.php │ │ │ │ ├── In.php │ │ │ │ ├── NotIn.php │ │ │ │ ├── Password.php │ │ │ │ ├── ProhibitedIf.php │ │ │ │ ├── RequiredIf.php │ │ │ │ └── Unique.php │ │ │ ├── UnauthorizedException.php │ │ │ ├── ValidatesWhenResolvedTrait.php │ │ │ ├── ValidationData.php │ │ │ ├── ValidationException.php │ │ │ ├── ValidationRuleParser.php │ │ │ ├── ValidationServiceProvider.php │ │ │ ├── Validator.php │ │ │ └── composer.json │ │ │ └── View │ │ │ ├── AnonymousComponent.php │ │ │ ├── AppendableAttributeValue.php │ │ │ ├── Compilers │ │ │ ├── BladeCompiler.php │ │ │ ├── Compiler.php │ │ │ ├── CompilerInterface.php │ │ │ ├── ComponentTagCompiler.php │ │ │ └── Concerns │ │ │ │ ├── CompilesAuthorizations.php │ │ │ │ ├── CompilesClasses.php │ │ │ │ ├── CompilesComments.php │ │ │ │ ├── CompilesComponents.php │ │ │ │ ├── CompilesConditionals.php │ │ │ │ ├── CompilesEchos.php │ │ │ │ ├── CompilesErrors.php │ │ │ │ ├── CompilesFragments.php │ │ │ │ ├── CompilesHelpers.php │ │ │ │ ├── CompilesIncludes.php │ │ │ │ ├── CompilesInjections.php │ │ │ │ ├── CompilesJs.php │ │ │ │ ├── CompilesJson.php │ │ │ │ ├── CompilesLayouts.php │ │ │ │ ├── CompilesLoops.php │ │ │ │ ├── CompilesRawPhp.php │ │ │ │ ├── CompilesStacks.php │ │ │ │ ├── CompilesStyles.php │ │ │ │ └── CompilesTranslations.php │ │ │ ├── Component.php │ │ │ ├── ComponentAttributeBag.php │ │ │ ├── ComponentSlot.php │ │ │ ├── Concerns │ │ │ ├── ManagesComponents.php │ │ │ ├── ManagesEvents.php │ │ │ ├── ManagesFragments.php │ │ │ ├── ManagesLayouts.php │ │ │ ├── ManagesLoops.php │ │ │ ├── ManagesStacks.php │ │ │ └── ManagesTranslations.php │ │ │ ├── DynamicComponent.php │ │ │ ├── Engines │ │ │ ├── CompilerEngine.php │ │ │ ├── Engine.php │ │ │ ├── EngineResolver.php │ │ │ ├── FileEngine.php │ │ │ └── PhpEngine.php │ │ │ ├── Factory.php │ │ │ ├── FileViewFinder.php │ │ │ ├── InvokableComponentVariable.php │ │ │ ├── LICENSE.md │ │ │ ├── Middleware │ │ │ └── ShareErrorsFromSession.php │ │ │ ├── View.php │ │ │ ├── ViewException.php │ │ │ ├── ViewFinderInterface.php │ │ │ ├── ViewName.php │ │ │ ├── ViewServiceProvider.php │ │ │ └── composer.json │ ├── prompts │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ └── src │ │ │ ├── Concerns │ │ │ ├── Colors.php │ │ │ ├── Cursor.php │ │ │ ├── Erase.php │ │ │ ├── Events.php │ │ │ ├── FakesInputOutput.php │ │ │ ├── Fallback.php │ │ │ ├── Interactivity.php │ │ │ ├── Scrolling.php │ │ │ ├── Termwind.php │ │ │ ├── Themes.php │ │ │ ├── Truncation.php │ │ │ └── TypedValue.php │ │ │ ├── ConfirmPrompt.php │ │ │ ├── Exceptions │ │ │ └── NonInteractiveValidationException.php │ │ │ ├── Key.php │ │ │ ├── MultiSearchPrompt.php │ │ │ ├── MultiSelectPrompt.php │ │ │ ├── Note.php │ │ │ ├── Output │ │ │ ├── BufferedConsoleOutput.php │ │ │ └── ConsoleOutput.php │ │ │ ├── PasswordPrompt.php │ │ │ ├── Progress.php │ │ │ ├── Prompt.php │ │ │ ├── SearchPrompt.php │ │ │ ├── SelectPrompt.php │ │ │ ├── Spinner.php │ │ │ ├── SuggestPrompt.php │ │ │ ├── Table.php │ │ │ ├── Terminal.php │ │ │ ├── TextPrompt.php │ │ │ ├── Themes │ │ │ ├── Contracts │ │ │ │ └── Scrolling.php │ │ │ └── Default │ │ │ │ ├── Concerns │ │ │ │ ├── DrawsBoxes.php │ │ │ │ └── DrawsScrollbars.php │ │ │ │ ├── ConfirmPromptRenderer.php │ │ │ │ ├── MultiSearchPromptRenderer.php │ │ │ │ ├── MultiSelectPromptRenderer.php │ │ │ │ ├── NoteRenderer.php │ │ │ │ ├── PasswordPromptRenderer.php │ │ │ │ ├── ProgressRenderer.php │ │ │ │ ├── Renderer.php │ │ │ │ ├── SearchPromptRenderer.php │ │ │ │ ├── SelectPromptRenderer.php │ │ │ │ ├── SpinnerRenderer.php │ │ │ │ ├── SuggestPromptRenderer.php │ │ │ │ ├── TableRenderer.php │ │ │ │ └── TextPromptRenderer.php │ │ │ └── helpers.php │ ├── sail │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin │ │ │ └── sail │ │ ├── composer.json │ │ ├── database │ │ │ ├── mysql │ │ │ │ └── create-testing-database.sh │ │ │ └── pgsql │ │ │ │ └── create-testing-database.sql │ │ ├── runtimes │ │ │ ├── 8.0 │ │ │ │ ├── Dockerfile │ │ │ │ ├── php.ini │ │ │ │ ├── start-container │ │ │ │ └── supervisord.conf │ │ │ ├── 8.1 │ │ │ │ ├── Dockerfile │ │ │ │ ├── php.ini │ │ │ │ ├── start-container │ │ │ │ └── supervisord.conf │ │ │ ├── 8.2 │ │ │ │ ├── Dockerfile │ │ │ │ ├── php.ini │ │ │ │ ├── start-container │ │ │ │ └── supervisord.conf │ │ │ └── 8.3 │ │ │ │ ├── Dockerfile │ │ │ │ ├── php.ini │ │ │ │ ├── start-container │ │ │ │ └── supervisord.conf │ │ ├── src │ │ │ ├── Console │ │ │ │ ├── AddCommand.php │ │ │ │ ├── Concerns │ │ │ │ │ └── InteractsWithDockerComposeServices.php │ │ │ │ ├── InstallCommand.php │ │ │ │ └── PublishCommand.php │ │ │ └── SailServiceProvider.php │ │ └── stubs │ │ │ ├── devcontainer.stub │ │ │ ├── docker-compose.stub │ │ │ ├── mailpit.stub │ │ │ ├── mariadb.stub │ │ │ ├── meilisearch.stub │ │ │ ├── memcached.stub │ │ │ ├── minio.stub │ │ │ ├── mysql.stub │ │ │ ├── pgsql.stub │ │ │ ├── redis.stub │ │ │ ├── selenium.stub │ │ │ └── soketi.stub │ ├── sanctum │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ ├── config │ │ │ └── sanctum.php │ │ ├── database │ │ │ └── migrations │ │ │ │ └── 2019_12_14_000001_create_personal_access_tokens_table.php │ │ ├── src │ │ │ ├── Console │ │ │ │ └── Commands │ │ │ │ │ └── PruneExpired.php │ │ │ ├── Contracts │ │ │ │ ├── HasAbilities.php │ │ │ │ └── HasApiTokens.php │ │ │ ├── Events │ │ │ │ └── TokenAuthenticated.php │ │ │ ├── Exceptions │ │ │ │ ├── MissingAbilityException.php │ │ │ │ └── MissingScopeException.php │ │ │ ├── Guard.php │ │ │ ├── HasApiTokens.php │ │ │ ├── Http │ │ │ │ ├── Controllers │ │ │ │ │ └── CsrfCookieController.php │ │ │ │ └── Middleware │ │ │ │ │ ├── AuthenticateSession.php │ │ │ │ │ ├── CheckAbilities.php │ │ │ │ │ ├── CheckForAnyAbility.php │ │ │ │ │ ├── CheckForAnyScope.php │ │ │ │ │ ├── CheckScopes.php │ │ │ │ │ └── EnsureFrontendRequestsAreStateful.php │ │ │ ├── NewAccessToken.php │ │ │ ├── PersonalAccessToken.php │ │ │ ├── Sanctum.php │ │ │ ├── SanctumServiceProvider.php │ │ │ └── TransientToken.php │ │ └── testbench.yaml │ ├── serializable-closure │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Contracts │ │ │ ├── Serializable.php │ │ │ └── Signer.php │ │ │ ├── Exceptions │ │ │ ├── InvalidSignatureException.php │ │ │ ├── MissingSecretKeyException.php │ │ │ └── PhpVersionNotSupportedException.php │ │ │ ├── SerializableClosure.php │ │ │ ├── Serializers │ │ │ ├── Native.php │ │ │ └── Signed.php │ │ │ ├── Signers │ │ │ └── Hmac.php │ │ │ ├── Support │ │ │ ├── ClosureScope.php │ │ │ ├── ClosureStream.php │ │ │ ├── ReflectionClosure.php │ │ │ └── SelfReference.php │ │ │ └── UnsignedSerializableClosure.php │ ├── socialite │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AbstractUser.php │ │ │ ├── Contracts │ │ │ ├── Factory.php │ │ │ ├── Provider.php │ │ │ └── User.php │ │ │ ├── Facades │ │ │ └── Socialite.php │ │ │ ├── One │ │ │ ├── AbstractProvider.php │ │ │ ├── MissingTemporaryCredentialsException.php │ │ │ ├── MissingVerifierException.php │ │ │ ├── TwitterProvider.php │ │ │ └── User.php │ │ │ ├── SocialiteManager.php │ │ │ ├── SocialiteServiceProvider.php │ │ │ └── Two │ │ │ ├── AbstractProvider.php │ │ │ ├── BitbucketProvider.php │ │ │ ├── FacebookProvider.php │ │ │ ├── GithubProvider.php │ │ │ ├── GitlabProvider.php │ │ │ ├── GoogleProvider.php │ │ │ ├── InvalidStateException.php │ │ │ ├── LinkedInOpenIdProvider.php │ │ │ ├── LinkedInProvider.php │ │ │ ├── ProviderInterface.php │ │ │ ├── SlackProvider.php │ │ │ ├── TwitterProvider.php │ │ │ └── User.php │ └── tinker │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ └── tinker.php │ │ └── src │ │ ├── ClassAliasAutoloader.php │ │ ├── Console │ │ └── TinkerCommand.php │ │ ├── TinkerCaster.php │ │ └── TinkerServiceProvider.php ├── league │ ├── commonmark │ │ ├── .phpstorm.meta.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CommonMarkConverter.php │ │ │ ├── ConverterInterface.php │ │ │ ├── Delimiter │ │ │ ├── Delimiter.php │ │ │ ├── DelimiterInterface.php │ │ │ ├── DelimiterParser.php │ │ │ ├── DelimiterStack.php │ │ │ └── Processor │ │ │ │ ├── DelimiterProcessorCollection.php │ │ │ │ ├── DelimiterProcessorCollectionInterface.php │ │ │ │ ├── DelimiterProcessorInterface.php │ │ │ │ └── StaggeredDelimiterProcessor.php │ │ │ ├── Environment │ │ │ ├── Environment.php │ │ │ ├── EnvironmentAwareInterface.php │ │ │ ├── EnvironmentBuilderInterface.php │ │ │ └── EnvironmentInterface.php │ │ │ ├── Event │ │ │ ├── AbstractEvent.php │ │ │ ├── DocumentParsedEvent.php │ │ │ ├── DocumentPreParsedEvent.php │ │ │ ├── DocumentPreRenderEvent.php │ │ │ ├── DocumentRenderedEvent.php │ │ │ └── ListenerData.php │ │ │ ├── Exception │ │ │ ├── AlreadyInitializedException.php │ │ │ ├── CommonMarkException.php │ │ │ ├── IOException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── MissingDependencyException.php │ │ │ └── UnexpectedEncodingException.php │ │ │ ├── Extension │ │ │ ├── Attributes │ │ │ │ ├── AttributesExtension.php │ │ │ │ ├── Event │ │ │ │ │ └── AttributesListener.php │ │ │ │ ├── Node │ │ │ │ │ ├── Attributes.php │ │ │ │ │ └── AttributesInline.php │ │ │ │ ├── Parser │ │ │ │ │ ├── AttributesBlockContinueParser.php │ │ │ │ │ ├── AttributesBlockStartParser.php │ │ │ │ │ └── AttributesInlineParser.php │ │ │ │ └── Util │ │ │ │ │ └── AttributesHelper.php │ │ │ ├── Autolink │ │ │ │ ├── AutolinkExtension.php │ │ │ │ ├── EmailAutolinkParser.php │ │ │ │ └── UrlAutolinkParser.php │ │ │ ├── CommonMark │ │ │ │ ├── CommonMarkCoreExtension.php │ │ │ │ ├── Delimiter │ │ │ │ │ └── Processor │ │ │ │ │ │ └── EmphasisDelimiterProcessor.php │ │ │ │ ├── Node │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── BlockQuote.php │ │ │ │ │ │ ├── FencedCode.php │ │ │ │ │ │ ├── Heading.php │ │ │ │ │ │ ├── HtmlBlock.php │ │ │ │ │ │ ├── IndentedCode.php │ │ │ │ │ │ ├── ListBlock.php │ │ │ │ │ │ ├── ListData.php │ │ │ │ │ │ ├── ListItem.php │ │ │ │ │ │ └── ThematicBreak.php │ │ │ │ │ └── Inline │ │ │ │ │ │ ├── AbstractWebResource.php │ │ │ │ │ │ ├── Code.php │ │ │ │ │ │ ├── Emphasis.php │ │ │ │ │ │ ├── HtmlInline.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── Link.php │ │ │ │ │ │ └── Strong.php │ │ │ │ ├── Parser │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── BlockQuoteParser.php │ │ │ │ │ │ ├── BlockQuoteStartParser.php │ │ │ │ │ │ ├── FencedCodeParser.php │ │ │ │ │ │ ├── FencedCodeStartParser.php │ │ │ │ │ │ ├── HeadingParser.php │ │ │ │ │ │ ├── HeadingStartParser.php │ │ │ │ │ │ ├── HtmlBlockParser.php │ │ │ │ │ │ ├── HtmlBlockStartParser.php │ │ │ │ │ │ ├── IndentedCodeParser.php │ │ │ │ │ │ ├── IndentedCodeStartParser.php │ │ │ │ │ │ ├── ListBlockParser.php │ │ │ │ │ │ ├── ListBlockStartParser.php │ │ │ │ │ │ ├── ListItemParser.php │ │ │ │ │ │ ├── ThematicBreakParser.php │ │ │ │ │ │ └── ThematicBreakStartParser.php │ │ │ │ │ └── Inline │ │ │ │ │ │ ├── AutolinkParser.php │ │ │ │ │ │ ├── BacktickParser.php │ │ │ │ │ │ ├── BangParser.php │ │ │ │ │ │ ├── CloseBracketParser.php │ │ │ │ │ │ ├── EntityParser.php │ │ │ │ │ │ ├── EscapableParser.php │ │ │ │ │ │ ├── HtmlInlineParser.php │ │ │ │ │ │ └── OpenBracketParser.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Block │ │ │ │ │ ├── BlockQuoteRenderer.php │ │ │ │ │ ├── FencedCodeRenderer.php │ │ │ │ │ ├── HeadingRenderer.php │ │ │ │ │ ├── HtmlBlockRenderer.php │ │ │ │ │ ├── IndentedCodeRenderer.php │ │ │ │ │ ├── ListBlockRenderer.php │ │ │ │ │ ├── ListItemRenderer.php │ │ │ │ │ └── ThematicBreakRenderer.php │ │ │ │ │ └── Inline │ │ │ │ │ ├── CodeRenderer.php │ │ │ │ │ ├── EmphasisRenderer.php │ │ │ │ │ ├── HtmlInlineRenderer.php │ │ │ │ │ ├── ImageRenderer.php │ │ │ │ │ ├── LinkRenderer.php │ │ │ │ │ └── StrongRenderer.php │ │ │ ├── ConfigurableExtensionInterface.php │ │ │ ├── DefaultAttributes │ │ │ │ ├── ApplyDefaultAttributesProcessor.php │ │ │ │ └── DefaultAttributesExtension.php │ │ │ ├── DescriptionList │ │ │ │ ├── DescriptionListExtension.php │ │ │ │ ├── Event │ │ │ │ │ ├── ConsecutiveDescriptionListMerger.php │ │ │ │ │ └── LooseDescriptionHandler.php │ │ │ │ ├── Node │ │ │ │ │ ├── Description.php │ │ │ │ │ ├── DescriptionList.php │ │ │ │ │ └── DescriptionTerm.php │ │ │ │ ├── Parser │ │ │ │ │ ├── DescriptionContinueParser.php │ │ │ │ │ ├── DescriptionListContinueParser.php │ │ │ │ │ ├── DescriptionStartParser.php │ │ │ │ │ └── DescriptionTermContinueParser.php │ │ │ │ └── Renderer │ │ │ │ │ ├── DescriptionListRenderer.php │ │ │ │ │ ├── DescriptionRenderer.php │ │ │ │ │ └── DescriptionTermRenderer.php │ │ │ ├── DisallowedRawHtml │ │ │ │ ├── DisallowedRawHtmlExtension.php │ │ │ │ └── DisallowedRawHtmlRenderer.php │ │ │ ├── Embed │ │ │ │ ├── Bridge │ │ │ │ │ └── OscaroteroEmbedAdapter.php │ │ │ │ ├── DomainFilteringAdapter.php │ │ │ │ ├── Embed.php │ │ │ │ ├── EmbedAdapterInterface.php │ │ │ │ ├── EmbedExtension.php │ │ │ │ ├── EmbedParser.php │ │ │ │ ├── EmbedProcessor.php │ │ │ │ ├── EmbedRenderer.php │ │ │ │ └── EmbedStartParser.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── ExternalLink │ │ │ │ ├── ExternalLinkExtension.php │ │ │ │ └── ExternalLinkProcessor.php │ │ │ ├── Footnote │ │ │ │ ├── Event │ │ │ │ │ ├── AnonymousFootnotesListener.php │ │ │ │ │ ├── FixOrphanedFootnotesAndRefsListener.php │ │ │ │ │ ├── GatherFootnotesListener.php │ │ │ │ │ └── NumberFootnotesListener.php │ │ │ │ ├── FootnoteExtension.php │ │ │ │ ├── Node │ │ │ │ │ ├── Footnote.php │ │ │ │ │ ├── FootnoteBackref.php │ │ │ │ │ ├── FootnoteContainer.php │ │ │ │ │ └── FootnoteRef.php │ │ │ │ ├── Parser │ │ │ │ │ ├── AnonymousFootnoteRefParser.php │ │ │ │ │ ├── FootnoteParser.php │ │ │ │ │ ├── FootnoteRefParser.php │ │ │ │ │ └── FootnoteStartParser.php │ │ │ │ └── Renderer │ │ │ │ │ ├── FootnoteBackrefRenderer.php │ │ │ │ │ ├── FootnoteContainerRenderer.php │ │ │ │ │ ├── FootnoteRefRenderer.php │ │ │ │ │ └── FootnoteRenderer.php │ │ │ ├── FrontMatter │ │ │ │ ├── Data │ │ │ │ │ ├── FrontMatterDataParserInterface.php │ │ │ │ │ ├── LibYamlFrontMatterParser.php │ │ │ │ │ └── SymfonyYamlFrontMatterParser.php │ │ │ │ ├── Exception │ │ │ │ │ └── InvalidFrontMatterException.php │ │ │ │ ├── FrontMatterExtension.php │ │ │ │ ├── FrontMatterParser.php │ │ │ │ ├── FrontMatterParserInterface.php │ │ │ │ ├── FrontMatterProviderInterface.php │ │ │ │ ├── Input │ │ │ │ │ └── MarkdownInputWithFrontMatter.php │ │ │ │ ├── Listener │ │ │ │ │ ├── FrontMatterPostRenderListener.php │ │ │ │ │ └── FrontMatterPreParser.php │ │ │ │ └── Output │ │ │ │ │ └── RenderedContentWithFrontMatter.php │ │ │ ├── GithubFlavoredMarkdownExtension.php │ │ │ ├── HeadingPermalink │ │ │ │ ├── HeadingPermalink.php │ │ │ │ ├── HeadingPermalinkExtension.php │ │ │ │ ├── HeadingPermalinkProcessor.php │ │ │ │ └── HeadingPermalinkRenderer.php │ │ │ ├── InlinesOnly │ │ │ │ ├── ChildRenderer.php │ │ │ │ └── InlinesOnlyExtension.php │ │ │ ├── Mention │ │ │ │ ├── Generator │ │ │ │ │ ├── CallbackGenerator.php │ │ │ │ │ ├── MentionGeneratorInterface.php │ │ │ │ │ └── StringTemplateLinkGenerator.php │ │ │ │ ├── Mention.php │ │ │ │ ├── MentionExtension.php │ │ │ │ └── MentionParser.php │ │ │ ├── SmartPunct │ │ │ │ ├── DashParser.php │ │ │ │ ├── EllipsesParser.php │ │ │ │ ├── Quote.php │ │ │ │ ├── QuoteParser.php │ │ │ │ ├── QuoteProcessor.php │ │ │ │ ├── ReplaceUnpairedQuotesListener.php │ │ │ │ └── SmartPunctExtension.php │ │ │ ├── Strikethrough │ │ │ │ ├── Strikethrough.php │ │ │ │ ├── StrikethroughDelimiterProcessor.php │ │ │ │ ├── StrikethroughExtension.php │ │ │ │ └── StrikethroughRenderer.php │ │ │ ├── Table │ │ │ │ ├── Table.php │ │ │ │ ├── TableCell.php │ │ │ │ ├── TableCellRenderer.php │ │ │ │ ├── TableExtension.php │ │ │ │ ├── TableParser.php │ │ │ │ ├── TableRenderer.php │ │ │ │ ├── TableRow.php │ │ │ │ ├── TableRowRenderer.php │ │ │ │ ├── TableSection.php │ │ │ │ ├── TableSectionRenderer.php │ │ │ │ └── TableStartParser.php │ │ │ ├── TableOfContents │ │ │ │ ├── Node │ │ │ │ │ ├── TableOfContents.php │ │ │ │ │ └── TableOfContentsPlaceholder.php │ │ │ │ ├── Normalizer │ │ │ │ │ ├── AsIsNormalizerStrategy.php │ │ │ │ │ ├── FlatNormalizerStrategy.php │ │ │ │ │ ├── NormalizerStrategyInterface.php │ │ │ │ │ └── RelativeNormalizerStrategy.php │ │ │ │ ├── TableOfContentsBuilder.php │ │ │ │ ├── TableOfContentsExtension.php │ │ │ │ ├── TableOfContentsGenerator.php │ │ │ │ ├── TableOfContentsGeneratorInterface.php │ │ │ │ ├── TableOfContentsPlaceholderParser.php │ │ │ │ ├── TableOfContentsPlaceholderRenderer.php │ │ │ │ └── TableOfContentsRenderer.php │ │ │ └── TaskList │ │ │ │ ├── TaskListExtension.php │ │ │ │ ├── TaskListItemMarker.php │ │ │ │ ├── TaskListItemMarkerParser.php │ │ │ │ └── TaskListItemMarkerRenderer.php │ │ │ ├── GithubFlavoredMarkdownConverter.php │ │ │ ├── Input │ │ │ ├── MarkdownInput.php │ │ │ └── MarkdownInputInterface.php │ │ │ ├── MarkdownConverter.php │ │ │ ├── MarkdownConverterInterface.php │ │ │ ├── Node │ │ │ ├── Block │ │ │ │ ├── AbstractBlock.php │ │ │ │ ├── Document.php │ │ │ │ ├── Paragraph.php │ │ │ │ └── TightBlockInterface.php │ │ │ ├── Inline │ │ │ │ ├── AbstractInline.php │ │ │ │ ├── AbstractStringContainer.php │ │ │ │ ├── AdjacentTextMerger.php │ │ │ │ ├── DelimitedInterface.php │ │ │ │ ├── Newline.php │ │ │ │ └── Text.php │ │ │ ├── Node.php │ │ │ ├── NodeIterator.php │ │ │ ├── NodeWalker.php │ │ │ ├── NodeWalkerEvent.php │ │ │ ├── Query.php │ │ │ ├── Query │ │ │ │ ├── AndExpr.php │ │ │ │ ├── ExpressionInterface.php │ │ │ │ └── OrExpr.php │ │ │ ├── RawMarkupContainerInterface.php │ │ │ ├── StringContainerHelper.php │ │ │ └── StringContainerInterface.php │ │ │ ├── Normalizer │ │ │ ├── SlugNormalizer.php │ │ │ ├── TextNormalizer.php │ │ │ ├── TextNormalizerInterface.php │ │ │ ├── UniqueSlugNormalizer.php │ │ │ └── UniqueSlugNormalizerInterface.php │ │ │ ├── Output │ │ │ ├── RenderedContent.php │ │ │ └── RenderedContentInterface.php │ │ │ ├── Parser │ │ │ ├── Block │ │ │ │ ├── AbstractBlockContinueParser.php │ │ │ │ ├── BlockContinue.php │ │ │ │ ├── BlockContinueParserInterface.php │ │ │ │ ├── BlockContinueParserWithInlinesInterface.php │ │ │ │ ├── BlockStart.php │ │ │ │ ├── BlockStartParserInterface.php │ │ │ │ ├── DocumentBlockParser.php │ │ │ │ ├── ParagraphParser.php │ │ │ │ └── SkipLinesStartingWithLettersParser.php │ │ │ ├── Cursor.php │ │ │ ├── CursorState.php │ │ │ ├── Inline │ │ │ │ ├── InlineParserInterface.php │ │ │ │ ├── InlineParserMatch.php │ │ │ │ └── NewlineParser.php │ │ │ ├── InlineParserContext.php │ │ │ ├── InlineParserEngine.php │ │ │ ├── InlineParserEngineInterface.php │ │ │ ├── MarkdownParser.php │ │ │ ├── MarkdownParserInterface.php │ │ │ ├── MarkdownParserState.php │ │ │ ├── MarkdownParserStateInterface.php │ │ │ └── ParserLogicException.php │ │ │ ├── Reference │ │ │ ├── Reference.php │ │ │ ├── ReferenceInterface.php │ │ │ ├── ReferenceMap.php │ │ │ ├── ReferenceMapInterface.php │ │ │ ├── ReferenceParser.php │ │ │ └── ReferenceableInterface.php │ │ │ ├── Renderer │ │ │ ├── Block │ │ │ │ ├── DocumentRenderer.php │ │ │ │ └── ParagraphRenderer.php │ │ │ ├── ChildNodeRendererInterface.php │ │ │ ├── DocumentRendererInterface.php │ │ │ ├── HtmlDecorator.php │ │ │ ├── HtmlRenderer.php │ │ │ ├── Inline │ │ │ │ ├── NewlineRenderer.php │ │ │ │ └── TextRenderer.php │ │ │ ├── MarkdownRendererInterface.php │ │ │ ├── NoMatchingRendererException.php │ │ │ └── NodeRendererInterface.php │ │ │ ├── Util │ │ │ ├── ArrayCollection.php │ │ │ ├── Html5EntityDecoder.php │ │ │ ├── HtmlElement.php │ │ │ ├── HtmlFilter.php │ │ │ ├── LinkParserHelper.php │ │ │ ├── PrioritizedList.php │ │ │ ├── RegexHelper.php │ │ │ ├── SpecReader.php │ │ │ ├── UrlEncoder.php │ │ │ └── Xml.php │ │ │ └── Xml │ │ │ ├── FallbackNodeXmlRenderer.php │ │ │ ├── MarkdownToXmlConverter.php │ │ │ ├── XmlNodeRendererInterface.php │ │ │ └── XmlRenderer.php │ ├── config │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationAwareInterface.php │ │ │ ├── ConfigurationBuilderInterface.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProviderInterface.php │ │ │ ├── Exception │ │ │ ├── ConfigurationExceptionInterface.php │ │ │ ├── InvalidConfigurationException.php │ │ │ ├── UnknownOptionException.php │ │ │ └── ValidationException.php │ │ │ ├── MutableConfigurationInterface.php │ │ │ ├── ReadOnlyConfiguration.php │ │ │ └── SchemaBuilderInterface.php │ ├── flysystem-aws-s3-v3 │ │ ├── AwsS3V3Adapter.php │ │ ├── LICENSE │ │ ├── PortableVisibilityConverter.php │ │ ├── VisibilityConverter.php │ │ └── composer.json │ ├── flysystem-ftp │ │ ├── ConnectionProvider.php │ │ ├── ConnectivityChecker.php │ │ ├── ConnectivityCheckerThatCanFail.php │ │ ├── FtpAdapter.php │ │ ├── FtpConnectionException.php │ │ ├── FtpConnectionOptions.php │ │ ├── FtpConnectionProvider.php │ │ ├── InvalidListResponseReceived.php │ │ ├── LICENSE │ │ ├── NoopCommandConnectivityChecker.php │ │ ├── RawListFtpConnectivityChecker.php │ │ ├── UnableToAuthenticate.php │ │ ├── UnableToConnectToFtpHost.php │ │ ├── UnableToEnableUtf8Mode.php │ │ ├── UnableToMakeConnectionPassive.php │ │ ├── UnableToResolveConnectionRoot.php │ │ ├── UnableToSetFtpOption.php │ │ └── composer.json │ ├── flysystem-local │ │ ├── FallbackMimeTypeDetector.php │ │ ├── LICENSE │ │ ├── LocalFilesystemAdapter.php │ │ └── composer.json │ ├── flysystem │ │ ├── INFO.md │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── readme.md │ │ └── src │ │ │ ├── CalculateChecksumFromStream.php │ │ │ ├── ChecksumAlgoIsNotSupported.php │ │ │ ├── ChecksumProvider.php │ │ │ ├── Config.php │ │ │ ├── CorruptedPathDetected.php │ │ │ ├── DirectoryAttributes.php │ │ │ ├── DirectoryListing.php │ │ │ ├── FileAttributes.php │ │ │ ├── Filesystem.php │ │ │ ├── FilesystemAdapter.php │ │ │ ├── FilesystemException.php │ │ │ ├── FilesystemOperationFailed.php │ │ │ ├── FilesystemOperator.php │ │ │ ├── FilesystemReader.php │ │ │ ├── FilesystemWriter.php │ │ │ ├── InvalidStreamProvided.php │ │ │ ├── InvalidVisibilityProvided.php │ │ │ ├── MountManager.php │ │ │ ├── PathNormalizer.php │ │ │ ├── PathPrefixer.php │ │ │ ├── PathTraversalDetected.php │ │ │ ├── PortableVisibilityGuard.php │ │ │ ├── ProxyArrayAccessToProperties.php │ │ │ ├── ResolveIdenticalPathConflict.php │ │ │ ├── StorageAttributes.php │ │ │ ├── SymbolicLinkEncountered.php │ │ │ ├── UnableToCheckDirectoryExistence.php │ │ │ ├── UnableToCheckExistence.php │ │ │ ├── UnableToCheckFileExistence.php │ │ │ ├── UnableToCopyFile.php │ │ │ ├── UnableToCreateDirectory.php │ │ │ ├── UnableToDeleteDirectory.php │ │ │ ├── UnableToDeleteFile.php │ │ │ ├── UnableToGeneratePublicUrl.php │ │ │ ├── UnableToGenerateTemporaryUrl.php │ │ │ ├── UnableToListContents.php │ │ │ ├── UnableToMountFilesystem.php │ │ │ ├── UnableToMoveFile.php │ │ │ ├── UnableToProvideChecksum.php │ │ │ ├── UnableToReadFile.php │ │ │ ├── UnableToResolveFilesystemMount.php │ │ │ ├── UnableToRetrieveMetadata.php │ │ │ ├── UnableToSetVisibility.php │ │ │ ├── UnableToWriteFile.php │ │ │ ├── UnixVisibility │ │ │ ├── PortableVisibilityConverter.php │ │ │ └── VisibilityConverter.php │ │ │ ├── UnreadableFileEncountered.php │ │ │ ├── UrlGeneration │ │ │ ├── ChainedPublicUrlGenerator.php │ │ │ ├── PrefixPublicUrlGenerator.php │ │ │ ├── PublicUrlGenerator.php │ │ │ ├── ShardedPrefixPublicUrlGenerator.php │ │ │ └── TemporaryUrlGenerator.php │ │ │ ├── Visibility.php │ │ │ └── WhitespacePathNormalizer.php │ ├── glide │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── psalm-baseline.xml │ │ └── src │ │ │ ├── Api │ │ │ ├── Api.php │ │ │ └── ApiInterface.php │ │ │ ├── Filesystem │ │ │ ├── FileNotFoundException.php │ │ │ └── FilesystemException.php │ │ │ ├── Manipulators │ │ │ ├── Background.php │ │ │ ├── BaseManipulator.php │ │ │ ├── Blur.php │ │ │ ├── Border.php │ │ │ ├── Brightness.php │ │ │ ├── Contrast.php │ │ │ ├── Crop.php │ │ │ ├── Encode.php │ │ │ ├── Filter.php │ │ │ ├── Flip.php │ │ │ ├── Gamma.php │ │ │ ├── Helpers │ │ │ │ ├── Color.php │ │ │ │ └── Dimension.php │ │ │ ├── ManipulatorInterface.php │ │ │ ├── Orientation.php │ │ │ ├── Pixelate.php │ │ │ ├── Sharpen.php │ │ │ ├── Size.php │ │ │ └── Watermark.php │ │ │ ├── Responses │ │ │ ├── PsrResponseFactory.php │ │ │ └── ResponseFactoryInterface.php │ │ │ ├── Server.php │ │ │ ├── ServerFactory.php │ │ │ ├── Signatures │ │ │ ├── Signature.php │ │ │ ├── SignatureException.php │ │ │ ├── SignatureFactory.php │ │ │ └── SignatureInterface.php │ │ │ └── Urls │ │ │ ├── UrlBuilder.php │ │ │ └── UrlBuilderFactory.php │ ├── mime-type-detection │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ │ ├── EmptyExtensionToMimeTypeMap.php │ │ │ ├── ExtensionLookup.php │ │ │ ├── ExtensionMimeTypeDetector.php │ │ │ ├── ExtensionToMimeTypeMap.php │ │ │ ├── FinfoMimeTypeDetector.php │ │ │ ├── GeneratedExtensionToMimeTypeMap.php │ │ │ ├── MimeTypeDetector.php │ │ │ └── OverridingExtensionToMimeTypeMap.php │ ├── oauth1-client │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan.neon │ │ ├── phpunit.php │ │ ├── phpunit.xml │ │ ├── resources │ │ │ └── examples │ │ │ │ ├── tumblr.php │ │ │ │ ├── twitter.php │ │ │ │ └── xing.php │ │ ├── rfc5849.txt │ │ ├── src │ │ │ ├── Credentials │ │ │ │ ├── ClientCredentials.php │ │ │ │ ├── ClientCredentialsInterface.php │ │ │ │ ├── Credentials.php │ │ │ │ ├── CredentialsException.php │ │ │ │ ├── CredentialsInterface.php │ │ │ │ ├── RsaClientCredentials.php │ │ │ │ ├── TemporaryCredentials.php │ │ │ │ └── TokenCredentials.php │ │ │ ├── Server │ │ │ │ ├── Bitbucket.php │ │ │ │ ├── Magento.php │ │ │ │ ├── Server.php │ │ │ │ ├── Trello.php │ │ │ │ ├── Tumblr.php │ │ │ │ ├── Twitter.php │ │ │ │ ├── User.php │ │ │ │ ├── Uservoice.php │ │ │ │ └── Xing.php │ │ │ └── Signature │ │ │ │ ├── EncodesUrl.php │ │ │ │ ├── HmacSha1Signature.php │ │ │ │ ├── PlainTextSignature.php │ │ │ │ ├── RsaSha1Signature.php │ │ │ │ ├── Signature.php │ │ │ │ └── SignatureInterface.php │ │ └── tests │ │ │ ├── ClientCredentialsTest.php │ │ │ ├── HmacSha1SignatureTest.php │ │ │ ├── PlainTextSignatureTest.php │ │ │ ├── RsaClientCredentialsTest.php │ │ │ ├── RsaSha1SignatureTest.php │ │ │ ├── ServerTest.php │ │ │ ├── TrelloServerTest.php │ │ │ ├── TwitterServerTest.php │ │ │ ├── XingServerTest.php │ │ │ ├── stubs │ │ │ └── ServerStub.php │ │ │ ├── test_rsa_invalidkey.pem │ │ │ ├── test_rsa_privatekey.pem │ │ │ └── test_rsa_publickey.pem │ ├── uri-interfaces │ │ ├── Contracts │ │ │ ├── AuthorityInterface.php │ │ │ ├── DataPathInterface.php │ │ │ ├── DomainHostInterface.php │ │ │ ├── FragmentInterface.php │ │ │ ├── HostInterface.php │ │ │ ├── IpHostInterface.php │ │ │ ├── PathInterface.php │ │ │ ├── PortInterface.php │ │ │ ├── QueryInterface.php │ │ │ ├── SegmentedPathInterface.php │ │ │ ├── UriAccess.php │ │ │ ├── UriComponentInterface.php │ │ │ ├── UriException.php │ │ │ ├── UriInterface.php │ │ │ └── UserInfoInterface.php │ │ ├── Encoder.php │ │ ├── Exceptions │ │ │ ├── ConversionFailed.php │ │ │ ├── MissingFeature.php │ │ │ ├── OffsetOutOfBounds.php │ │ │ └── SyntaxError.php │ │ ├── FeatureDetection.php │ │ ├── IPv4 │ │ │ ├── BCMathCalculator.php │ │ │ ├── Calculator.php │ │ │ ├── Converter.php │ │ │ ├── GMPCalculator.php │ │ │ └── NativeCalculator.php │ │ ├── Idna │ │ │ ├── Converter.php │ │ │ ├── Error.php │ │ │ ├── Option.php │ │ │ └── Result.php │ │ ├── KeyValuePair │ │ │ └── Converter.php │ │ ├── LICENSE │ │ ├── QueryString.php │ │ ├── UriString.php │ │ └── composer.json │ └── uri │ │ ├── BaseUri.php │ │ ├── Http.php │ │ ├── HttpFactory.php │ │ ├── LICENSE │ │ ├── Uri.php │ │ ├── UriInfo.php │ │ ├── UriResolver.php │ │ ├── UriTemplate.php │ │ ├── UriTemplate │ │ ├── Expression.php │ │ ├── Operator.php │ │ ├── Template.php │ │ ├── TemplateCanNotBeExpanded.php │ │ ├── VarSpecifier.php │ │ └── VariableBag.php │ │ └── composer.json ├── livewire │ └── livewire │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ └── livewire.php │ │ ├── dist │ │ ├── livewire.esm.js │ │ ├── livewire.js │ │ ├── livewire.min.js │ │ └── manifest.json │ │ └── src │ │ ├── Attribute.php │ │ ├── Attributes │ │ ├── Computed.php │ │ ├── Js.php │ │ ├── Layout.php │ │ ├── Lazy.php │ │ ├── Locked.php │ │ ├── Modelable.php │ │ ├── On.php │ │ ├── Reactive.php │ │ ├── Renderless.php │ │ ├── Rule.php │ │ ├── Title.php │ │ └── Url.php │ │ ├── Component.php │ │ ├── ComponentHook.php │ │ ├── ComponentHookRegistry.php │ │ ├── Concerns │ │ └── InteractsWithProperties.php │ │ ├── Drawer │ │ ├── BaseUtils.php │ │ ├── ImplicitRouteBinding.php │ │ ├── Regexes.php │ │ └── Utils.php │ │ ├── EventBus.php │ │ ├── Exceptions │ │ ├── BypassViewHandler.php │ │ ├── ComponentAttributeMissingOnDynamicComponentException.php │ │ ├── ComponentNotFoundException.php │ │ ├── LivewirePageExpiredBecauseNewDeploymentHasSignificantEnoughChanges.php │ │ ├── MethodNotFoundException.php │ │ ├── MissingRulesException.php │ │ ├── NonPublicComponentMethodCall.php │ │ ├── PropertyNotFoundException.php │ │ ├── PublicPropertyNotFoundException.php │ │ └── RootTagMissingFromViewException.php │ │ ├── Features │ │ ├── SupportAttributes │ │ │ ├── Attribute.php │ │ │ ├── AttributeCollection.php │ │ │ ├── AttributeLevel.php │ │ │ ├── HandlesAttributes.php │ │ │ └── SupportAttributes.php │ │ ├── SupportAutoInjectedAssets │ │ │ └── SupportAutoInjectedAssets.php │ │ ├── SupportBladeAttributes │ │ │ └── SupportBladeAttributes.php │ │ ├── SupportChecksumErrorDebugging │ │ │ └── SupportChecksumErrorDebugging.php │ │ ├── SupportComputed │ │ │ ├── BaseComputed.php │ │ │ ├── CannotCallComputedDirectlyException.php │ │ │ └── SupportLegacyComputedPropertySyntax.php │ │ ├── SupportConsoleCommands │ │ │ ├── Commands │ │ │ │ ├── AttributeCommand.php │ │ │ │ ├── ComponentParser.php │ │ │ │ ├── ComponentParserFromExistingComponent.php │ │ │ │ ├── CopyCommand.php │ │ │ │ ├── CpCommand.php │ │ │ │ ├── DeleteCommand.php │ │ │ │ ├── FileManipulationCommand.php │ │ │ │ ├── FormCommand.php │ │ │ │ ├── LayoutCommand.php │ │ │ │ ├── MakeCommand.php │ │ │ │ ├── MakeLivewireCommand.php │ │ │ │ ├── MoveCommand.php │ │ │ │ ├── MvCommand.php │ │ │ │ ├── PublishCommand.php │ │ │ │ ├── RmCommand.php │ │ │ │ ├── S3CleanupCommand.php │ │ │ │ ├── StubsCommand.php │ │ │ │ ├── TouchCommand.php │ │ │ │ ├── Upgrade │ │ │ │ │ ├── AddLiveModifierToEntangleDirectives.php │ │ │ │ │ ├── AddLiveModifierToWireModelDirectives.php │ │ │ │ │ ├── ChangeDefaultLayoutView.php │ │ │ │ │ ├── ChangeDefaultNamespace.php │ │ │ │ │ ├── ChangeForgetComputedToUnset.php │ │ │ │ │ ├── ChangeLazyToBlurModifierOnWireModelDirectives.php │ │ │ │ │ ├── ChangeTestAssertionMethods.php │ │ │ │ │ ├── ChangeWireLoadDirectiveToWireInit.php │ │ │ │ │ ├── ClearViewCache.php │ │ │ │ │ ├── RemoveDeferModifierFromEntangleDirectives.php │ │ │ │ │ ├── RemoveDeferModifierFromWireModelDirectives.php │ │ │ │ │ ├── RemovePrefetchModifierFromWireClickDirective.php │ │ │ │ │ ├── RemovePreventModifierFromWireSubmitDirective.php │ │ │ │ │ ├── ReplaceEmitWithDispatch.php │ │ │ │ │ ├── RepublishNavigation.php │ │ │ │ │ ├── ThirdPartyUpgradeNotice.php │ │ │ │ │ ├── UpgradeAlpineInstructions.php │ │ │ │ │ ├── UpgradeConfigInstructions.php │ │ │ │ │ ├── UpgradeIntroduction.php │ │ │ │ │ └── UpgradeStep.php │ │ │ │ ├── UpgradeCommand.php │ │ │ │ ├── livewire.attribute.stub │ │ │ │ ├── livewire.form.stub │ │ │ │ ├── livewire.inline.stub │ │ │ │ ├── livewire.layout.stub │ │ │ │ ├── livewire.pest.stub │ │ │ │ ├── livewire.stub │ │ │ │ ├── livewire.test.stub │ │ │ │ ├── livewire.view.stub │ │ │ │ └── the-tao.php │ │ │ └── SupportConsoleCommands.php │ │ ├── SupportDisablingBackButtonCache │ │ │ ├── DisableBackButtonCacheMiddleware.php │ │ │ ├── HandlesDisablingBackButtonCache.php │ │ │ └── SupportDisablingBackButtonCache.php │ │ ├── SupportEntangle │ │ │ └── SupportEntangle.php │ │ ├── SupportEvents │ │ │ ├── BaseOn.php │ │ │ ├── Event.php │ │ │ ├── HandlesEvents.php │ │ │ ├── SupportEvents.php │ │ │ ├── TestsEvents.php │ │ │ └── fake-echo.js │ │ ├── SupportFileDownloads │ │ │ ├── SupportFileDownloads.php │ │ │ └── TestsFileDownloads.php │ │ ├── SupportFileUploads │ │ │ ├── FilePreviewController.php │ │ │ ├── FileUploadConfiguration.php │ │ │ ├── FileUploadController.php │ │ │ ├── FileUploadSynth.php │ │ │ ├── GenerateSignedUploadUrl.php │ │ │ ├── MissingFileUploadsTraitException.php │ │ │ ├── S3DoesntSupportMultipleFileUploads.php │ │ │ ├── SupportFileUploads.php │ │ │ ├── TemporaryUploadedFile.php │ │ │ ├── WithFileUploads.php │ │ │ └── browser_test_image.png │ │ ├── SupportFormObjects │ │ │ ├── Form.php │ │ │ ├── FormObjectSynth.php │ │ │ └── SupportFormObjects.php │ │ ├── SupportJsEvaluation │ │ │ ├── BaseJs.php │ │ │ ├── HandlesJsEvaluation.php │ │ │ └── SupportJsEvaluation.php │ │ ├── SupportLazyLoading │ │ │ ├── BaseLazy.php │ │ │ └── SupportLazyLoading.php │ │ ├── SupportLegacyModels │ │ │ ├── CannotBindToModelDataWithoutValidationRuleException.php │ │ │ ├── EloquentCollectionSynth.php │ │ │ ├── EloquentModelSynth.php │ │ │ └── SupportLegacyModels.php │ │ ├── SupportLifecycleHooks │ │ │ ├── DirectlyCallingLifecycleHooksNotAllowedException.php │ │ │ └── SupportLifecycleHooks.php │ │ ├── SupportLocales │ │ │ └── SupportLocales.php │ │ ├── SupportLockedProperties │ │ │ └── BaseLocked.php │ │ ├── SupportModels │ │ │ ├── EloquentCollectionSynth.php │ │ │ ├── ModelSynth.php │ │ │ └── SupportModels.php │ │ ├── SupportMorphAwareIfStatement │ │ │ └── SupportMorphAwareIfStatement.php │ │ ├── SupportMultipleRootElementDetection │ │ │ ├── MultipleRootElementsDetectedException.php │ │ │ └── SupportMultipleRootElementDetection.php │ │ ├── SupportNavigate │ │ │ ├── SupportNavigate.php │ │ │ └── test-views │ │ │ │ ├── changed-layout.blade.php │ │ │ │ ├── changed-tracked-layout.blade.php │ │ │ │ ├── layout-with-navigate-outside.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ ├── test-navigate-asset.js │ │ │ │ └── tracked-layout.blade.php │ │ ├── SupportNestedComponentListeners │ │ │ └── SupportNestedComponentListeners.php │ │ ├── SupportNestingComponents │ │ │ └── SupportNestingComponents.php │ │ ├── SupportPageComponents │ │ │ ├── BaseLayout.php │ │ │ ├── BaseTitle.php │ │ │ ├── HandlesPageComponents.php │ │ │ ├── MissingLayoutException.php │ │ │ ├── PageComponentConfig.php │ │ │ └── SupportPageComponents.php │ │ ├── SupportPagination │ │ │ ├── HandlesPagination.php │ │ │ ├── SupportPagination.php │ │ │ └── views │ │ │ │ ├── bootstrap.blade.php │ │ │ │ ├── simple-bootstrap.blade.php │ │ │ │ ├── simple-tailwind.blade.php │ │ │ │ └── tailwind.blade.php │ │ ├── SupportQueryString │ │ │ ├── BaseUrl.php │ │ │ └── SupportQueryString.php │ │ ├── SupportReactiveProps │ │ │ ├── BaseReactive.php │ │ │ ├── CannotMutateReactivePropException.php │ │ │ └── SupportReactiveProps.php │ │ ├── SupportRedirects │ │ │ ├── HandlesRedirects.php │ │ │ ├── Redirector.php │ │ │ ├── SupportRedirects.php │ │ │ └── TestsRedirects.php │ │ ├── SupportStreaming │ │ │ ├── HandlesStreaming.php │ │ │ └── SupportStreaming.php │ │ ├── SupportTeleporting │ │ │ └── SupportTeleporting.php │ │ ├── SupportTesting │ │ │ ├── ComponentState.php │ │ │ ├── DuskBrowserMacros.php │ │ │ ├── DuskTestable.php │ │ │ ├── InitialRender.php │ │ │ ├── MakesAssertions.php │ │ │ ├── Render.php │ │ │ ├── RequestBroker.php │ │ │ ├── SubsequentRender.php │ │ │ ├── SupportTesting.php │ │ │ └── Testable.php │ │ ├── SupportValidation │ │ │ ├── BaseRule.php │ │ │ ├── HandlesValidation.php │ │ │ ├── SupportValidation.php │ │ │ └── TestsValidation.php │ │ ├── SupportWireModelingNestedComponents │ │ │ ├── BaseModelable.php │ │ │ └── SupportWireModelingNestedComponents.php │ │ └── SupportWireables │ │ │ ├── SupportWireables.php │ │ │ └── WireableSynth.php │ │ ├── Form.php │ │ ├── ImplicitlyBoundMethod.php │ │ ├── Livewire.php │ │ ├── LivewireManager.php │ │ ├── LivewireServiceProvider.php │ │ ├── Mechanisms │ │ ├── CompileLivewireTags.php │ │ ├── ComponentRegistry.php │ │ ├── DataStore.php │ │ ├── ExtendBlade │ │ │ ├── ExtendBlade.php │ │ │ └── ExtendedCompilerEngine.php │ │ ├── FrontendAssets │ │ │ └── FrontendAssets.php │ │ ├── HandleComponents │ │ │ ├── BaseRenderless.php │ │ │ ├── Checksum.php │ │ │ ├── ComponentContext.php │ │ │ ├── CorruptComponentPayloadException.php │ │ │ ├── HandleComponents.php │ │ │ ├── Synthesizers │ │ │ │ ├── ArraySynth.php │ │ │ │ ├── CarbonSynth.php │ │ │ │ ├── CollectionSynth.php │ │ │ │ ├── EnumSynth.php │ │ │ │ ├── IntSynth.php │ │ │ │ ├── StdClassSynth.php │ │ │ │ ├── StringableSynth.php │ │ │ │ └── Synth.php │ │ │ └── ViewContext.php │ │ ├── HandleRequests │ │ │ └── HandleRequests.php │ │ ├── PersistentMiddleware │ │ │ └── PersistentMiddleware.php │ │ └── RenderComponent.php │ │ ├── Pipe.php │ │ ├── Transparency.php │ │ ├── WireDirective.php │ │ ├── Wireable.php │ │ ├── WithFileUploads.php │ │ ├── WithPagination.php │ │ ├── Wrapped.php │ │ └── helpers.php ├── maennchen │ └── zipstream-php │ │ ├── .editorconfig │ │ ├── .phive │ │ └── phars.xml │ │ ├── .php-cs-fixer.dist.php │ │ ├── .phpdoc │ │ └── template │ │ │ └── base.html.twig │ │ ├── .tool-versions │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── guides │ │ ├── ContentLength.rst │ │ ├── FlySystem.rst │ │ ├── Nginx.rst │ │ ├── Options.rst │ │ ├── PSR7Streams.rst │ │ ├── StreamOutput.rst │ │ ├── Symfony.rst │ │ ├── Varnish.rst │ │ └── index.rst │ │ ├── phpdoc.dist.xml │ │ ├── phpunit.xml.dist │ │ ├── psalm.xml │ │ ├── src │ │ ├── CentralDirectoryFileHeader.php │ │ ├── CompressionMethod.php │ │ ├── DataDescriptor.php │ │ ├── EndOfCentralDirectory.php │ │ ├── Exception.php │ │ ├── Exception │ │ │ ├── DosTimeOverflowException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── FileNotReadableException.php │ │ │ ├── FileSizeIncorrectException.php │ │ │ ├── OverflowException.php │ │ │ ├── ResourceActionException.php │ │ │ ├── SimulationFileUnknownException.php │ │ │ ├── StreamNotReadableException.php │ │ │ └── StreamNotSeekableException.php │ │ ├── File.php │ │ ├── GeneralPurposeBitFlag.php │ │ ├── LocalFileHeader.php │ │ ├── OperationMode.php │ │ ├── PackField.php │ │ ├── Time.php │ │ ├── Version.php │ │ ├── Zip64 │ │ │ ├── DataDescriptor.php │ │ │ ├── EndOfCentralDirectory.php │ │ │ ├── EndOfCentralDirectoryLocator.php │ │ │ └── ExtendedInformationExtraField.php │ │ ├── ZipStream.php │ │ └── Zs │ │ │ └── ExtendedInformationExtraField.php │ │ └── test │ │ ├── Assertions.php │ │ ├── CentralDirectoryFileHeaderTest.php │ │ ├── DataDescriptorTest.php │ │ ├── EndOfCentralDirectoryTest.php │ │ ├── EndlessCycleStream.php │ │ ├── FaultInjectionResource.php │ │ ├── LocalFileHeaderTest.php │ │ ├── PackFieldTest.php │ │ ├── ResourceStream.php │ │ ├── TimeTest.php │ │ ├── Util.php │ │ ├── Zip64 │ │ ├── DataDescriptorTest.php │ │ ├── EndOfCentralDirectoryLocatorTest.php │ │ ├── EndOfCentralDirectoryTest.php │ │ └── ExtendedInformationExtraFieldTest.php │ │ ├── ZipStreamTest.php │ │ ├── Zs │ │ └── ExtendedInformationExtraFieldTest.php │ │ └── bootstrap.php ├── masterminds │ └── html5 │ │ ├── CREDITS │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── UPGRADING.md │ │ ├── bin │ │ └── entities.php │ │ ├── composer.json │ │ └── src │ │ ├── HTML5.php │ │ └── HTML5 │ │ ├── Elements.php │ │ ├── Entities.php │ │ ├── Exception.php │ │ ├── InstructionProcessor.php │ │ ├── Parser │ │ ├── CharacterReference.php │ │ ├── DOMTreeBuilder.php │ │ ├── EventHandler.php │ │ ├── FileInputStream.php │ │ ├── InputStream.php │ │ ├── ParseError.php │ │ ├── README.md │ │ ├── Scanner.php │ │ ├── StringInputStream.php │ │ ├── Tokenizer.php │ │ ├── TreeBuildingRules.php │ │ └── UTF8Utils.php │ │ └── Serializer │ │ ├── HTML5Entities.php │ │ ├── OutputRules.php │ │ ├── README.md │ │ ├── RulesInterface.php │ │ └── Traverser.php ├── maximebf │ └── debugbar │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ └── DebugBar │ │ ├── Bridge │ │ ├── CacheCacheCollector.php │ │ ├── DoctrineCollector.php │ │ ├── MonologCollector.php │ │ ├── NamespacedTwigProfileCollector.php │ │ ├── Propel2Collector.php │ │ ├── PropelCollector.php │ │ ├── SlimCollector.php │ │ ├── SwiftMailer │ │ │ ├── SwiftLogCollector.php │ │ │ └── SwiftMailCollector.php │ │ ├── Symfony │ │ │ └── SymfonyMailCollector.php │ │ ├── Twig │ │ │ ├── TimeableTwigExtensionProfiler.php │ │ │ ├── TraceableTwigEnvironment.php │ │ │ ├── TraceableTwigTemplate.php │ │ │ └── TwigCollector.php │ │ └── TwigProfileCollector.php │ │ ├── DataCollector │ │ ├── AggregatedCollector.php │ │ ├── AssetProvider.php │ │ ├── ConfigCollector.php │ │ ├── DataCollector.php │ │ ├── DataCollectorInterface.php │ │ ├── ExceptionsCollector.php │ │ ├── LocalizationCollector.php │ │ ├── MemoryCollector.php │ │ ├── MessagesAggregateInterface.php │ │ ├── MessagesCollector.php │ │ ├── PDO │ │ │ ├── PDOCollector.php │ │ │ ├── TraceablePDO.php │ │ │ ├── TraceablePDOStatement.php │ │ │ └── TracedStatement.php │ │ ├── PhpInfoCollector.php │ │ ├── Renderable.php │ │ ├── RequestDataCollector.php │ │ └── TimeDataCollector.php │ │ ├── DataFormatter │ │ ├── DataFormatter.php │ │ ├── DataFormatterInterface.php │ │ ├── DebugBarVarDumper.php │ │ └── VarDumper │ │ │ └── DebugBarHtmlDumper.php │ │ ├── DebugBar.php │ │ ├── DebugBarException.php │ │ ├── HttpDriverInterface.php │ │ ├── JavascriptRenderer.php │ │ ├── OpenHandler.php │ │ ├── PhpHttpDriver.php │ │ ├── RequestIdGenerator.php │ │ ├── RequestIdGeneratorInterface.php │ │ ├── Resources │ │ ├── debugbar.css │ │ ├── debugbar.js │ │ ├── openhandler.css │ │ ├── openhandler.js │ │ ├── vendor │ │ │ ├── font-awesome │ │ │ │ ├── css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── highlightjs │ │ │ │ ├── highlight.pack.js │ │ │ │ └── styles │ │ │ │ │ └── github.css │ │ │ └── jquery │ │ │ │ └── dist │ │ │ │ └── jquery.min.js │ │ ├── widgets.css │ │ ├── widgets.js │ │ └── widgets │ │ │ ├── mails │ │ │ ├── widget.css │ │ │ └── widget.js │ │ │ ├── sqlqueries │ │ │ ├── widget.css │ │ │ └── widget.js │ │ │ └── templates │ │ │ ├── widget.css │ │ │ └── widget.js │ │ ├── StandardDebugBar.php │ │ └── Storage │ │ ├── FileStorage.php │ │ ├── MemcachedStorage.php │ │ ├── PdoStorage.php │ │ ├── RedisStorage.php │ │ ├── StorageInterface.php │ │ └── pdo_storage_schema.sql ├── mews │ └── purifier │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── config │ │ └── purifier.php │ │ ├── phpunit.xml │ │ └── src │ │ ├── Casts │ │ ├── CleanHtml.php │ │ ├── CleanHtmlInput.php │ │ ├── CleanHtmlOutput.php │ │ └── WithConfig.php │ │ ├── Facades │ │ └── Purifier.php │ │ ├── Purifier.php │ │ ├── PurifierServiceProvider.php │ │ └── helpers.php ├── mobiledetect │ └── mobiledetectlib │ │ ├── LICENSE │ │ ├── Mobile_Detect.json │ │ ├── Mobile_Detect.php │ │ ├── README.md │ │ ├── composer.json │ │ ├── docker-compose.yml │ │ ├── namespaced │ │ └── Detection │ │ │ └── MobileDetect.php │ │ ├── phpcs.xml │ │ └── tests │ │ ├── BasicsTest.php │ │ ├── UA_List.inc.php │ │ ├── UA_List.pending.txt │ │ ├── UserAgentTest.php │ │ ├── VendorsTest_tmp.php │ │ ├── bootstrap.php │ │ ├── phpunit.xml │ │ ├── providers │ │ └── vendors │ │ │ ├── AOC.php │ │ │ ├── Acer.php │ │ │ ├── Alcatel.php │ │ │ ├── Allview.php │ │ │ ├── Amazon.php │ │ │ ├── Apple.php │ │ │ ├── Archos.php │ │ │ ├── Asus.php │ │ │ ├── Blackberry.php │ │ │ ├── Dell.php │ │ │ ├── Google.php │ │ │ ├── HP.php │ │ │ ├── HTC.php │ │ │ ├── Huawei.php │ │ │ ├── LG.php │ │ │ ├── Lava.php │ │ │ ├── Leader.php │ │ │ ├── Lenovo.php │ │ │ ├── Mi.php │ │ │ ├── Microsoft.php │ │ │ ├── Motorola.php │ │ │ ├── Mpman.php │ │ │ ├── Nexus.php │ │ │ ├── Nokia.php │ │ │ ├── Onda.php │ │ │ ├── Others.php │ │ │ ├── Prestigio.php │ │ │ ├── Samsung.php │ │ │ ├── Sony.php │ │ │ ├── SpecialCases.php │ │ │ ├── Verizon.php │ │ │ ├── Vodafone.php │ │ │ └── ZTE.php │ │ └── ualist.json ├── mockery │ └── mockery │ │ ├── .phpstorm.meta.php │ │ ├── CONTRIBUTING.md │ │ ├── COPYRIGHT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── docs │ │ ├── README.md │ │ ├── conf.py │ │ ├── cookbook │ │ │ ├── big_parent_class.rst │ │ │ ├── class_constants.rst │ │ │ ├── default_expectations.rst │ │ │ ├── detecting_mock_objects.rst │ │ │ ├── index.rst │ │ │ ├── map.rst.inc │ │ │ ├── mockery_on.rst │ │ │ ├── mocking_class_within_class.rst │ │ │ ├── mocking_hard_dependencies.rst │ │ │ └── not_calling_the_constructor.rst │ │ ├── getting_started │ │ │ ├── index.rst │ │ │ ├── installation.rst │ │ │ ├── map.rst.inc │ │ │ ├── quick_reference.rst │ │ │ ├── simple_example.rst │ │ │ └── upgrading.rst │ │ ├── index.rst │ │ ├── mockery │ │ │ ├── configuration.rst │ │ │ ├── exceptions.rst │ │ │ ├── gotchas.rst │ │ │ ├── index.rst │ │ │ ├── map.rst.inc │ │ │ └── reserved_method_names.rst │ │ └── reference │ │ │ ├── alternative_should_receive_syntax.rst │ │ │ ├── argument_validation.rst │ │ │ ├── creating_test_doubles.rst │ │ │ ├── demeter_chains.rst │ │ │ ├── expectations.rst │ │ │ ├── final_methods_classes.rst │ │ │ ├── index.rst │ │ │ ├── instance_mocking.rst │ │ │ ├── magic_methods.rst │ │ │ ├── map.rst.inc │ │ │ ├── partial_mocks.rst │ │ │ ├── pass_by_reference_behaviours.rst │ │ │ ├── phpunit_integration.rst │ │ │ ├── protected_methods.rst │ │ │ ├── public_properties.rst │ │ │ ├── public_static_properties.rst │ │ │ └── spies.rst │ │ ├── fixtures │ │ └── autoload.php │ │ └── library │ │ ├── Mockery.php │ │ ├── Mockery │ │ ├── Adapter │ │ │ └── Phpunit │ │ │ │ ├── MockeryPHPUnitIntegration.php │ │ │ │ ├── MockeryPHPUnitIntegrationAssertPostConditions.php │ │ │ │ ├── MockeryTestCase.php │ │ │ │ ├── MockeryTestCaseSetUp.php │ │ │ │ ├── TestListener.php │ │ │ │ └── TestListenerTrait.php │ │ ├── ClosureWrapper.php │ │ ├── CompositeExpectation.php │ │ ├── Configuration.php │ │ ├── Container.php │ │ ├── CountValidator │ │ │ ├── AtLeast.php │ │ │ ├── AtMost.php │ │ │ ├── CountValidatorAbstract.php │ │ │ ├── Exact.php │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCountException.php │ │ │ ├── InvalidOrderException.php │ │ │ ├── MockeryExceptionInterface.php │ │ │ ├── NoMatchingExpectationException.php │ │ │ └── RuntimeException.php │ │ ├── Expectation.php │ │ ├── ExpectationDirector.php │ │ ├── ExpectationInterface.php │ │ ├── ExpectsHigherOrderMessage.php │ │ ├── Generator │ │ │ ├── CachingGenerator.php │ │ │ ├── DefinedTargetClass.php │ │ │ ├── Generator.php │ │ │ ├── Method.php │ │ │ ├── MockConfiguration.php │ │ │ ├── MockConfigurationBuilder.php │ │ │ ├── MockDefinition.php │ │ │ ├── MockNameBuilder.php │ │ │ ├── Parameter.php │ │ │ ├── StringManipulation │ │ │ │ └── Pass │ │ │ │ │ ├── AvoidMethodClashPass.php │ │ │ │ │ ├── CallTypeHintPass.php │ │ │ │ │ ├── ClassAttributesPass.php │ │ │ │ │ ├── ClassNamePass.php │ │ │ │ │ ├── ClassPass.php │ │ │ │ │ ├── ConstantsPass.php │ │ │ │ │ ├── InstanceMockPass.php │ │ │ │ │ ├── InterfacePass.php │ │ │ │ │ ├── MagicMethodTypeHintsPass.php │ │ │ │ │ ├── MethodDefinitionPass.php │ │ │ │ │ ├── Pass.php │ │ │ │ │ ├── RemoveBuiltinMethodsThatAreFinalPass.php │ │ │ │ │ ├── RemoveDestructorPass.php │ │ │ │ │ ├── RemoveUnserializeForInternalSerializableClassesPass.php │ │ │ │ │ └── TraitPass.php │ │ │ ├── StringManipulationGenerator.php │ │ │ ├── TargetClassInterface.php │ │ │ └── UndefinedTargetClass.php │ │ ├── HigherOrderMessage.php │ │ ├── Instantiator.php │ │ ├── LegacyMockInterface.php │ │ ├── Loader │ │ │ ├── EvalLoader.php │ │ │ ├── Loader.php │ │ │ └── RequireLoader.php │ │ ├── Matcher │ │ │ ├── AndAnyOtherArgs.php │ │ │ ├── Any.php │ │ │ ├── AnyArgs.php │ │ │ ├── AnyOf.php │ │ │ ├── ArgumentListMatcher.php │ │ │ ├── Closure.php │ │ │ ├── Contains.php │ │ │ ├── Ducktype.php │ │ │ ├── HasKey.php │ │ │ ├── HasValue.php │ │ │ ├── IsEqual.php │ │ │ ├── IsSame.php │ │ │ ├── MatcherAbstract.php │ │ │ ├── MultiArgumentClosure.php │ │ │ ├── MustBe.php │ │ │ ├── NoArgs.php │ │ │ ├── Not.php │ │ │ ├── NotAnyOf.php │ │ │ ├── Pattern.php │ │ │ ├── Subset.php │ │ │ └── Type.php │ │ ├── MethodCall.php │ │ ├── Mock.php │ │ ├── MockInterface.php │ │ ├── QuickDefinitionsConfiguration.php │ │ ├── ReceivedMethodCalls.php │ │ ├── Reflector.php │ │ ├── Undefined.php │ │ ├── VerificationDirector.php │ │ └── VerificationExpectation.php │ │ └── helpers.php ├── monolog │ └── monolog │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── favicon.ico │ │ ├── logo.jpg │ │ └── src │ │ └── Monolog │ │ ├── Attribute │ │ ├── AsMonologProcessor.php │ │ └── WithMonologChannel.php │ │ ├── DateTimeImmutable.php │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── ElasticsearchFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── GoogleCloudLoggingFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogmaticFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ ├── SyslogFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DeduplicationHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticaHandler.php │ │ ├── ElasticsearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FallbackGroupHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FleepHookHandler.php │ │ ├── FlowdockHandler.php │ │ ├── FormattableHandlerInterface.php │ │ ├── FormattableHandlerTrait.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── Handler.php │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── IFTTTHandler.php │ │ ├── InsightOpsHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── LogmaticHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NoopHandler.php │ │ ├── NullHandler.php │ │ ├── OverflowHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── ProcessHandler.php │ │ ├── ProcessableHandlerInterface.php │ │ ├── ProcessableHandlerTrait.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RedisHandler.php │ │ ├── RedisPubSubHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── SendGridHandler.php │ │ ├── Slack │ │ │ └── SlackRecord.php │ │ ├── SlackHandler.php │ │ ├── SlackWebhookHandler.php │ │ ├── SocketHandler.php │ │ ├── SqsHandler.php │ │ ├── StreamHandler.php │ │ ├── SymfonyMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TelegramBotHandler.php │ │ ├── TestHandler.php │ │ ├── WebRequestRecognizerTrait.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── Level.php │ │ ├── LogRecord.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── ClosureContextProcessor.php │ │ ├── GitProcessor.php │ │ ├── HostnameProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── LoadAverageProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── MercurialProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── ProcessorInterface.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ ├── Registry.php │ │ ├── ResettableInterface.php │ │ ├── SignalHandler.php │ │ ├── Test │ │ └── TestCase.php │ │ └── Utils.php ├── mtdowling │ └── jmespath.php │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── bin │ │ ├── jp.php │ │ └── perf.php │ │ ├── composer.json │ │ └── src │ │ ├── AstRuntime.php │ │ ├── CompilerRuntime.php │ │ ├── DebugRuntime.php │ │ ├── Env.php │ │ ├── FnDispatcher.php │ │ ├── JmesPath.php │ │ ├── Lexer.php │ │ ├── Parser.php │ │ ├── SyntaxErrorException.php │ │ ├── TreeCompiler.php │ │ ├── TreeInterpreter.php │ │ └── Utils.php ├── myclabs │ └── deep-copy │ │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ └── ci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── DeepCopy │ │ ├── DeepCopy.php │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── Filter │ │ ├── ChainableFilter.php │ │ ├── Doctrine │ │ │ ├── DoctrineCollectionFilter.php │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ └── DoctrineProxyFilter.php │ │ ├── Filter.php │ │ ├── KeepFilter.php │ │ ├── ReplaceFilter.php │ │ └── SetNullFilter.php │ │ ├── Matcher │ │ ├── Doctrine │ │ │ └── DoctrineProxyMatcher.php │ │ ├── Matcher.php │ │ ├── PropertyMatcher.php │ │ ├── PropertyNameMatcher.php │ │ └── PropertyTypeMatcher.php │ │ ├── Reflection │ │ └── ReflectionHelper.php │ │ ├── TypeFilter │ │ ├── Date │ │ │ └── DateIntervalFilter.php │ │ ├── ReplaceFilter.php │ │ ├── ShallowCopyFilter.php │ │ ├── Spl │ │ │ ├── ArrayObjectFilter.php │ │ │ ├── SplDoublyLinkedList.php │ │ │ └── SplDoublyLinkedListFilter.php │ │ └── TypeFilter.php │ │ ├── TypeMatcher │ │ └── TypeMatcher.php │ │ └── deep_copy.php ├── nesbot │ └── carbon │ │ ├── .phpstorm.meta.php │ │ ├── LICENSE │ │ ├── bin │ │ ├── carbon │ │ └── carbon.bat │ │ ├── composer.json │ │ ├── extension.neon │ │ ├── lazy │ │ └── Carbon │ │ │ ├── MessageFormatter │ │ │ ├── MessageFormatterMapperStrongType.php │ │ │ └── MessageFormatterMapperWeakType.php │ │ │ ├── PHPStan │ │ │ ├── AbstractMacroBuiltin.php │ │ │ ├── AbstractMacroStatic.php │ │ │ ├── MacroStrongType.php │ │ │ └── MacroWeakType.php │ │ │ ├── TranslatorStrongType.php │ │ │ └── TranslatorWeakType.php │ │ ├── readme.md │ │ ├── sponsors.php │ │ └── src │ │ └── Carbon │ │ ├── AbstractTranslator.php │ │ ├── Carbon.php │ │ ├── CarbonConverterInterface.php │ │ ├── CarbonImmutable.php │ │ ├── CarbonInterface.php │ │ ├── CarbonInterval.php │ │ ├── CarbonPeriod.php │ │ ├── CarbonPeriodImmutable.php │ │ ├── CarbonTimeZone.php │ │ ├── Cli │ │ └── Invoker.php │ │ ├── Doctrine │ │ ├── CarbonDoctrineType.php │ │ ├── CarbonImmutableType.php │ │ ├── CarbonType.php │ │ ├── CarbonTypeConverter.php │ │ ├── DateTimeDefaultPrecision.php │ │ ├── DateTimeImmutableType.php │ │ └── DateTimeType.php │ │ ├── Exceptions │ │ ├── BadComparisonUnitException.php │ │ ├── BadFluentConstructorException.php │ │ ├── BadFluentSetterException.php │ │ ├── BadMethodCallException.php │ │ ├── EndLessPeriodException.php │ │ ├── Exception.php │ │ ├── ImmutableException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidCastException.php │ │ ├── InvalidDateException.php │ │ ├── InvalidFormatException.php │ │ ├── InvalidIntervalException.php │ │ ├── InvalidPeriodDateException.php │ │ ├── InvalidPeriodParameterException.php │ │ ├── InvalidTimeZoneException.php │ │ ├── InvalidTypeException.php │ │ ├── NotACarbonClassException.php │ │ ├── NotAPeriodException.php │ │ ├── NotLocaleAwareException.php │ │ ├── OutOfRangeException.php │ │ ├── ParseErrorException.php │ │ ├── RuntimeException.php │ │ ├── UnitException.php │ │ ├── UnitNotConfiguredException.php │ │ ├── UnknownGetterException.php │ │ ├── UnknownMethodException.php │ │ ├── UnknownSetterException.php │ │ ├── UnknownUnitException.php │ │ └── UnreachableException.php │ │ ├── Factory.php │ │ ├── FactoryImmutable.php │ │ ├── Lang │ │ ├── aa.php │ │ ├── aa_DJ.php │ │ ├── aa_ER.php │ │ ├── aa_ER@saaho.php │ │ ├── aa_ET.php │ │ ├── af.php │ │ ├── af_NA.php │ │ ├── af_ZA.php │ │ ├── agq.php │ │ ├── agr.php │ │ ├── agr_PE.php │ │ ├── ak.php │ │ ├── ak_GH.php │ │ ├── am.php │ │ ├── am_ET.php │ │ ├── an.php │ │ ├── an_ES.php │ │ ├── anp.php │ │ ├── anp_IN.php │ │ ├── ar.php │ │ ├── ar_AE.php │ │ ├── ar_BH.php │ │ ├── ar_DJ.php │ │ ├── ar_DZ.php │ │ ├── ar_EG.php │ │ ├── ar_EH.php │ │ ├── ar_ER.php │ │ ├── ar_IL.php │ │ ├── ar_IN.php │ │ ├── ar_IQ.php │ │ ├── ar_JO.php │ │ ├── ar_KM.php │ │ ├── ar_KW.php │ │ ├── ar_LB.php │ │ ├── ar_LY.php │ │ ├── ar_MA.php │ │ ├── ar_MR.php │ │ ├── ar_OM.php │ │ ├── ar_PS.php │ │ ├── ar_QA.php │ │ ├── ar_SA.php │ │ ├── ar_SD.php │ │ ├── ar_SO.php │ │ ├── ar_SS.php │ │ ├── ar_SY.php │ │ ├── ar_Shakl.php │ │ ├── ar_TD.php │ │ ├── ar_TN.php │ │ ├── ar_YE.php │ │ ├── as.php │ │ ├── as_IN.php │ │ ├── asa.php │ │ ├── ast.php │ │ ├── ast_ES.php │ │ ├── ayc.php │ │ ├── ayc_PE.php │ │ ├── az.php │ │ ├── az_AZ.php │ │ ├── az_Cyrl.php │ │ ├── az_IR.php │ │ ├── az_Latn.php │ │ ├── bas.php │ │ ├── be.php │ │ ├── be_BY.php │ │ ├── be_BY@latin.php │ │ ├── bem.php │ │ ├── bem_ZM.php │ │ ├── ber.php │ │ ├── ber_DZ.php │ │ ├── ber_MA.php │ │ ├── bez.php │ │ ├── bg.php │ │ ├── bg_BG.php │ │ ├── bhb.php │ │ ├── bhb_IN.php │ │ ├── bho.php │ │ ├── bho_IN.php │ │ ├── bi.php │ │ ├── bi_VU.php │ │ ├── bm.php │ │ ├── bn.php │ │ ├── bn_BD.php │ │ ├── bn_IN.php │ │ ├── bo.php │ │ ├── bo_CN.php │ │ ├── bo_IN.php │ │ ├── br.php │ │ ├── br_FR.php │ │ ├── brx.php │ │ ├── brx_IN.php │ │ ├── bs.php │ │ ├── bs_BA.php │ │ ├── bs_Cyrl.php │ │ ├── bs_Latn.php │ │ ├── byn.php │ │ ├── byn_ER.php │ │ ├── ca.php │ │ ├── ca_AD.php │ │ ├── ca_ES.php │ │ ├── ca_ES_Valencia.php │ │ ├── ca_FR.php │ │ ├── ca_IT.php │ │ ├── ccp.php │ │ ├── ccp_IN.php │ │ ├── ce.php │ │ ├── ce_RU.php │ │ ├── cgg.php │ │ ├── chr.php │ │ ├── chr_US.php │ │ ├── ckb.php │ │ ├── cmn.php │ │ ├── cmn_TW.php │ │ ├── crh.php │ │ ├── crh_UA.php │ │ ├── cs.php │ │ ├── cs_CZ.php │ │ ├── csb.php │ │ ├── csb_PL.php │ │ ├── cu.php │ │ ├── cv.php │ │ ├── cv_RU.php │ │ ├── cy.php │ │ ├── cy_GB.php │ │ ├── da.php │ │ ├── da_DK.php │ │ ├── da_GL.php │ │ ├── dav.php │ │ ├── de.php │ │ ├── de_AT.php │ │ ├── de_BE.php │ │ ├── de_CH.php │ │ ├── de_DE.php │ │ ├── de_IT.php │ │ ├── de_LI.php │ │ ├── de_LU.php │ │ ├── dje.php │ │ ├── doi.php │ │ ├── doi_IN.php │ │ ├── dsb.php │ │ ├── dsb_DE.php │ │ ├── dua.php │ │ ├── dv.php │ │ ├── dv_MV.php │ │ ├── dyo.php │ │ ├── dz.php │ │ ├── dz_BT.php │ │ ├── ebu.php │ │ ├── ee.php │ │ ├── ee_TG.php │ │ ├── el.php │ │ ├── el_CY.php │ │ ├── el_GR.php │ │ ├── en.php │ │ ├── en_001.php │ │ ├── en_150.php │ │ ├── en_AG.php │ │ ├── en_AI.php │ │ ├── en_AS.php │ │ ├── en_AT.php │ │ ├── en_AU.php │ │ ├── en_BB.php │ │ ├── en_BE.php │ │ ├── en_BI.php │ │ ├── en_BM.php │ │ ├── en_BS.php │ │ ├── en_BW.php │ │ ├── en_BZ.php │ │ ├── en_CA.php │ │ ├── en_CC.php │ │ ├── en_CH.php │ │ ├── en_CK.php │ │ ├── en_CM.php │ │ ├── en_CX.php │ │ ├── en_CY.php │ │ ├── en_DE.php │ │ ├── en_DG.php │ │ ├── en_DK.php │ │ ├── en_DM.php │ │ ├── en_ER.php │ │ ├── en_FI.php │ │ ├── en_FJ.php │ │ ├── en_FK.php │ │ ├── en_FM.php │ │ ├── en_GB.php │ │ ├── en_GD.php │ │ ├── en_GG.php │ │ ├── en_GH.php │ │ ├── en_GI.php │ │ ├── en_GM.php │ │ ├── en_GU.php │ │ ├── en_GY.php │ │ ├── en_HK.php │ │ ├── en_IE.php │ │ ├── en_IL.php │ │ ├── en_IM.php │ │ ├── en_IN.php │ │ ├── en_IO.php │ │ ├── en_ISO.php │ │ ├── en_JE.php │ │ ├── en_JM.php │ │ ├── en_KE.php │ │ ├── en_KI.php │ │ ├── en_KN.php │ │ ├── en_KY.php │ │ ├── en_LC.php │ │ ├── en_LR.php │ │ ├── en_LS.php │ │ ├── en_MG.php │ │ ├── en_MH.php │ │ ├── en_MO.php │ │ ├── en_MP.php │ │ ├── en_MS.php │ │ ├── en_MT.php │ │ ├── en_MU.php │ │ ├── en_MW.php │ │ ├── en_MY.php │ │ ├── en_NA.php │ │ ├── en_NF.php │ │ ├── en_NG.php │ │ ├── en_NL.php │ │ ├── en_NR.php │ │ ├── en_NU.php │ │ ├── en_NZ.php │ │ ├── en_PG.php │ │ ├── en_PH.php │ │ ├── en_PK.php │ │ ├── en_PN.php │ │ ├── en_PR.php │ │ ├── en_PW.php │ │ ├── en_RW.php │ │ ├── en_SB.php │ │ ├── en_SC.php │ │ ├── en_SD.php │ │ ├── en_SE.php │ │ ├── en_SG.php │ │ ├── en_SH.php │ │ ├── en_SI.php │ │ ├── en_SL.php │ │ ├── en_SS.php │ │ ├── en_SX.php │ │ ├── en_SZ.php │ │ ├── en_TC.php │ │ ├── en_TK.php │ │ ├── en_TO.php │ │ ├── en_TT.php │ │ ├── en_TV.php │ │ ├── en_TZ.php │ │ ├── en_UG.php │ │ ├── en_UM.php │ │ ├── en_US.php │ │ ├── en_US_Posix.php │ │ ├── en_VC.php │ │ ├── en_VG.php │ │ ├── en_VI.php │ │ ├── en_VU.php │ │ ├── en_WS.php │ │ ├── en_ZA.php │ │ ├── en_ZM.php │ │ ├── en_ZW.php │ │ ├── eo.php │ │ ├── es.php │ │ ├── es_419.php │ │ ├── es_AR.php │ │ ├── es_BO.php │ │ ├── es_BR.php │ │ ├── es_BZ.php │ │ ├── es_CL.php │ │ ├── es_CO.php │ │ ├── es_CR.php │ │ ├── es_CU.php │ │ ├── es_DO.php │ │ ├── es_EA.php │ │ ├── es_EC.php │ │ ├── es_ES.php │ │ ├── es_GQ.php │ │ ├── es_GT.php │ │ ├── es_HN.php │ │ ├── es_IC.php │ │ ├── es_MX.php │ │ ├── es_NI.php │ │ ├── es_PA.php │ │ ├── es_PE.php │ │ ├── es_PH.php │ │ ├── es_PR.php │ │ ├── es_PY.php │ │ ├── es_SV.php │ │ ├── es_US.php │ │ ├── es_UY.php │ │ ├── es_VE.php │ │ ├── et.php │ │ ├── et_EE.php │ │ ├── eu.php │ │ ├── eu_ES.php │ │ ├── ewo.php │ │ ├── fa.php │ │ ├── fa_AF.php │ │ ├── fa_IR.php │ │ ├── ff.php │ │ ├── ff_CM.php │ │ ├── ff_GN.php │ │ ├── ff_MR.php │ │ ├── ff_SN.php │ │ ├── fi.php │ │ ├── fi_FI.php │ │ ├── fil.php │ │ ├── fil_PH.php │ │ ├── fo.php │ │ ├── fo_DK.php │ │ ├── fo_FO.php │ │ ├── fr.php │ │ ├── fr_BE.php │ │ ├── fr_BF.php │ │ ├── fr_BI.php │ │ ├── fr_BJ.php │ │ ├── fr_BL.php │ │ ├── fr_CA.php │ │ ├── fr_CD.php │ │ ├── fr_CF.php │ │ ├── fr_CG.php │ │ ├── fr_CH.php │ │ ├── fr_CI.php │ │ ├── fr_CM.php │ │ ├── fr_DJ.php │ │ ├── fr_DZ.php │ │ ├── fr_FR.php │ │ ├── fr_GA.php │ │ ├── fr_GF.php │ │ ├── fr_GN.php │ │ ├── fr_GP.php │ │ ├── fr_GQ.php │ │ ├── fr_HT.php │ │ ├── fr_KM.php │ │ ├── fr_LU.php │ │ ├── fr_MA.php │ │ ├── fr_MC.php │ │ ├── fr_MF.php │ │ ├── fr_MG.php │ │ ├── fr_ML.php │ │ ├── fr_MQ.php │ │ ├── fr_MR.php │ │ ├── fr_MU.php │ │ ├── fr_NC.php │ │ ├── fr_NE.php │ │ ├── fr_PF.php │ │ ├── fr_PM.php │ │ ├── fr_RE.php │ │ ├── fr_RW.php │ │ ├── fr_SC.php │ │ ├── fr_SN.php │ │ ├── fr_SY.php │ │ ├── fr_TD.php │ │ ├── fr_TG.php │ │ ├── fr_TN.php │ │ ├── fr_VU.php │ │ ├── fr_WF.php │ │ ├── fr_YT.php │ │ ├── fur.php │ │ ├── fur_IT.php │ │ ├── fy.php │ │ ├── fy_DE.php │ │ ├── fy_NL.php │ │ ├── ga.php │ │ ├── ga_IE.php │ │ ├── gd.php │ │ ├── gd_GB.php │ │ ├── gez.php │ │ ├── gez_ER.php │ │ ├── gez_ET.php │ │ ├── gl.php │ │ ├── gl_ES.php │ │ ├── gom.php │ │ ├── gom_Latn.php │ │ ├── gsw.php │ │ ├── gsw_CH.php │ │ ├── gsw_FR.php │ │ ├── gsw_LI.php │ │ ├── gu.php │ │ ├── gu_IN.php │ │ ├── guz.php │ │ ├── gv.php │ │ ├── gv_GB.php │ │ ├── ha.php │ │ ├── ha_GH.php │ │ ├── ha_NE.php │ │ ├── ha_NG.php │ │ ├── hak.php │ │ ├── hak_TW.php │ │ ├── haw.php │ │ ├── he.php │ │ ├── he_IL.php │ │ ├── hi.php │ │ ├── hi_IN.php │ │ ├── hif.php │ │ ├── hif_FJ.php │ │ ├── hne.php │ │ ├── hne_IN.php │ │ ├── hr.php │ │ ├── hr_BA.php │ │ ├── hr_HR.php │ │ ├── hsb.php │ │ ├── hsb_DE.php │ │ ├── ht.php │ │ ├── ht_HT.php │ │ ├── hu.php │ │ ├── hu_HU.php │ │ ├── hy.php │ │ ├── hy_AM.php │ │ ├── i18n.php │ │ ├── ia.php │ │ ├── ia_FR.php │ │ ├── id.php │ │ ├── id_ID.php │ │ ├── ig.php │ │ ├── ig_NG.php │ │ ├── ii.php │ │ ├── ik.php │ │ ├── ik_CA.php │ │ ├── in.php │ │ ├── is.php │ │ ├── is_IS.php │ │ ├── it.php │ │ ├── it_CH.php │ │ ├── it_IT.php │ │ ├── it_SM.php │ │ ├── it_VA.php │ │ ├── iu.php │ │ ├── iu_CA.php │ │ ├── iw.php │ │ ├── ja.php │ │ ├── ja_JP.php │ │ ├── jgo.php │ │ ├── jmc.php │ │ ├── jv.php │ │ ├── ka.php │ │ ├── ka_GE.php │ │ ├── kab.php │ │ ├── kab_DZ.php │ │ ├── kam.php │ │ ├── kde.php │ │ ├── kea.php │ │ ├── khq.php │ │ ├── ki.php │ │ ├── kk.php │ │ ├── kk_KZ.php │ │ ├── kkj.php │ │ ├── kl.php │ │ ├── kl_GL.php │ │ ├── kln.php │ │ ├── km.php │ │ ├── km_KH.php │ │ ├── kn.php │ │ ├── kn_IN.php │ │ ├── ko.php │ │ ├── ko_KP.php │ │ ├── ko_KR.php │ │ ├── kok.php │ │ ├── kok_IN.php │ │ ├── ks.php │ │ ├── ks_IN.php │ │ ├── ks_IN@devanagari.php │ │ ├── ksb.php │ │ ├── ksf.php │ │ ├── ksh.php │ │ ├── ku.php │ │ ├── ku_TR.php │ │ ├── kw.php │ │ ├── kw_GB.php │ │ ├── ky.php │ │ ├── ky_KG.php │ │ ├── lag.php │ │ ├── lb.php │ │ ├── lb_LU.php │ │ ├── lg.php │ │ ├── lg_UG.php │ │ ├── li.php │ │ ├── li_NL.php │ │ ├── lij.php │ │ ├── lij_IT.php │ │ ├── lkt.php │ │ ├── ln.php │ │ ├── ln_AO.php │ │ ├── ln_CD.php │ │ ├── ln_CF.php │ │ ├── ln_CG.php │ │ ├── lo.php │ │ ├── lo_LA.php │ │ ├── lrc.php │ │ ├── lrc_IQ.php │ │ ├── lt.php │ │ ├── lt_LT.php │ │ ├── lu.php │ │ ├── luo.php │ │ ├── luy.php │ │ ├── lv.php │ │ ├── lv_LV.php │ │ ├── lzh.php │ │ ├── lzh_TW.php │ │ ├── mag.php │ │ ├── mag_IN.php │ │ ├── mai.php │ │ ├── mai_IN.php │ │ ├── mas.php │ │ ├── mas_TZ.php │ │ ├── mer.php │ │ ├── mfe.php │ │ ├── mfe_MU.php │ │ ├── mg.php │ │ ├── mg_MG.php │ │ ├── mgh.php │ │ ├── mgo.php │ │ ├── mhr.php │ │ ├── mhr_RU.php │ │ ├── mi.php │ │ ├── mi_NZ.php │ │ ├── miq.php │ │ ├── miq_NI.php │ │ ├── mjw.php │ │ ├── mjw_IN.php │ │ ├── mk.php │ │ ├── mk_MK.php │ │ ├── ml.php │ │ ├── ml_IN.php │ │ ├── mn.php │ │ ├── mn_MN.php │ │ ├── mni.php │ │ ├── mni_IN.php │ │ ├── mo.php │ │ ├── mr.php │ │ ├── mr_IN.php │ │ ├── ms.php │ │ ├── ms_BN.php │ │ ├── ms_MY.php │ │ ├── ms_SG.php │ │ ├── mt.php │ │ ├── mt_MT.php │ │ ├── mua.php │ │ ├── my.php │ │ ├── my_MM.php │ │ ├── mzn.php │ │ ├── nan.php │ │ ├── nan_TW.php │ │ ├── nan_TW@latin.php │ │ ├── naq.php │ │ ├── nb.php │ │ ├── nb_NO.php │ │ ├── nb_SJ.php │ │ ├── nd.php │ │ ├── nds.php │ │ ├── nds_DE.php │ │ ├── nds_NL.php │ │ ├── ne.php │ │ ├── ne_IN.php │ │ ├── ne_NP.php │ │ ├── nhn.php │ │ ├── nhn_MX.php │ │ ├── niu.php │ │ ├── niu_NU.php │ │ ├── nl.php │ │ ├── nl_AW.php │ │ ├── nl_BE.php │ │ ├── nl_BQ.php │ │ ├── nl_CW.php │ │ ├── nl_NL.php │ │ ├── nl_SR.php │ │ ├── nl_SX.php │ │ ├── nmg.php │ │ ├── nn.php │ │ ├── nn_NO.php │ │ ├── nnh.php │ │ ├── no.php │ │ ├── nr.php │ │ ├── nr_ZA.php │ │ ├── nso.php │ │ ├── nso_ZA.php │ │ ├── nus.php │ │ ├── nyn.php │ │ ├── oc.php │ │ ├── oc_FR.php │ │ ├── om.php │ │ ├── om_ET.php │ │ ├── om_KE.php │ │ ├── or.php │ │ ├── or_IN.php │ │ ├── os.php │ │ ├── os_RU.php │ │ ├── pa.php │ │ ├── pa_Arab.php │ │ ├── pa_Guru.php │ │ ├── pa_IN.php │ │ ├── pa_PK.php │ │ ├── pap.php │ │ ├── pap_AW.php │ │ ├── pap_CW.php │ │ ├── pl.php │ │ ├── pl_PL.php │ │ ├── prg.php │ │ ├── ps.php │ │ ├── ps_AF.php │ │ ├── pt.php │ │ ├── pt_AO.php │ │ ├── pt_BR.php │ │ ├── pt_CH.php │ │ ├── pt_CV.php │ │ ├── pt_GQ.php │ │ ├── pt_GW.php │ │ ├── pt_LU.php │ │ ├── pt_MO.php │ │ ├── pt_MZ.php │ │ ├── pt_PT.php │ │ ├── pt_ST.php │ │ ├── pt_TL.php │ │ ├── qu.php │ │ ├── qu_BO.php │ │ ├── qu_EC.php │ │ ├── quz.php │ │ ├── quz_PE.php │ │ ├── raj.php │ │ ├── raj_IN.php │ │ ├── rm.php │ │ ├── rn.php │ │ ├── ro.php │ │ ├── ro_MD.php │ │ ├── ro_RO.php │ │ ├── rof.php │ │ ├── ru.php │ │ ├── ru_BY.php │ │ ├── ru_KG.php │ │ ├── ru_KZ.php │ │ ├── ru_MD.php │ │ ├── ru_RU.php │ │ ├── ru_UA.php │ │ ├── rw.php │ │ ├── rw_RW.php │ │ ├── rwk.php │ │ ├── sa.php │ │ ├── sa_IN.php │ │ ├── sah.php │ │ ├── sah_RU.php │ │ ├── saq.php │ │ ├── sat.php │ │ ├── sat_IN.php │ │ ├── sbp.php │ │ ├── sc.php │ │ ├── sc_IT.php │ │ ├── sd.php │ │ ├── sd_IN.php │ │ ├── sd_IN@devanagari.php │ │ ├── se.php │ │ ├── se_FI.php │ │ ├── se_NO.php │ │ ├── se_SE.php │ │ ├── seh.php │ │ ├── ses.php │ │ ├── sg.php │ │ ├── sgs.php │ │ ├── sgs_LT.php │ │ ├── sh.php │ │ ├── shi.php │ │ ├── shi_Latn.php │ │ ├── shi_Tfng.php │ │ ├── shn.php │ │ ├── shn_MM.php │ │ ├── shs.php │ │ ├── shs_CA.php │ │ ├── si.php │ │ ├── si_LK.php │ │ ├── sid.php │ │ ├── sid_ET.php │ │ ├── sk.php │ │ ├── sk_SK.php │ │ ├── sl.php │ │ ├── sl_SI.php │ │ ├── sm.php │ │ ├── sm_WS.php │ │ ├── smn.php │ │ ├── sn.php │ │ ├── so.php │ │ ├── so_DJ.php │ │ ├── so_ET.php │ │ ├── so_KE.php │ │ ├── so_SO.php │ │ ├── sq.php │ │ ├── sq_AL.php │ │ ├── sq_MK.php │ │ ├── sq_XK.php │ │ ├── sr.php │ │ ├── sr_Cyrl.php │ │ ├── sr_Cyrl_BA.php │ │ ├── sr_Cyrl_ME.php │ │ ├── sr_Cyrl_XK.php │ │ ├── sr_Latn.php │ │ ├── sr_Latn_BA.php │ │ ├── sr_Latn_ME.php │ │ ├── sr_Latn_XK.php │ │ ├── sr_ME.php │ │ ├── sr_RS.php │ │ ├── sr_RS@latin.php │ │ ├── ss.php │ │ ├── ss_ZA.php │ │ ├── st.php │ │ ├── st_ZA.php │ │ ├── sv.php │ │ ├── sv_AX.php │ │ ├── sv_FI.php │ │ ├── sv_SE.php │ │ ├── sw.php │ │ ├── sw_CD.php │ │ ├── sw_KE.php │ │ ├── sw_TZ.php │ │ ├── sw_UG.php │ │ ├── szl.php │ │ ├── szl_PL.php │ │ ├── ta.php │ │ ├── ta_IN.php │ │ ├── ta_LK.php │ │ ├── ta_MY.php │ │ ├── ta_SG.php │ │ ├── tcy.php │ │ ├── tcy_IN.php │ │ ├── te.php │ │ ├── te_IN.php │ │ ├── teo.php │ │ ├── teo_KE.php │ │ ├── tet.php │ │ ├── tg.php │ │ ├── tg_TJ.php │ │ ├── th.php │ │ ├── th_TH.php │ │ ├── the.php │ │ ├── the_NP.php │ │ ├── ti.php │ │ ├── ti_ER.php │ │ ├── ti_ET.php │ │ ├── tig.php │ │ ├── tig_ER.php │ │ ├── tk.php │ │ ├── tk_TM.php │ │ ├── tl.php │ │ ├── tl_PH.php │ │ ├── tlh.php │ │ ├── tn.php │ │ ├── tn_ZA.php │ │ ├── to.php │ │ ├── to_TO.php │ │ ├── tpi.php │ │ ├── tpi_PG.php │ │ ├── tr.php │ │ ├── tr_CY.php │ │ ├── tr_TR.php │ │ ├── ts.php │ │ ├── ts_ZA.php │ │ ├── tt.php │ │ ├── tt_RU.php │ │ ├── tt_RU@iqtelif.php │ │ ├── twq.php │ │ ├── tzl.php │ │ ├── tzm.php │ │ ├── tzm_Latn.php │ │ ├── ug.php │ │ ├── ug_CN.php │ │ ├── uk.php │ │ ├── uk_UA.php │ │ ├── unm.php │ │ ├── unm_US.php │ │ ├── ur.php │ │ ├── ur_IN.php │ │ ├── ur_PK.php │ │ ├── uz.php │ │ ├── uz_Arab.php │ │ ├── uz_Cyrl.php │ │ ├── uz_Latn.php │ │ ├── uz_UZ.php │ │ ├── uz_UZ@cyrillic.php │ │ ├── vai.php │ │ ├── vai_Latn.php │ │ ├── vai_Vaii.php │ │ ├── ve.php │ │ ├── ve_ZA.php │ │ ├── vi.php │ │ ├── vi_VN.php │ │ ├── vo.php │ │ ├── vun.php │ │ ├── wa.php │ │ ├── wa_BE.php │ │ ├── wae.php │ │ ├── wae_CH.php │ │ ├── wal.php │ │ ├── wal_ET.php │ │ ├── wo.php │ │ ├── wo_SN.php │ │ ├── xh.php │ │ ├── xh_ZA.php │ │ ├── xog.php │ │ ├── yav.php │ │ ├── yi.php │ │ ├── yi_US.php │ │ ├── yo.php │ │ ├── yo_BJ.php │ │ ├── yo_NG.php │ │ ├── yue.php │ │ ├── yue_HK.php │ │ ├── yue_Hans.php │ │ ├── yue_Hant.php │ │ ├── yuw.php │ │ ├── yuw_PG.php │ │ ├── zgh.php │ │ ├── zh.php │ │ ├── zh_CN.php │ │ ├── zh_HK.php │ │ ├── zh_Hans.php │ │ ├── zh_Hans_HK.php │ │ ├── zh_Hans_MO.php │ │ ├── zh_Hans_SG.php │ │ ├── zh_Hant.php │ │ ├── zh_Hant_HK.php │ │ ├── zh_Hant_MO.php │ │ ├── zh_Hant_TW.php │ │ ├── zh_MO.php │ │ ├── zh_SG.php │ │ ├── zh_TW.php │ │ ├── zh_YUE.php │ │ ├── zu.php │ │ └── zu_ZA.php │ │ ├── Language.php │ │ ├── Laravel │ │ └── ServiceProvider.php │ │ ├── List │ │ ├── languages.php │ │ └── regions.php │ │ ├── MessageFormatter │ │ └── MessageFormatterMapper.php │ │ ├── PHPStan │ │ ├── AbstractMacro.php │ │ ├── Macro.php │ │ ├── MacroExtension.php │ │ └── MacroScanner.php │ │ ├── Traits │ │ ├── Boundaries.php │ │ ├── Cast.php │ │ ├── Comparison.php │ │ ├── Converter.php │ │ ├── Creator.php │ │ ├── Date.php │ │ ├── DeprecatedProperties.php │ │ ├── Difference.php │ │ ├── IntervalRounding.php │ │ ├── IntervalStep.php │ │ ├── Localization.php │ │ ├── Macro.php │ │ ├── MagicParameter.php │ │ ├── Mixin.php │ │ ├── Modifiers.php │ │ ├── Mutability.php │ │ ├── ObjectInitialisation.php │ │ ├── Options.php │ │ ├── Rounding.php │ │ ├── Serialization.php │ │ ├── Test.php │ │ ├── Timestamp.php │ │ ├── ToStringFormat.php │ │ ├── Units.php │ │ └── Week.php │ │ ├── Translator.php │ │ ├── TranslatorImmutable.php │ │ └── TranslatorStrongTypeInterface.php ├── nette │ ├── schema │ │ ├── composer.json │ │ ├── license.md │ │ ├── readme.md │ │ └── src │ │ │ └── Schema │ │ │ ├── Context.php │ │ │ ├── DynamicParameter.php │ │ │ ├── Elements │ │ │ ├── AnyOf.php │ │ │ ├── Base.php │ │ │ ├── Structure.php │ │ │ └── Type.php │ │ │ ├── Expect.php │ │ │ ├── Helpers.php │ │ │ ├── Message.php │ │ │ ├── Processor.php │ │ │ ├── Schema.php │ │ │ └── ValidationException.php │ └── utils │ │ ├── .phpstorm.meta.php │ │ ├── composer.json │ │ ├── license.md │ │ ├── readme.md │ │ └── src │ │ ├── HtmlStringable.php │ │ ├── Iterators │ │ ├── CachingIterator.php │ │ └── Mapper.php │ │ ├── SmartObject.php │ │ ├── StaticClass.php │ │ ├── Translator.php │ │ ├── Utils │ │ ├── ArrayHash.php │ │ ├── ArrayList.php │ │ ├── Arrays.php │ │ ├── Callback.php │ │ ├── DateTime.php │ │ ├── FileInfo.php │ │ ├── FileSystem.php │ │ ├── Finder.php │ │ ├── Floats.php │ │ ├── Helpers.php │ │ ├── Html.php │ │ ├── Image.php │ │ ├── ImageColor.php │ │ ├── ImageType.php │ │ ├── Json.php │ │ ├── ObjectHelpers.php │ │ ├── Paginator.php │ │ ├── Random.php │ │ ├── Reflection.php │ │ ├── ReflectionMethod.php │ │ ├── Strings.php │ │ ├── Type.php │ │ ├── Validators.php │ │ └── exceptions.php │ │ ├── compatibility.php │ │ └── exceptions.php ├── nicmart │ └── tree │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ ├── Builder │ │ ├── NodeBuilder.php │ │ └── NodeBuilderInterface.php │ │ ├── Node │ │ ├── Node.php │ │ ├── NodeInterface.php │ │ └── NodeTrait.php │ │ └── Visitor │ │ ├── PostOrderVisitor.php │ │ ├── PreOrderVisitor.php │ │ ├── Visitor.php │ │ └── YieldVisitor.php ├── nikic │ └── php-parser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ └── php-parse │ │ ├── composer.json │ │ ├── grammar │ │ ├── README.md │ │ ├── parser.template │ │ ├── php5.y │ │ ├── php7.y │ │ ├── phpyLang.php │ │ ├── rebuildParsers.php │ │ ├── tokens.template │ │ └── tokens.y │ │ └── lib │ │ └── PhpParser │ │ ├── Builder.php │ │ ├── Builder │ │ ├── ClassConst.php │ │ ├── Class_.php │ │ ├── Declaration.php │ │ ├── EnumCase.php │ │ ├── Enum_.php │ │ ├── FunctionLike.php │ │ ├── Function_.php │ │ ├── Interface_.php │ │ ├── Method.php │ │ ├── Namespace_.php │ │ ├── Param.php │ │ ├── Property.php │ │ ├── TraitUse.php │ │ ├── TraitUseAdaptation.php │ │ ├── Trait_.php │ │ └── Use_.php │ │ ├── BuilderFactory.php │ │ ├── BuilderHelpers.php │ │ ├── Comment.php │ │ ├── Comment │ │ └── Doc.php │ │ ├── ConstExprEvaluationException.php │ │ ├── ConstExprEvaluator.php │ │ ├── Error.php │ │ ├── ErrorHandler.php │ │ ├── ErrorHandler │ │ ├── Collecting.php │ │ └── Throwing.php │ │ ├── Internal │ │ ├── DiffElem.php │ │ ├── Differ.php │ │ ├── PrintableNewAnonClassNode.php │ │ └── TokenStream.php │ │ ├── JsonDecoder.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── Emulative.php │ │ └── TokenEmulator │ │ │ ├── AttributeEmulator.php │ │ │ ├── CoaleseEqualTokenEmulator.php │ │ │ ├── EnumTokenEmulator.php │ │ │ ├── ExplicitOctalEmulator.php │ │ │ ├── FlexibleDocStringEmulator.php │ │ │ ├── FnTokenEmulator.php │ │ │ ├── KeywordEmulator.php │ │ │ ├── MatchTokenEmulator.php │ │ │ ├── NullsafeTokenEmulator.php │ │ │ ├── NumericLiteralSeparatorEmulator.php │ │ │ ├── ReadonlyFunctionTokenEmulator.php │ │ │ ├── ReadonlyTokenEmulator.php │ │ │ ├── ReverseEmulator.php │ │ │ └── TokenEmulator.php │ │ ├── NameContext.php │ │ ├── Node.php │ │ ├── Node │ │ ├── Arg.php │ │ ├── Attribute.php │ │ ├── AttributeGroup.php │ │ ├── ComplexType.php │ │ ├── Const_.php │ │ ├── Expr.php │ │ ├── Expr │ │ │ ├── ArrayDimFetch.php │ │ │ ├── ArrayItem.php │ │ │ ├── Array_.php │ │ │ ├── ArrowFunction.php │ │ │ ├── Assign.php │ │ │ ├── AssignOp.php │ │ │ ├── AssignOp │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Div.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Pow.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ └── ShiftRight.php │ │ │ ├── AssignRef.php │ │ │ ├── BinaryOp.php │ │ │ ├── BinaryOp │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── BooleanAnd.php │ │ │ │ ├── BooleanOr.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Div.php │ │ │ │ ├── Equal.php │ │ │ │ ├── Greater.php │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ ├── Identical.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── NotEqual.php │ │ │ │ ├── NotIdentical.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Pow.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ ├── ShiftRight.php │ │ │ │ ├── Smaller.php │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ └── Spaceship.php │ │ │ ├── BitwiseNot.php │ │ │ ├── BooleanNot.php │ │ │ ├── CallLike.php │ │ │ ├── Cast.php │ │ │ ├── Cast │ │ │ │ ├── Array_.php │ │ │ │ ├── Bool_.php │ │ │ │ ├── Double.php │ │ │ │ ├── Int_.php │ │ │ │ ├── Object_.php │ │ │ │ ├── String_.php │ │ │ │ └── Unset_.php │ │ │ ├── ClassConstFetch.php │ │ │ ├── Clone_.php │ │ │ ├── Closure.php │ │ │ ├── ClosureUse.php │ │ │ ├── ConstFetch.php │ │ │ ├── Empty_.php │ │ │ ├── Error.php │ │ │ ├── ErrorSuppress.php │ │ │ ├── Eval_.php │ │ │ ├── Exit_.php │ │ │ ├── FuncCall.php │ │ │ ├── Include_.php │ │ │ ├── Instanceof_.php │ │ │ ├── Isset_.php │ │ │ ├── List_.php │ │ │ ├── Match_.php │ │ │ ├── MethodCall.php │ │ │ ├── New_.php │ │ │ ├── NullsafeMethodCall.php │ │ │ ├── NullsafePropertyFetch.php │ │ │ ├── PostDec.php │ │ │ ├── PostInc.php │ │ │ ├── PreDec.php │ │ │ ├── PreInc.php │ │ │ ├── Print_.php │ │ │ ├── PropertyFetch.php │ │ │ ├── ShellExec.php │ │ │ ├── StaticCall.php │ │ │ ├── StaticPropertyFetch.php │ │ │ ├── Ternary.php │ │ │ ├── Throw_.php │ │ │ ├── UnaryMinus.php │ │ │ ├── UnaryPlus.php │ │ │ ├── Variable.php │ │ │ ├── YieldFrom.php │ │ │ └── Yield_.php │ │ ├── FunctionLike.php │ │ ├── Identifier.php │ │ ├── IntersectionType.php │ │ ├── MatchArm.php │ │ ├── Name.php │ │ ├── Name │ │ │ ├── FullyQualified.php │ │ │ └── Relative.php │ │ ├── NullableType.php │ │ ├── Param.php │ │ ├── Scalar.php │ │ ├── Scalar │ │ │ ├── DNumber.php │ │ │ ├── Encapsed.php │ │ │ ├── EncapsedStringPart.php │ │ │ ├── LNumber.php │ │ │ ├── MagicConst.php │ │ │ ├── MagicConst │ │ │ │ ├── Class_.php │ │ │ │ ├── Dir.php │ │ │ │ ├── File.php │ │ │ │ ├── Function_.php │ │ │ │ ├── Line.php │ │ │ │ ├── Method.php │ │ │ │ ├── Namespace_.php │ │ │ │ └── Trait_.php │ │ │ └── String_.php │ │ ├── Stmt.php │ │ ├── Stmt │ │ │ ├── Break_.php │ │ │ ├── Case_.php │ │ │ ├── Catch_.php │ │ │ ├── ClassConst.php │ │ │ ├── ClassLike.php │ │ │ ├── ClassMethod.php │ │ │ ├── Class_.php │ │ │ ├── Const_.php │ │ │ ├── Continue_.php │ │ │ ├── DeclareDeclare.php │ │ │ ├── Declare_.php │ │ │ ├── Do_.php │ │ │ ├── Echo_.php │ │ │ ├── ElseIf_.php │ │ │ ├── Else_.php │ │ │ ├── EnumCase.php │ │ │ ├── Enum_.php │ │ │ ├── Expression.php │ │ │ ├── Finally_.php │ │ │ ├── For_.php │ │ │ ├── Foreach_.php │ │ │ ├── Function_.php │ │ │ ├── Global_.php │ │ │ ├── Goto_.php │ │ │ ├── GroupUse.php │ │ │ ├── HaltCompiler.php │ │ │ ├── If_.php │ │ │ ├── InlineHTML.php │ │ │ ├── Interface_.php │ │ │ ├── Label.php │ │ │ ├── Namespace_.php │ │ │ ├── Nop.php │ │ │ ├── Property.php │ │ │ ├── PropertyProperty.php │ │ │ ├── Return_.php │ │ │ ├── StaticVar.php │ │ │ ├── Static_.php │ │ │ ├── Switch_.php │ │ │ ├── Throw_.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── TraitUseAdaptation │ │ │ │ ├── Alias.php │ │ │ │ └── Precedence.php │ │ │ ├── Trait_.php │ │ │ ├── TryCatch.php │ │ │ ├── Unset_.php │ │ │ ├── UseUse.php │ │ │ ├── Use_.php │ │ │ └── While_.php │ │ ├── UnionType.php │ │ ├── VarLikeIdentifier.php │ │ └── VariadicPlaceholder.php │ │ ├── NodeAbstract.php │ │ ├── NodeDumper.php │ │ ├── NodeFinder.php │ │ ├── NodeTraverser.php │ │ ├── NodeTraverserInterface.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ ├── CloningVisitor.php │ │ ├── FindingVisitor.php │ │ ├── FirstFindingVisitor.php │ │ ├── NameResolver.php │ │ ├── NodeConnectingVisitor.php │ │ └── ParentConnectingVisitor.php │ │ ├── NodeVisitorAbstract.php │ │ ├── Parser.php │ │ ├── Parser │ │ ├── Multiple.php │ │ ├── Php5.php │ │ ├── Php7.php │ │ └── Tokens.php │ │ ├── ParserAbstract.php │ │ ├── ParserFactory.php │ │ ├── PrettyPrinter │ │ └── Standard.php │ │ └── PrettyPrinterAbstract.php ├── nunomaduro │ ├── collision │ │ ├── .temp │ │ │ └── .gitkeep │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Adapters │ │ │ ├── Laravel │ │ │ │ ├── CollisionServiceProvider.php │ │ │ │ ├── Commands │ │ │ │ │ └── TestCommand.php │ │ │ │ ├── ExceptionHandler.php │ │ │ │ ├── Exceptions │ │ │ │ │ ├── NotSupportedYetException.php │ │ │ │ │ └── RequirementsException.php │ │ │ │ ├── IgnitionSolutionsRepository.php │ │ │ │ └── Inspector.php │ │ │ └── Phpunit │ │ │ │ ├── Autoload.php │ │ │ │ ├── ConfigureIO.php │ │ │ │ ├── Printers │ │ │ │ ├── DefaultPrinter.php │ │ │ │ └── ReportablePrinter.php │ │ │ │ ├── State.php │ │ │ │ ├── Style.php │ │ │ │ ├── Subscribers │ │ │ │ ├── EnsurePrinterIsRegisteredSubscriber.php │ │ │ │ └── Subscriber.php │ │ │ │ ├── Support │ │ │ │ └── ResultReflection.php │ │ │ │ └── TestResult.php │ │ │ ├── ArgumentFormatter.php │ │ │ ├── ConsoleColor.php │ │ │ ├── Contracts │ │ │ ├── Adapters │ │ │ │ └── Phpunit │ │ │ │ │ └── HasPrintableTestCaseName.php │ │ │ ├── RenderableOnCollisionEditor.php │ │ │ ├── RenderlessEditor.php │ │ │ ├── RenderlessTrace.php │ │ │ └── SolutionsRepository.php │ │ │ ├── Coverage.php │ │ │ ├── Exceptions │ │ │ ├── InvalidStyleException.php │ │ │ ├── ShouldNotHappen.php │ │ │ ├── TestException.php │ │ │ └── TestOutcome.php │ │ │ ├── Handler.php │ │ │ ├── Highlighter.php │ │ │ ├── Provider.php │ │ │ ├── SolutionsRepositories │ │ │ └── NullSolutionsRepository.php │ │ │ └── Writer.php │ └── termwind │ │ ├── LICENSE.md │ │ ├── Makefile │ │ ├── composer.json │ │ ├── docker-compose.yml │ │ ├── docker │ │ └── Dockerfile │ │ ├── playground.php │ │ └── src │ │ ├── Actions │ │ └── StyleToMethod.php │ │ ├── Components │ │ ├── Anchor.php │ │ ├── BreakLine.php │ │ ├── Dd.php │ │ ├── Div.php │ │ ├── Dl.php │ │ ├── Dt.php │ │ ├── Element.php │ │ ├── Hr.php │ │ ├── Li.php │ │ ├── Ol.php │ │ ├── Paragraph.php │ │ ├── Raw.php │ │ ├── Span.php │ │ └── Ul.php │ │ ├── Enums │ │ └── Color.php │ │ ├── Exceptions │ │ ├── ColorNotFound.php │ │ ├── InvalidChild.php │ │ ├── InvalidColor.php │ │ ├── InvalidStyle.php │ │ └── StyleNotFound.php │ │ ├── Functions.php │ │ ├── Helpers │ │ └── QuestionHelper.php │ │ ├── Html │ │ ├── CodeRenderer.php │ │ ├── InheritStyles.php │ │ ├── PreRenderer.php │ │ └── TableRenderer.php │ │ ├── HtmlRenderer.php │ │ ├── Laravel │ │ └── TermwindServiceProvider.php │ │ ├── Question.php │ │ ├── Repositories │ │ └── Styles.php │ │ ├── Terminal.php │ │ ├── Termwind.php │ │ └── ValueObjects │ │ ├── Node.php │ │ ├── Style.php │ │ └── Styles.php ├── phar-io │ ├── manifest │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ │ ├── ManifestDocumentMapper.php │ │ │ ├── ManifestLoader.php │ │ │ ├── ManifestSerializer.php │ │ │ ├── exceptions │ │ │ ├── ElementCollectionException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidApplicationNameException.php │ │ │ ├── InvalidEmailException.php │ │ │ ├── InvalidUrlException.php │ │ │ ├── ManifestDocumentException.php │ │ │ ├── ManifestDocumentLoadingException.php │ │ │ ├── ManifestDocumentMapperException.php │ │ │ ├── ManifestElementException.php │ │ │ └── ManifestLoaderException.php │ │ │ ├── values │ │ │ ├── Application.php │ │ │ ├── ApplicationName.php │ │ │ ├── Author.php │ │ │ ├── AuthorCollection.php │ │ │ ├── AuthorCollectionIterator.php │ │ │ ├── BundledComponent.php │ │ │ ├── BundledComponentCollection.php │ │ │ ├── BundledComponentCollectionIterator.php │ │ │ ├── CopyrightInformation.php │ │ │ ├── Email.php │ │ │ ├── Extension.php │ │ │ ├── Library.php │ │ │ ├── License.php │ │ │ ├── Manifest.php │ │ │ ├── PhpExtensionRequirement.php │ │ │ ├── PhpVersionRequirement.php │ │ │ ├── Requirement.php │ │ │ ├── RequirementCollection.php │ │ │ ├── RequirementCollectionIterator.php │ │ │ ├── Type.php │ │ │ └── Url.php │ │ │ └── xml │ │ │ ├── AuthorElement.php │ │ │ ├── AuthorElementCollection.php │ │ │ ├── BundlesElement.php │ │ │ ├── ComponentElement.php │ │ │ ├── ComponentElementCollection.php │ │ │ ├── ContainsElement.php │ │ │ ├── CopyrightElement.php │ │ │ ├── ElementCollection.php │ │ │ ├── ExtElement.php │ │ │ ├── ExtElementCollection.php │ │ │ ├── ExtensionElement.php │ │ │ ├── LicenseElement.php │ │ │ ├── ManifestDocument.php │ │ │ ├── ManifestElement.php │ │ │ ├── PhpElement.php │ │ │ └── RequiresElement.php │ └── version │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BuildMetaData.php │ │ ├── PreReleaseSuffix.php │ │ ├── Version.php │ │ ├── VersionConstraintParser.php │ │ ├── VersionConstraintValue.php │ │ ├── VersionNumber.php │ │ ├── constraints │ │ ├── AbstractVersionConstraint.php │ │ ├── AndVersionConstraintGroup.php │ │ ├── AnyVersionConstraint.php │ │ ├── ExactVersionConstraint.php │ │ ├── GreaterThanOrEqualToVersionConstraint.php │ │ ├── OrVersionConstraintGroup.php │ │ ├── SpecificMajorAndMinorVersionConstraint.php │ │ ├── SpecificMajorVersionConstraint.php │ │ └── VersionConstraint.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── InvalidPreReleaseSuffixException.php │ │ ├── InvalidVersionException.php │ │ ├── NoBuildMetaDataException.php │ │ ├── NoPreReleaseSuffixException.php │ │ └── UnsupportedVersionConstraintException.php ├── phpdocumentor │ ├── reflection-common │ │ ├── .github │ │ │ ├── dependabot.yml │ │ │ └── workflows │ │ │ │ └── push.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Element.php │ │ │ ├── File.php │ │ │ ├── Fqsen.php │ │ │ ├── Location.php │ │ │ ├── Project.php │ │ │ └── ProjectFactory.php │ └── type-resolver │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── FqsenResolver.php │ │ ├── PseudoType.php │ │ ├── PseudoTypes │ │ ├── ArrayShape.php │ │ ├── ArrayShapeItem.php │ │ ├── CallableString.php │ │ ├── ConstExpression.php │ │ ├── False_.php │ │ ├── FloatValue.php │ │ ├── HtmlEscapedString.php │ │ ├── IntegerRange.php │ │ ├── IntegerValue.php │ │ ├── List_.php │ │ ├── LiteralString.php │ │ ├── LowercaseString.php │ │ ├── NegativeInteger.php │ │ ├── NonEmptyList.php │ │ ├── NonEmptyLowercaseString.php │ │ ├── NonEmptyString.php │ │ ├── NumericString.php │ │ ├── Numeric_.php │ │ ├── PositiveInteger.php │ │ ├── StringValue.php │ │ ├── TraitString.php │ │ └── True_.php │ │ ├── Type.php │ │ ├── TypeResolver.php │ │ └── Types │ │ ├── AbstractList.php │ │ ├── AggregatedType.php │ │ ├── ArrayKey.php │ │ ├── Array_.php │ │ ├── Boolean.php │ │ ├── CallableParameter.php │ │ ├── Callable_.php │ │ ├── ClassString.php │ │ ├── Collection.php │ │ ├── Compound.php │ │ ├── Context.php │ │ ├── ContextFactory.php │ │ ├── Expression.php │ │ ├── Float_.php │ │ ├── Integer.php │ │ ├── InterfaceString.php │ │ ├── Intersection.php │ │ ├── Iterable_.php │ │ ├── Mixed_.php │ │ ├── Never_.php │ │ ├── Null_.php │ │ ├── Nullable.php │ │ ├── Object_.php │ │ ├── Parent_.php │ │ ├── Resource_.php │ │ ├── Scalar.php │ │ ├── Self_.php │ │ ├── Static_.php │ │ ├── String_.php │ │ ├── This.php │ │ └── Void_.php ├── phpoption │ └── phpoption │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ └── PhpOption │ │ ├── LazyOption.php │ │ ├── None.php │ │ ├── Option.php │ │ └── Some.php ├── phpstan │ └── phpdoc-parser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan-baseline.neon │ │ └── src │ │ ├── Ast │ │ ├── AbstractNodeVisitor.php │ │ ├── Attribute.php │ │ ├── ConstExpr │ │ │ ├── ConstExprArrayItemNode.php │ │ │ ├── ConstExprArrayNode.php │ │ │ ├── ConstExprFalseNode.php │ │ │ ├── ConstExprFloatNode.php │ │ │ ├── ConstExprIntegerNode.php │ │ │ ├── ConstExprNode.php │ │ │ ├── ConstExprNullNode.php │ │ │ ├── ConstExprStringNode.php │ │ │ ├── ConstExprTrueNode.php │ │ │ ├── ConstFetchNode.php │ │ │ ├── DoctrineConstExprStringNode.php │ │ │ └── QuoteAwareConstExprStringNode.php │ │ ├── Node.php │ │ ├── NodeAttributes.php │ │ ├── NodeTraverser.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ │ └── CloningVisitor.php │ │ ├── PhpDoc │ │ │ ├── AssertTagMethodValueNode.php │ │ │ ├── AssertTagPropertyValueNode.php │ │ │ ├── AssertTagValueNode.php │ │ │ ├── DeprecatedTagValueNode.php │ │ │ ├── Doctrine │ │ │ │ ├── DoctrineAnnotation.php │ │ │ │ ├── DoctrineArgument.php │ │ │ │ ├── DoctrineArray.php │ │ │ │ ├── DoctrineArrayItem.php │ │ │ │ └── DoctrineTagValueNode.php │ │ │ ├── ExtendsTagValueNode.php │ │ │ ├── GenericTagValueNode.php │ │ │ ├── ImplementsTagValueNode.php │ │ │ ├── InvalidTagValueNode.php │ │ │ ├── MethodTagValueNode.php │ │ │ ├── MethodTagValueParameterNode.php │ │ │ ├── MixinTagValueNode.php │ │ │ ├── ParamOutTagValueNode.php │ │ │ ├── ParamTagValueNode.php │ │ │ ├── PhpDocChildNode.php │ │ │ ├── PhpDocNode.php │ │ │ ├── PhpDocTagNode.php │ │ │ ├── PhpDocTagValueNode.php │ │ │ ├── PhpDocTextNode.php │ │ │ ├── PropertyTagValueNode.php │ │ │ ├── ReturnTagValueNode.php │ │ │ ├── SelfOutTagValueNode.php │ │ │ ├── TemplateTagValueNode.php │ │ │ ├── ThrowsTagValueNode.php │ │ │ ├── TypeAliasImportTagValueNode.php │ │ │ ├── TypeAliasTagValueNode.php │ │ │ ├── TypelessParamTagValueNode.php │ │ │ ├── UsesTagValueNode.php │ │ │ └── VarTagValueNode.php │ │ └── Type │ │ │ ├── ArrayShapeItemNode.php │ │ │ ├── ArrayShapeNode.php │ │ │ ├── ArrayTypeNode.php │ │ │ ├── CallableTypeNode.php │ │ │ ├── CallableTypeParameterNode.php │ │ │ ├── ConditionalTypeForParameterNode.php │ │ │ ├── ConditionalTypeNode.php │ │ │ ├── ConstTypeNode.php │ │ │ ├── GenericTypeNode.php │ │ │ ├── IdentifierTypeNode.php │ │ │ ├── IntersectionTypeNode.php │ │ │ ├── InvalidTypeNode.php │ │ │ ├── NullableTypeNode.php │ │ │ ├── ObjectShapeItemNode.php │ │ │ ├── ObjectShapeNode.php │ │ │ ├── OffsetAccessTypeNode.php │ │ │ ├── ThisTypeNode.php │ │ │ ├── TypeNode.php │ │ │ └── UnionTypeNode.php │ │ ├── Lexer │ │ └── Lexer.php │ │ ├── Parser │ │ ├── ConstExprParser.php │ │ ├── ParserException.php │ │ ├── PhpDocParser.php │ │ ├── StringUnescaper.php │ │ ├── TokenIterator.php │ │ └── TypeParser.php │ │ └── Printer │ │ ├── DiffElem.php │ │ ├── Differ.php │ │ └── Printer.php ├── phpunit │ ├── php-code-coverage │ │ ├── ChangeLog-10.1.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Data │ │ │ ├── ProcessedCodeCoverageData.php │ │ │ └── RawCodeCoverageData.php │ │ │ ├── Driver │ │ │ ├── Driver.php │ │ │ ├── PcovDriver.php │ │ │ ├── Selector.php │ │ │ └── XdebugDriver.php │ │ │ ├── Exception │ │ │ ├── BranchAndPathCoverageNotSupportedException.php │ │ │ ├── DeadCodeDetectionNotSupportedException.php │ │ │ ├── DirectoryCouldNotBeCreatedException.php │ │ │ ├── Exception.php │ │ │ ├── FileCouldNotBeWrittenException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── NoCodeCoverageDriverAvailableException.php │ │ │ ├── NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php │ │ │ ├── ParserException.php │ │ │ ├── PathExistsButIsNotDirectoryException.php │ │ │ ├── PcovNotAvailableException.php │ │ │ ├── ReflectionException.php │ │ │ ├── ReportAlreadyFinalizedException.php │ │ │ ├── StaticAnalysisCacheNotConfiguredException.php │ │ │ ├── TestIdMissingException.php │ │ │ ├── UnintentionallyCoveredCodeException.php │ │ │ ├── WriteOperationFailedException.php │ │ │ ├── XdebugNotAvailableException.php │ │ │ ├── XdebugNotEnabledException.php │ │ │ └── XmlException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ ├── AbstractNode.php │ │ │ ├── Builder.php │ │ │ ├── CrapIndex.php │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ └── Iterator.php │ │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Cobertura.php │ │ │ ├── Crap4j.php │ │ │ ├── Html │ │ │ │ ├── Colors.php │ │ │ │ ├── CustomCssFile.php │ │ │ │ ├── Facade.php │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── branches.html.dist │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── coverage_bar_branch.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ ├── octicons.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── dashboard_branch.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_branch.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── directory_item_branch.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_branch.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── file_item_branch.html.dist │ │ │ │ │ ├── icons │ │ │ │ │ ├── file-code.svg │ │ │ │ │ └── file-directory.svg │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── file.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── popper.min.js │ │ │ │ │ ├── line.html.dist │ │ │ │ │ ├── lines.html.dist │ │ │ │ │ ├── method_item.html.dist │ │ │ │ │ ├── method_item_branch.html.dist │ │ │ │ │ └── paths.html.dist │ │ │ ├── PHP.php │ │ │ ├── Text.php │ │ │ ├── Thresholds.php │ │ │ └── Xml │ │ │ │ ├── BuildInformation.php │ │ │ │ ├── Coverage.php │ │ │ │ ├── Directory.php │ │ │ │ ├── Facade.php │ │ │ │ ├── File.php │ │ │ │ ├── Method.php │ │ │ │ ├── Node.php │ │ │ │ ├── Project.php │ │ │ │ ├── Report.php │ │ │ │ ├── Source.php │ │ │ │ ├── Tests.php │ │ │ │ ├── Totals.php │ │ │ │ └── Unit.php │ │ │ ├── StaticAnalysis │ │ │ ├── CacheWarmer.php │ │ │ ├── CachingFileAnalyser.php │ │ │ ├── CodeUnitFindingVisitor.php │ │ │ ├── ExecutableLinesFindingVisitor.php │ │ │ ├── FileAnalyser.php │ │ │ ├── IgnoredLinesFindingVisitor.php │ │ │ └── ParsingFileAnalyser.php │ │ │ ├── TestSize │ │ │ ├── Known.php │ │ │ ├── Large.php │ │ │ ├── Medium.php │ │ │ ├── Small.php │ │ │ ├── TestSize.php │ │ │ └── Unknown.php │ │ │ ├── TestStatus │ │ │ ├── Failure.php │ │ │ ├── Known.php │ │ │ ├── Success.php │ │ │ ├── TestStatus.php │ │ │ └── Unknown.php │ │ │ ├── Util │ │ │ ├── Filesystem.php │ │ │ └── Percentage.php │ │ │ └── Version.php │ ├── php-file-iterator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ExcludeIterator.php │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ ├── php-invoker │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Invoker.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── ProcessControlExtensionNotLoadedException.php │ │ │ └── TimeoutException.php │ ├── php-text-template │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Template.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ ├── php-timer │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Duration.php │ │ │ ├── ResourceUsageFormatter.php │ │ │ ├── Timer.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── NoActiveTimerException.php │ │ │ └── TimeSinceStartOfRequestNotAvailableException.php │ └── phpunit │ │ ├── .phpstorm.meta.php │ │ ├── ChangeLog-10.4.md │ │ ├── DEPRECATIONS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── phpunit │ │ ├── phpunit.xsd │ │ ├── schema │ │ ├── 10.0.xsd │ │ ├── 8.5.xsd │ │ ├── 9.2.xsd │ │ └── 9.5.xsd │ │ └── src │ │ ├── Event │ │ ├── Dispatcher │ │ │ ├── CollectingDispatcher.php │ │ │ ├── DeferringDispatcher.php │ │ │ ├── DirectDispatcher.php │ │ │ ├── Dispatcher.php │ │ │ └── SubscribableDispatcher.php │ │ ├── Emitter │ │ │ ├── DispatchingEmitter.php │ │ │ └── Emitter.php │ │ ├── Events │ │ │ ├── Application │ │ │ │ ├── Finished.php │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ ├── Started.php │ │ │ │ └── StartedSubscriber.php │ │ │ ├── Event.php │ │ │ ├── EventCollection.php │ │ │ ├── EventCollectionIterator.php │ │ │ ├── Test │ │ │ │ ├── Assertion │ │ │ │ │ ├── AssertionFailed.php │ │ │ │ │ ├── AssertionFailedSubscriber.php │ │ │ │ │ ├── AssertionSucceeded.php │ │ │ │ │ └── AssertionSucceededSubscriber.php │ │ │ │ ├── ComparatorRegistered.php │ │ │ │ ├── ComparatorRegisteredSubscriber.php │ │ │ │ ├── HookMethod │ │ │ │ │ ├── AfterLastTestMethodCalled.php │ │ │ │ │ ├── AfterLastTestMethodCalledSubscriber.php │ │ │ │ │ ├── AfterLastTestMethodFinished.php │ │ │ │ │ ├── AfterLastTestMethodFinishedSubscriber.php │ │ │ │ │ ├── AfterTestMethodCalled.php │ │ │ │ │ ├── AfterTestMethodCalledSubscriber.php │ │ │ │ │ ├── AfterTestMethodFinished.php │ │ │ │ │ ├── AfterTestMethodFinishedSubscriber.php │ │ │ │ │ ├── BeforeFirstTestMethodCalled.php │ │ │ │ │ ├── BeforeFirstTestMethodCalledSubscriber.php │ │ │ │ │ ├── BeforeFirstTestMethodErrored.php │ │ │ │ │ ├── BeforeFirstTestMethodErroredSubscriber.php │ │ │ │ │ ├── BeforeFirstTestMethodFinished.php │ │ │ │ │ ├── BeforeFirstTestMethodFinishedSubscriber.php │ │ │ │ │ ├── BeforeTestMethodCalled.php │ │ │ │ │ ├── BeforeTestMethodCalledSubscriber.php │ │ │ │ │ ├── BeforeTestMethodFinished.php │ │ │ │ │ ├── BeforeTestMethodFinishedSubscriber.php │ │ │ │ │ ├── PostConditionCalled.php │ │ │ │ │ ├── PostConditionCalledSubscriber.php │ │ │ │ │ ├── PostConditionFinished.php │ │ │ │ │ ├── PostConditionFinishedSubscriber.php │ │ │ │ │ ├── PreConditionCalled.php │ │ │ │ │ ├── PreConditionCalledSubscriber.php │ │ │ │ │ ├── PreConditionFinished.php │ │ │ │ │ └── PreConditionFinishedSubscriber.php │ │ │ │ ├── Issue │ │ │ │ │ ├── ConsideredRisky.php │ │ │ │ │ ├── ConsideredRiskySubscriber.php │ │ │ │ │ ├── DeprecationTriggered.php │ │ │ │ │ ├── DeprecationTriggeredSubscriber.php │ │ │ │ │ ├── ErrorTriggered.php │ │ │ │ │ ├── ErrorTriggeredSubscriber.php │ │ │ │ │ ├── NoticeTriggered.php │ │ │ │ │ ├── NoticeTriggeredSubscriber.php │ │ │ │ │ ├── PhpDeprecationTriggered.php │ │ │ │ │ ├── PhpDeprecationTriggeredSubscriber.php │ │ │ │ │ ├── PhpNoticeTriggered.php │ │ │ │ │ ├── PhpNoticeTriggeredSubscriber.php │ │ │ │ │ ├── PhpWarningTriggered.php │ │ │ │ │ ├── PhpWarningTriggeredSubscriber.php │ │ │ │ │ ├── PhpunitDeprecationTriggered.php │ │ │ │ │ ├── PhpunitDeprecationTriggeredSubscriber.php │ │ │ │ │ ├── PhpunitErrorTriggered.php │ │ │ │ │ ├── PhpunitErrorTriggeredSubscriber.php │ │ │ │ │ ├── PhpunitWarningTriggered.php │ │ │ │ │ ├── PhpunitWarningTriggeredSubscriber.php │ │ │ │ │ ├── WarningTriggered.php │ │ │ │ │ └── WarningTriggeredSubscriber.php │ │ │ │ ├── Lifecycle │ │ │ │ │ ├── DataProviderMethodCalled.php │ │ │ │ │ ├── DataProviderMethodCalledSubscriber.php │ │ │ │ │ ├── DataProviderMethodFinished.php │ │ │ │ │ ├── DataProviderMethodFinishedSubscriber.php │ │ │ │ │ ├── Finished.php │ │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ │ ├── PreparationFailed.php │ │ │ │ │ ├── PreparationFailedSubscriber.php │ │ │ │ │ ├── PreparationStarted.php │ │ │ │ │ ├── PreparationStartedSubscriber.php │ │ │ │ │ ├── Prepared.php │ │ │ │ │ └── PreparedSubscriber.php │ │ │ │ ├── Outcome │ │ │ │ │ ├── Errored.php │ │ │ │ │ ├── ErroredSubscriber.php │ │ │ │ │ ├── Failed.php │ │ │ │ │ ├── FailedSubscriber.php │ │ │ │ │ ├── MarkedIncomplete.php │ │ │ │ │ ├── MarkedIncompleteSubscriber.php │ │ │ │ │ ├── Passed.php │ │ │ │ │ ├── PassedSubscriber.php │ │ │ │ │ ├── Skipped.php │ │ │ │ │ └── SkippedSubscriber.php │ │ │ │ ├── PrintedUnexpectedOutput.php │ │ │ │ ├── PrintedUnexpectedOutputSubscriber.php │ │ │ │ └── TestDouble │ │ │ │ │ ├── MockObjectCreated.php │ │ │ │ │ ├── MockObjectCreatedSubscriber.php │ │ │ │ │ ├── MockObjectForAbstractClassCreated.php │ │ │ │ │ ├── MockObjectForAbstractClassCreatedSubscriber.php │ │ │ │ │ ├── MockObjectForIntersectionOfInterfacesCreated.php │ │ │ │ │ ├── MockObjectForIntersectionOfInterfacesCreatedSubscriber.php │ │ │ │ │ ├── MockObjectForTraitCreated.php │ │ │ │ │ ├── MockObjectForTraitCreatedSubscriber.php │ │ │ │ │ ├── MockObjectFromWsdlCreated.php │ │ │ │ │ ├── MockObjectFromWsdlCreatedSubscriber.php │ │ │ │ │ ├── PartialMockObjectCreated.php │ │ │ │ │ ├── PartialMockObjectCreatedSubscriber.php │ │ │ │ │ ├── TestProxyCreated.php │ │ │ │ │ ├── TestProxyCreatedSubscriber.php │ │ │ │ │ ├── TestStubCreated.php │ │ │ │ │ ├── TestStubCreatedSubscriber.php │ │ │ │ │ ├── TestStubForIntersectionOfInterfacesCreated.php │ │ │ │ │ └── TestStubForIntersectionOfInterfacesCreatedSubscriber.php │ │ │ ├── TestRunner │ │ │ │ ├── BootstrapFinished.php │ │ │ │ ├── BootstrapFinishedSubscriber.php │ │ │ │ ├── Configured.php │ │ │ │ ├── ConfiguredSubscriber.php │ │ │ │ ├── DeprecationTriggered.php │ │ │ │ ├── DeprecationTriggeredSubscriber.php │ │ │ │ ├── EventFacadeSealed.php │ │ │ │ ├── EventFacadeSealedSubscriber.php │ │ │ │ ├── ExecutionAborted.php │ │ │ │ ├── ExecutionAbortedSubscriber.php │ │ │ │ ├── ExecutionFinished.php │ │ │ │ ├── ExecutionFinishedSubscriber.php │ │ │ │ ├── ExecutionStarted.php │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ ├── ExtensionBootstrapped.php │ │ │ │ ├── ExtensionBootstrappedSubscriber.php │ │ │ │ ├── ExtensionLoadedFromPhar.php │ │ │ │ ├── ExtensionLoadedFromPharSubscriber.php │ │ │ │ ├── Finished.php │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ ├── GarbageCollectionDisabled.php │ │ │ │ ├── GarbageCollectionDisabledSubscriber.php │ │ │ │ ├── GarbageCollectionEnabled.php │ │ │ │ ├── GarbageCollectionEnabledSubscriber.php │ │ │ │ ├── GarbageCollectionTriggered.php │ │ │ │ ├── GarbageCollectionTriggeredSubscriber.php │ │ │ │ ├── Started.php │ │ │ │ ├── StartedSubscriber.php │ │ │ │ ├── WarningTriggered.php │ │ │ │ └── WarningTriggeredSubscriber.php │ │ │ └── TestSuite │ │ │ │ ├── Filtered.php │ │ │ │ ├── FilteredSubscriber.php │ │ │ │ ├── Finished.php │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ ├── Loaded.php │ │ │ │ ├── LoadedSubscriber.php │ │ │ │ ├── Skipped.php │ │ │ │ ├── SkippedSubscriber.php │ │ │ │ ├── Sorted.php │ │ │ │ ├── SortedSubscriber.php │ │ │ │ ├── Started.php │ │ │ │ └── StartedSubscriber.php │ │ ├── Exception │ │ │ ├── EventAlreadyAssignedException.php │ │ │ ├── EventFacadeIsSealedException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidEventException.php │ │ │ ├── InvalidSubscriberException.php │ │ │ ├── MapError.php │ │ │ ├── MoreThanOneDataSetFromDataProviderException.php │ │ │ ├── NoComparisonFailureException.php │ │ │ ├── NoDataSetFromDataProviderException.php │ │ │ ├── NoPreviousThrowableException.php │ │ │ ├── NoTestCaseObjectOnCallStackException.php │ │ │ ├── RuntimeException.php │ │ │ ├── SubscriberTypeAlreadyRegisteredException.php │ │ │ ├── UnknownEventException.php │ │ │ ├── UnknownEventTypeException.php │ │ │ ├── UnknownSubscriberException.php │ │ │ └── UnknownSubscriberTypeException.php │ │ ├── Facade.php │ │ ├── Subscriber.php │ │ ├── Tracer.php │ │ ├── TypeMap.php │ │ └── Value │ │ │ ├── ClassMethod.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── ComparisonFailureBuilder.php │ │ │ ├── Runtime │ │ │ ├── OperatingSystem.php │ │ │ ├── PHP.php │ │ │ ├── PHPUnit.php │ │ │ └── Runtime.php │ │ │ ├── Telemetry │ │ │ ├── Duration.php │ │ │ ├── GarbageCollectorStatus.php │ │ │ ├── GarbageCollectorStatusProvider.php │ │ │ ├── HRTime.php │ │ │ ├── Info.php │ │ │ ├── MemoryMeter.php │ │ │ ├── MemoryUsage.php │ │ │ ├── Php81GarbageCollectorStatusProvider.php │ │ │ ├── Php83GarbageCollectorStatusProvider.php │ │ │ ├── Snapshot.php │ │ │ ├── StopWatch.php │ │ │ ├── System.php │ │ │ ├── SystemMemoryMeter.php │ │ │ ├── SystemStopWatch.php │ │ │ └── SystemStopWatchWithOffset.php │ │ │ ├── Test │ │ │ ├── Phpt.php │ │ │ ├── Test.php │ │ │ ├── TestCollection.php │ │ │ ├── TestCollectionIterator.php │ │ │ ├── TestData │ │ │ │ ├── DataFromDataProvider.php │ │ │ │ ├── DataFromTestDependency.php │ │ │ │ ├── TestData.php │ │ │ │ ├── TestDataCollection.php │ │ │ │ └── TestDataCollectionIterator.php │ │ │ ├── TestDox.php │ │ │ ├── TestDoxBuilder.php │ │ │ ├── TestMethod.php │ │ │ └── TestMethodBuilder.php │ │ │ ├── TestSuite │ │ │ ├── TestSuite.php │ │ │ ├── TestSuiteBuilder.php │ │ │ ├── TestSuiteForTestClass.php │ │ │ ├── TestSuiteForTestMethodWithDataProvider.php │ │ │ └── TestSuiteWithName.php │ │ │ ├── Throwable.php │ │ │ └── ThrowableBuilder.php │ │ ├── Exception.php │ │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── Attributes │ │ │ ├── After.php │ │ │ ├── AfterClass.php │ │ │ ├── BackupGlobals.php │ │ │ ├── BackupStaticProperties.php │ │ │ ├── Before.php │ │ │ ├── BeforeClass.php │ │ │ ├── CodeCoverageIgnore.php │ │ │ ├── CoversClass.php │ │ │ ├── CoversFunction.php │ │ │ ├── CoversNothing.php │ │ │ ├── DataProvider.php │ │ │ ├── DataProviderExternal.php │ │ │ ├── Depends.php │ │ │ ├── DependsExternal.php │ │ │ ├── DependsExternalUsingDeepClone.php │ │ │ ├── DependsExternalUsingShallowClone.php │ │ │ ├── DependsOnClass.php │ │ │ ├── DependsOnClassUsingDeepClone.php │ │ │ ├── DependsOnClassUsingShallowClone.php │ │ │ ├── DependsUsingDeepClone.php │ │ │ ├── DependsUsingShallowClone.php │ │ │ ├── DoesNotPerformAssertions.php │ │ │ ├── ExcludeGlobalVariableFromBackup.php │ │ │ ├── ExcludeStaticPropertyFromBackup.php │ │ │ ├── Group.php │ │ │ ├── IgnoreClassForCodeCoverage.php │ │ │ ├── IgnoreFunctionForCodeCoverage.php │ │ │ ├── IgnoreMethodForCodeCoverage.php │ │ │ ├── Large.php │ │ │ ├── Medium.php │ │ │ ├── PostCondition.php │ │ │ ├── PreCondition.php │ │ │ ├── PreserveGlobalState.php │ │ │ ├── RequiresFunction.php │ │ │ ├── RequiresMethod.php │ │ │ ├── RequiresOperatingSystem.php │ │ │ ├── RequiresOperatingSystemFamily.php │ │ │ ├── RequiresPhp.php │ │ │ ├── RequiresPhpExtension.php │ │ │ ├── RequiresPhpunit.php │ │ │ ├── RequiresSetting.php │ │ │ ├── RunClassInSeparateProcess.php │ │ │ ├── RunInSeparateProcess.php │ │ │ ├── RunTestsInSeparateProcesses.php │ │ │ ├── Small.php │ │ │ ├── Test.php │ │ │ ├── TestDox.php │ │ │ ├── TestWith.php │ │ │ ├── TestWithJson.php │ │ │ ├── Ticket.php │ │ │ ├── UsesClass.php │ │ │ ├── UsesFunction.php │ │ │ └── WithoutErrorHandler.php │ │ ├── Constraint │ │ │ ├── Boolean │ │ │ │ ├── IsFalse.php │ │ │ │ └── IsTrue.php │ │ │ ├── Callback.php │ │ │ ├── Cardinality │ │ │ │ ├── Count.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── IsEmpty.php │ │ │ │ ├── LessThan.php │ │ │ │ └── SameSize.php │ │ │ ├── Constraint.php │ │ │ ├── Equality │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsEqualCanonicalizing.php │ │ │ │ ├── IsEqualIgnoringCase.php │ │ │ │ └── IsEqualWithDelta.php │ │ │ ├── Exception │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionCode.php │ │ │ │ ├── ExceptionMessageIsOrContains.php │ │ │ │ └── ExceptionMessageMatchesRegularExpression.php │ │ │ ├── Filesystem │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── IsReadable.php │ │ │ │ └── IsWritable.php │ │ │ ├── IsAnything.php │ │ │ ├── IsIdentical.php │ │ │ ├── JsonMatches.php │ │ │ ├── Math │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsInfinite.php │ │ │ │ └── IsNan.php │ │ │ ├── Object │ │ │ │ ├── ObjectEquals.php │ │ │ │ └── ObjectHasProperty.php │ │ │ ├── Operator │ │ │ │ ├── BinaryOperator.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalNot.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── Operator.php │ │ │ │ └── UnaryOperator.php │ │ │ ├── String │ │ │ │ ├── IsJson.php │ │ │ │ ├── RegularExpression.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringEqualsStringIgnoringLineEndings.php │ │ │ │ ├── StringMatchesFormatDescription.php │ │ │ │ └── StringStartsWith.php │ │ │ ├── Traversable │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── IsList.php │ │ │ │ ├── TraversableContains.php │ │ │ │ ├── TraversableContainsEqual.php │ │ │ │ ├── TraversableContainsIdentical.php │ │ │ │ └── TraversableContainsOnly.php │ │ │ └── Type │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsNull.php │ │ │ │ └── IsType.php │ │ ├── DataProviderTestSuite.php │ │ ├── Exception │ │ │ ├── AssertionFailedError.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── EmptyStringException.php │ │ │ ├── Exception.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── GeneratorNotSupportedException.php │ │ │ ├── Incomplete │ │ │ │ ├── IncompleteTest.php │ │ │ │ └── IncompleteTestError.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── InvalidDataProviderException.php │ │ │ ├── InvalidDependencyException.php │ │ │ ├── NoChildTestSuiteException.php │ │ │ ├── ObjectEquals │ │ │ │ ├── ActualValueIsNotAnObjectException.php │ │ │ │ ├── ComparisonMethodDoesNotAcceptParameterTypeException.php │ │ │ │ ├── ComparisonMethodDoesNotDeclareBoolReturnTypeException.php │ │ │ │ ├── ComparisonMethodDoesNotDeclareExactlyOneParameterException.php │ │ │ │ ├── ComparisonMethodDoesNotDeclareParameterTypeException.php │ │ │ │ └── ComparisonMethodDoesNotExistException.php │ │ │ ├── PHPTAssertionFailedError.php │ │ │ ├── ProcessIsolationException.php │ │ │ ├── Skipped │ │ │ │ ├── SkippedTest.php │ │ │ │ ├── SkippedTestSuiteError.php │ │ │ │ └── SkippedWithMessageException.php │ │ │ ├── UnknownClassOrInterfaceException.php │ │ │ └── UnknownTypeException.php │ │ ├── ExecutionOrderDependency.php │ │ ├── MockObject │ │ │ ├── ConfigurableMethod.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── CannotUseAddMethodsException.php │ │ │ │ ├── CannotUseOnlyMethodsException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── IncompatibleReturnValueException.php │ │ │ │ ├── MatchBuilderNotFoundException.php │ │ │ │ ├── MatcherAlreadyRegisteredException.php │ │ │ │ ├── MethodCannotBeConfiguredException.php │ │ │ │ ├── MethodNameAlreadyConfiguredException.php │ │ │ │ ├── MethodNameNotConfiguredException.php │ │ │ │ ├── MethodParametersAlreadyConfiguredException.php │ │ │ │ ├── NeverReturningMethodException.php │ │ │ │ ├── ReflectionException.php │ │ │ │ ├── ReturnValueNotConfiguredException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Generator │ │ │ │ ├── Exception │ │ │ │ │ ├── ClassAlreadyExistsException.php │ │ │ │ │ ├── ClassIsEnumerationException.php │ │ │ │ │ ├── ClassIsFinalException.php │ │ │ │ │ ├── ClassIsReadonlyException.php │ │ │ │ │ ├── DuplicateMethodException.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── InvalidMethodNameException.php │ │ │ │ │ ├── OriginalConstructorInvocationRequiredException.php │ │ │ │ │ ├── ReflectionException.php │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ ├── SoapExtensionNotAvailableException.php │ │ │ │ │ ├── UnknownClassException.php │ │ │ │ │ ├── UnknownTraitException.php │ │ │ │ │ └── UnknownTypeException.php │ │ │ │ ├── Generator.php │ │ │ │ ├── MockClass.php │ │ │ │ ├── MockMethod.php │ │ │ │ ├── MockMethodSet.php │ │ │ │ ├── MockTrait.php │ │ │ │ ├── MockType.php │ │ │ │ ├── TemplateLoader.php │ │ │ │ └── templates │ │ │ │ │ ├── deprecation.tpl │ │ │ │ │ ├── doubled_method.tpl │ │ │ │ │ ├── doubled_static_method.tpl │ │ │ │ │ ├── intersection.tpl │ │ │ │ │ ├── proxied_method.tpl │ │ │ │ │ ├── test_double_class.tpl │ │ │ │ │ ├── trait_class.tpl │ │ │ │ │ ├── wsdl_class.tpl │ │ │ │ │ └── wsdl_method.tpl │ │ │ ├── MockBuilder.php │ │ │ └── Runtime │ │ │ │ ├── Api │ │ │ │ ├── DoubledCloneMethod.php │ │ │ │ ├── Method.php │ │ │ │ ├── MockObjectApi.php │ │ │ │ ├── ProxiedCloneMethod.php │ │ │ │ └── StubApi.php │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── InvocationStubber.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Interface │ │ │ │ ├── MockObject.php │ │ │ │ ├── MockObjectInternal.php │ │ │ │ ├── Stub.php │ │ │ │ └── StubInternal.php │ │ │ │ ├── Invocation.php │ │ │ │ ├── InvocationHandler.php │ │ │ │ ├── Matcher.php │ │ │ │ ├── MethodNameConstraint.php │ │ │ │ ├── ReturnValueGenerator.php │ │ │ │ ├── Rule │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── InvocationOrder.php │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── ParametersRule.php │ │ │ │ └── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ ├── ReturnStub.php │ │ │ │ ├── ReturnValueMap.php │ │ │ │ └── Stub.php │ │ ├── Reorderable.php │ │ ├── SelfDescribing.php │ │ ├── Test.php │ │ ├── TestBuilder.php │ │ ├── TestCase.php │ │ ├── TestRunner.php │ │ ├── TestSize │ │ │ ├── Known.php │ │ │ ├── Large.php │ │ │ ├── Medium.php │ │ │ ├── Small.php │ │ │ ├── TestSize.php │ │ │ └── Unknown.php │ │ ├── TestStatus │ │ │ ├── Deprecation.php │ │ │ ├── Error.php │ │ │ ├── Failure.php │ │ │ ├── Incomplete.php │ │ │ ├── Known.php │ │ │ ├── Notice.php │ │ │ ├── Risky.php │ │ │ ├── Skipped.php │ │ │ ├── Success.php │ │ │ ├── TestStatus.php │ │ │ ├── Unknown.php │ │ │ └── Warning.php │ │ ├── TestSuite.php │ │ └── TestSuiteIterator.php │ │ ├── Logging │ │ ├── EventLogger.php │ │ ├── Exception.php │ │ ├── JUnit │ │ │ ├── JunitXmlLogger.php │ │ │ └── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestRunnerExecutionFinishedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ ├── TeamCity │ │ │ ├── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestRunnerExecutionFinishedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ │ └── TeamCityLogger.php │ │ └── TestDox │ │ │ ├── HtmlRenderer.php │ │ │ ├── NamePrettifier.php │ │ │ ├── PlainTextRenderer.php │ │ │ └── TestMethod │ │ │ ├── Subscriber │ │ │ ├── Subscriber.php │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ ├── TestCreatedMockObjectForAbstractClassSubscriber.php │ │ │ ├── TestCreatedMockObjectForTraitSubscriber.php │ │ │ ├── TestCreatedMockObjectFromWsdlSubscriber.php │ │ │ ├── TestCreatedMockObjectSubscriber.php │ │ │ ├── TestCreatedPartialMockObjectSubscriber.php │ │ │ ├── TestCreatedTestProxySubscriber.php │ │ │ ├── TestCreatedTestStubSubscriber.php │ │ │ ├── TestErroredSubscriber.php │ │ │ ├── TestFailedSubscriber.php │ │ │ ├── TestFinishedSubscriber.php │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ ├── TestPassedSubscriber.php │ │ │ ├── TestPreparedSubscriber.php │ │ │ └── TestSkippedSubscriber.php │ │ │ ├── TestResult.php │ │ │ ├── TestResultCollection.php │ │ │ ├── TestResultCollectionIterator.php │ │ │ └── TestResultCollector.php │ │ ├── Metadata │ │ ├── After.php │ │ ├── AfterClass.php │ │ ├── Api │ │ │ ├── CodeCoverage.php │ │ │ ├── DataProvider.php │ │ │ ├── Dependencies.php │ │ │ ├── Groups.php │ │ │ ├── HookMethods.php │ │ │ └── Requirements.php │ │ ├── BackupGlobals.php │ │ ├── BackupStaticProperties.php │ │ ├── Before.php │ │ ├── BeforeClass.php │ │ ├── Covers.php │ │ ├── CoversClass.php │ │ ├── CoversDefaultClass.php │ │ ├── CoversFunction.php │ │ ├── CoversNothing.php │ │ ├── DataProvider.php │ │ ├── DependsOnClass.php │ │ ├── DependsOnMethod.php │ │ ├── DoesNotPerformAssertions.php │ │ ├── Exception │ │ │ ├── AnnotationsAreNotSupportedForInternalClassesException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidVersionRequirementException.php │ │ │ ├── NoVersionRequirementException.php │ │ │ └── ReflectionException.php │ │ ├── ExcludeGlobalVariableFromBackup.php │ │ ├── ExcludeStaticPropertyFromBackup.php │ │ ├── Group.php │ │ ├── IgnoreClassForCodeCoverage.php │ │ ├── IgnoreFunctionForCodeCoverage.php │ │ ├── IgnoreMethodForCodeCoverage.php │ │ ├── Metadata.php │ │ ├── MetadataCollection.php │ │ ├── MetadataCollectionIterator.php │ │ ├── Parser │ │ │ ├── Annotation │ │ │ │ ├── DocBlock.php │ │ │ │ └── Registry.php │ │ │ ├── AnnotationParser.php │ │ │ ├── AttributeParser.php │ │ │ ├── CachingParser.php │ │ │ ├── Parser.php │ │ │ ├── ParserChain.php │ │ │ └── Registry.php │ │ ├── PostCondition.php │ │ ├── PreCondition.php │ │ ├── PreserveGlobalState.php │ │ ├── RequiresFunction.php │ │ ├── RequiresMethod.php │ │ ├── RequiresOperatingSystem.php │ │ ├── RequiresOperatingSystemFamily.php │ │ ├── RequiresPhp.php │ │ ├── RequiresPhpExtension.php │ │ ├── RequiresPhpunit.php │ │ ├── RequiresSetting.php │ │ ├── RunClassInSeparateProcess.php │ │ ├── RunInSeparateProcess.php │ │ ├── RunTestsInSeparateProcesses.php │ │ ├── Test.php │ │ ├── TestDox.php │ │ ├── TestWith.php │ │ ├── Uses.php │ │ ├── UsesClass.php │ │ ├── UsesDefaultClass.php │ │ ├── UsesFunction.php │ │ ├── Version │ │ │ ├── ComparisonRequirement.php │ │ │ ├── ConstraintRequirement.php │ │ │ └── Requirement.php │ │ └── WithoutErrorHandler.php │ │ ├── Runner │ │ ├── Baseline │ │ │ ├── Baseline.php │ │ │ ├── Exception │ │ │ │ ├── CannotLoadBaselineException.php │ │ │ │ └── FileDoesNotHaveLineException.php │ │ │ ├── Generator.php │ │ │ ├── Issue.php │ │ │ ├── Reader.php │ │ │ ├── RelativePathCalculator.php │ │ │ ├── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ └── Writer.php │ │ ├── CodeCoverage.php │ │ ├── ErrorHandler.php │ │ ├── Exception │ │ │ ├── ClassCannotBeFoundException.php │ │ │ ├── ClassDoesNotExtendTestCaseException.php │ │ │ ├── ClassIsAbstractException.php │ │ │ ├── DirectoryCannotBeCreatedException.php │ │ │ ├── Exception.php │ │ │ ├── FileDoesNotExistException.php │ │ │ ├── InvalidOrderException.php │ │ │ ├── InvalidPhptFileException.php │ │ │ ├── NoIgnoredEventException.php │ │ │ ├── ParameterDoesNotExistException.php │ │ │ ├── PhptExternalFileCannotBeLoadedException.php │ │ │ ├── ReflectionException.php │ │ │ └── UnsupportedPhptSectionException.php │ │ ├── Extension │ │ │ ├── Extension.php │ │ │ ├── ExtensionBootstrapper.php │ │ │ ├── Facade.php │ │ │ ├── ParameterCollection.php │ │ │ └── PharLoader.php │ │ ├── Filter │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ ├── Factory.php │ │ │ ├── GroupFilterIterator.php │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ ├── NameFilterIterator.php │ │ │ └── TestIdFilterIterator.php │ │ ├── GarbageCollection │ │ │ ├── GarbageCollectionHandler.php │ │ │ └── Subscriber │ │ │ │ ├── ExecutionFinishedSubscriber.php │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ ├── Subscriber.php │ │ │ │ └── TestFinishedSubscriber.php │ │ ├── PhptTestCase.php │ │ ├── ResultCache │ │ │ ├── DefaultResultCache.php │ │ │ ├── NullResultCache.php │ │ │ ├── ResultCache.php │ │ │ ├── ResultCacheHandler.php │ │ │ └── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ ├── TestResult │ │ │ ├── Collector.php │ │ │ ├── Facade.php │ │ │ ├── Issue.php │ │ │ ├── PassedTests.php │ │ │ ├── Subscriber │ │ │ │ ├── BeforeTestClassMethodErroredSubscriber.php │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestRunnerTriggeredDeprecationSubscriber.php │ │ │ │ ├── TestRunnerTriggeredWarningSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ ├── TestSuiteSkippedSubscriber.php │ │ │ │ ├── TestSuiteStartedSubscriber.php │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredErrorSubscriber.php │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitErrorSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ └── TestResult.php │ │ ├── TestSuiteLoader.php │ │ ├── TestSuiteSorter.php │ │ └── Version.php │ │ ├── TextUI │ │ ├── Application.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── Commands │ │ │ │ ├── AtLeastVersionCommand.php │ │ │ │ ├── GenerateConfigurationCommand.php │ │ │ │ ├── ListGroupsCommand.php │ │ │ │ ├── ListTestSuitesCommand.php │ │ │ │ ├── ListTestsAsTextCommand.php │ │ │ │ ├── ListTestsAsXmlCommand.php │ │ │ │ ├── MigrateConfigurationCommand.php │ │ │ │ ├── ShowHelpCommand.php │ │ │ │ ├── ShowVersionCommand.php │ │ │ │ ├── VersionCheckCommand.php │ │ │ │ └── WarmCodeCoverageCacheCommand.php │ │ │ └── Result.php │ │ ├── Configuration │ │ │ ├── Builder.php │ │ │ ├── Cli │ │ │ │ ├── Builder.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── Exception.php │ │ │ │ └── XmlConfigurationFileFinder.php │ │ │ ├── CodeCoverageFilterRegistry.php │ │ │ ├── Configuration.php │ │ │ ├── Exception │ │ │ │ ├── CannotFindSchemaException.php │ │ │ │ ├── CodeCoverageReportNotConfiguredException.php │ │ │ │ ├── ConfigurationCannotBeBuiltException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── FilterNotConfiguredException.php │ │ │ │ ├── IncludePathNotConfiguredException.php │ │ │ │ ├── LoggingNotConfiguredException.php │ │ │ │ ├── NoBaselineException.php │ │ │ │ ├── NoBootstrapException.php │ │ │ │ ├── NoCacheDirectoryException.php │ │ │ │ ├── NoCliArgumentException.php │ │ │ │ ├── NoConfigurationFileException.php │ │ │ │ ├── NoCoverageCacheDirectoryException.php │ │ │ │ ├── NoCustomCssFileException.php │ │ │ │ ├── NoDefaultTestSuiteException.php │ │ │ │ └── NoPharExtensionDirectoryException.php │ │ │ ├── Merger.php │ │ │ ├── PhpHandler.php │ │ │ ├── Registry.php │ │ │ ├── SourceFilter.php │ │ │ ├── SourceMapper.php │ │ │ ├── TestSuiteBuilder.php │ │ │ ├── Value │ │ │ │ ├── Constant.php │ │ │ │ ├── ConstantCollection.php │ │ │ │ ├── ConstantCollectionIterator.php │ │ │ │ ├── Directory.php │ │ │ │ ├── DirectoryCollection.php │ │ │ │ ├── DirectoryCollectionIterator.php │ │ │ │ ├── ExtensionBootstrap.php │ │ │ │ ├── ExtensionBootstrapCollection.php │ │ │ │ ├── ExtensionBootstrapCollectionIterator.php │ │ │ │ ├── File.php │ │ │ │ ├── FileCollection.php │ │ │ │ ├── FileCollectionIterator.php │ │ │ │ ├── FilterDirectory.php │ │ │ │ ├── FilterDirectoryCollection.php │ │ │ │ ├── FilterDirectoryCollectionIterator.php │ │ │ │ ├── Group.php │ │ │ │ ├── GroupCollection.php │ │ │ │ ├── GroupCollectionIterator.php │ │ │ │ ├── IniSetting.php │ │ │ │ ├── IniSettingCollection.php │ │ │ │ ├── IniSettingCollectionIterator.php │ │ │ │ ├── Php.php │ │ │ │ ├── Source.php │ │ │ │ ├── TestDirectory.php │ │ │ │ ├── TestDirectoryCollection.php │ │ │ │ ├── TestDirectoryCollectionIterator.php │ │ │ │ ├── TestFile.php │ │ │ │ ├── TestFileCollection.php │ │ │ │ ├── TestFileCollectionIterator.php │ │ │ │ ├── TestSuite.php │ │ │ │ ├── TestSuiteCollection.php │ │ │ │ ├── TestSuiteCollectionIterator.php │ │ │ │ ├── Variable.php │ │ │ │ ├── VariableCollection.php │ │ │ │ └── VariableCollectionIterator.php │ │ │ └── Xml │ │ │ │ ├── CodeCoverage │ │ │ │ ├── CodeCoverage.php │ │ │ │ └── Report │ │ │ │ │ ├── Clover.php │ │ │ │ │ ├── Cobertura.php │ │ │ │ │ ├── Crap4j.php │ │ │ │ │ ├── Html.php │ │ │ │ │ ├── Php.php │ │ │ │ │ ├── Text.php │ │ │ │ │ └── Xml.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── DefaultConfiguration.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Groups.php │ │ │ │ ├── LoadedFromFileConfiguration.php │ │ │ │ ├── Loader.php │ │ │ │ ├── Logging │ │ │ │ ├── Junit.php │ │ │ │ ├── Logging.php │ │ │ │ ├── TeamCity.php │ │ │ │ └── TestDox │ │ │ │ │ ├── Html.php │ │ │ │ │ └── Text.php │ │ │ │ ├── Migration │ │ │ │ ├── MigrationBuilder.php │ │ │ │ ├── MigrationBuilderException.php │ │ │ │ ├── MigrationException.php │ │ │ │ ├── Migrations │ │ │ │ │ ├── ConvertLogTypes.php │ │ │ │ │ ├── CoverageCloverToReport.php │ │ │ │ │ ├── CoverageCrap4jToReport.php │ │ │ │ │ ├── CoverageHtmlToReport.php │ │ │ │ │ ├── CoveragePhpToReport.php │ │ │ │ │ ├── CoverageTextToReport.php │ │ │ │ │ ├── CoverageXmlToReport.php │ │ │ │ │ ├── IntroduceCacheDirectoryAttribute.php │ │ │ │ │ ├── IntroduceCoverageElement.php │ │ │ │ │ ├── LogToReportMigration.php │ │ │ │ │ ├── Migration.php │ │ │ │ │ ├── MoveAttributesFromFilterWhitelistToCoverage.php │ │ │ │ │ ├── MoveAttributesFromRootToCoverage.php │ │ │ │ │ ├── MoveCoverageDirectoriesToSource.php │ │ │ │ │ ├── MoveWhitelistExcludesToCoverage.php │ │ │ │ │ ├── MoveWhitelistIncludesToCoverage.php │ │ │ │ │ ├── RemoveBeStrictAboutResourceUsageDuringSmallTestsAttribute.php │ │ │ │ │ ├── RemoveBeStrictAboutTodoAnnotatedTestsAttribute.php │ │ │ │ │ ├── RemoveCacheResultFileAttribute.php │ │ │ │ │ ├── RemoveCacheTokensAttribute.php │ │ │ │ │ ├── RemoveConversionToExceptionsAttributes.php │ │ │ │ │ ├── RemoveCoverageElementCacheDirectoryAttribute.php │ │ │ │ │ ├── RemoveCoverageElementProcessUncoveredFilesAttribute.php │ │ │ │ │ ├── RemoveEmptyFilter.php │ │ │ │ │ ├── RemoveListeners.php │ │ │ │ │ ├── RemoveLogTypes.php │ │ │ │ │ ├── RemoveLoggingElements.php │ │ │ │ │ ├── RemoveNoInteractionAttribute.php │ │ │ │ │ ├── RemovePrinterAttributes.php │ │ │ │ │ ├── RemoveTestDoxGroupsElement.php │ │ │ │ │ ├── RemoveTestSuiteLoaderAttributes.php │ │ │ │ │ ├── RemoveVerboseAttribute.php │ │ │ │ │ ├── RenameBackupStaticAttributesAttribute.php │ │ │ │ │ ├── RenameBeStrictAboutCoversAnnotationAttribute.php │ │ │ │ │ ├── RenameForceCoversAnnotationAttribute.php │ │ │ │ │ └── UpdateSchemaLocation.php │ │ │ │ ├── Migrator.php │ │ │ │ └── SnapshotNodeList.php │ │ │ │ ├── PHPUnit.php │ │ │ │ ├── SchemaDetector │ │ │ │ ├── FailedSchemaDetectionResult.php │ │ │ │ ├── SchemaDetectionResult.php │ │ │ │ ├── SchemaDetector.php │ │ │ │ └── SuccessfulSchemaDetectionResult.php │ │ │ │ ├── SchemaFinder.php │ │ │ │ ├── TestSuiteMapper.php │ │ │ │ └── Validator │ │ │ │ ├── ValidationResult.php │ │ │ │ └── Validator.php │ │ ├── Exception │ │ │ ├── DirectoryDoesNotExistException.php │ │ │ ├── Exception.php │ │ │ ├── ExtensionsNotConfiguredException.php │ │ │ ├── InvalidSocketException.php │ │ │ ├── ReflectionException.php │ │ │ ├── RuntimeException.php │ │ │ ├── TestDirectoryNotFoundException.php │ │ │ └── TestFileNotFoundException.php │ │ ├── Help.php │ │ ├── Output │ │ │ ├── Default │ │ │ │ ├── ProgressPrinter │ │ │ │ │ ├── ProgressPrinter.php │ │ │ │ │ └── Subscriber │ │ │ │ │ │ ├── BeforeTestClassMethodErroredSubscriber.php │ │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ │ ├── TestRunnerExecutionStartedSubscriber.php │ │ │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ │ │ ├── TestTriggeredErrorSubscriber.php │ │ │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ │ ├── ResultPrinter.php │ │ │ │ └── UnexpectedOutputPrinter.php │ │ │ ├── Facade.php │ │ │ ├── Printer │ │ │ │ ├── DefaultPrinter.php │ │ │ │ ├── NullPrinter.php │ │ │ │ └── Printer.php │ │ │ ├── SummaryPrinter.php │ │ │ └── TestDox │ │ │ │ └── ResultPrinter.php │ │ ├── ShellExitCodeCalculator.php │ │ ├── TestRunner.php │ │ └── TestSuiteFilterProcessor.php │ │ └── Util │ │ ├── Cloner.php │ │ ├── Color.php │ │ ├── Exception │ │ ├── Exception.php │ │ ├── InvalidDirectoryException.php │ │ ├── InvalidJsonException.php │ │ ├── InvalidVersionOperatorException.php │ │ ├── PhpProcessException.php │ │ └── XmlException.php │ │ ├── ExcludeList.php │ │ ├── Exporter.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── GlobalState.php │ │ ├── Json.php │ │ ├── PHP │ │ ├── AbstractPhpProcess.php │ │ ├── DefaultPhpProcess.php │ │ ├── Template │ │ │ ├── PhptTestCase.tpl │ │ │ ├── TestCaseClass.tpl │ │ │ └── TestCaseMethod.tpl │ │ └── WindowsPhpProcess.php │ │ ├── Reflection.php │ │ ├── Test.php │ │ ├── ThrowableToStringMapper.php │ │ ├── VersionComparisonOperator.php │ │ └── Xml │ │ ├── Loader.php │ │ └── Xml.php ├── protonemedia │ └── laravel-cross-eloquent-search │ │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ └── run-tests.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── ModelToSearchThrough.php │ │ ├── OrderByRelevanceException.php │ │ ├── Search.php │ │ ├── SearchFactory.php │ │ ├── Searcher.php │ │ └── ServiceProvider.php ├── psr │ ├── cache │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CacheException.php │ │ │ ├── CacheItemInterface.php │ │ │ ├── CacheItemPoolInterface.php │ │ │ └── InvalidArgumentException.php │ ├── clock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── ClockInterface.php │ ├── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── event-dispatcher │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── ListenerProviderInterface.php │ │ │ └── StoppableEventInterface.php │ ├── http-client │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── NetworkExceptionInterface.php │ │ │ └── RequestExceptionInterface.php │ ├── http-factory │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── ResponseFactoryInterface.php │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ ├── StreamFactoryInterface.php │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ └── UriFactoryInterface.php │ ├── http-message │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ ├── PSR7-Interfaces.md │ │ │ └── PSR7-Usage.md │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ ├── log │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ └── NullLogger.php │ └── simple-cache │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php ├── psy │ └── psysh │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ └── psysh │ │ ├── composer.json │ │ └── src │ │ ├── CodeCleaner.php │ │ ├── CodeCleaner │ │ ├── AbstractClassPass.php │ │ ├── AssignThisVariablePass.php │ │ ├── CallTimePassByReferencePass.php │ │ ├── CalledClassPass.php │ │ ├── CodeCleanerPass.php │ │ ├── EmptyArrayDimFetchPass.php │ │ ├── ExitPass.php │ │ ├── FinalClassPass.php │ │ ├── FunctionContextPass.php │ │ ├── FunctionReturnInWriteContextPass.php │ │ ├── ImplicitReturnPass.php │ │ ├── InstanceOfPass.php │ │ ├── IssetPass.php │ │ ├── LabelContextPass.php │ │ ├── LeavePsyshAlonePass.php │ │ ├── ListPass.php │ │ ├── LoopContextPass.php │ │ ├── MagicConstantsPass.php │ │ ├── NamespaceAwarePass.php │ │ ├── NamespacePass.php │ │ ├── NoReturnValue.php │ │ ├── PassableByReferencePass.php │ │ ├── RequirePass.php │ │ ├── ReturnTypePass.php │ │ ├── StrictTypesPass.php │ │ ├── UseStatementPass.php │ │ ├── ValidClassNamePass.php │ │ ├── ValidConstructorPass.php │ │ └── ValidFunctionNamePass.php │ │ ├── Command │ │ ├── BufferCommand.php │ │ ├── ClearCommand.php │ │ ├── CodeArgumentParser.php │ │ ├── Command.php │ │ ├── DocCommand.php │ │ ├── DumpCommand.php │ │ ├── EditCommand.php │ │ ├── ExitCommand.php │ │ ├── HelpCommand.php │ │ ├── HistoryCommand.php │ │ ├── ListCommand.php │ │ ├── ListCommand │ │ │ ├── ClassConstantEnumerator.php │ │ │ ├── ClassEnumerator.php │ │ │ ├── ConstantEnumerator.php │ │ │ ├── Enumerator.php │ │ │ ├── FunctionEnumerator.php │ │ │ ├── GlobalVariableEnumerator.php │ │ │ ├── MethodEnumerator.php │ │ │ ├── PropertyEnumerator.php │ │ │ └── VariableEnumerator.php │ │ ├── ParseCommand.php │ │ ├── PsyVersionCommand.php │ │ ├── ReflectingCommand.php │ │ ├── ShowCommand.php │ │ ├── SudoCommand.php │ │ ├── ThrowUpCommand.php │ │ ├── TimeitCommand.php │ │ ├── TimeitCommand │ │ │ └── TimeitVisitor.php │ │ ├── TraceCommand.php │ │ ├── WhereamiCommand.php │ │ └── WtfCommand.php │ │ ├── ConfigPaths.php │ │ ├── Configuration.php │ │ ├── Context.php │ │ ├── ContextAware.php │ │ ├── EnvInterface.php │ │ ├── Exception │ │ ├── BreakException.php │ │ ├── DeprecatedException.php │ │ ├── ErrorException.php │ │ ├── Exception.php │ │ ├── FatalErrorException.php │ │ ├── ParseErrorException.php │ │ ├── RuntimeException.php │ │ ├── ThrowUpException.php │ │ ├── TypeErrorException.php │ │ └── UnexpectedTargetException.php │ │ ├── ExecutionClosure.php │ │ ├── ExecutionLoop │ │ ├── AbstractListener.php │ │ ├── Listener.php │ │ ├── ProcessForker.php │ │ └── RunkitReloader.php │ │ ├── ExecutionLoopClosure.php │ │ ├── Formatter │ │ ├── CodeFormatter.php │ │ ├── DocblockFormatter.php │ │ ├── Formatter.php │ │ ├── ReflectorFormatter.php │ │ ├── SignatureFormatter.php │ │ └── TraceFormatter.php │ │ ├── Input │ │ ├── CodeArgument.php │ │ ├── FilterOptions.php │ │ ├── ShellInput.php │ │ └── SilentInput.php │ │ ├── Output │ │ ├── OutputPager.php │ │ ├── PassthruPager.php │ │ ├── ProcOutputPager.php │ │ ├── ShellOutput.php │ │ └── Theme.php │ │ ├── ParserFactory.php │ │ ├── Readline │ │ ├── GNUReadline.php │ │ ├── Hoa │ │ │ ├── Autocompleter.php │ │ │ ├── AutocompleterAggregate.php │ │ │ ├── AutocompleterPath.php │ │ │ ├── AutocompleterWord.php │ │ │ ├── Console.php │ │ │ ├── ConsoleCursor.php │ │ │ ├── ConsoleException.php │ │ │ ├── ConsoleInput.php │ │ │ ├── ConsoleOutput.php │ │ │ ├── ConsoleProcessus.php │ │ │ ├── ConsoleTput.php │ │ │ ├── ConsoleWindow.php │ │ │ ├── Event.php │ │ │ ├── EventBucket.php │ │ │ ├── EventException.php │ │ │ ├── EventListenable.php │ │ │ ├── EventListener.php │ │ │ ├── EventListens.php │ │ │ ├── EventSource.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionIdle.php │ │ │ ├── File.php │ │ │ ├── FileDirectory.php │ │ │ ├── FileDoesNotExistException.php │ │ │ ├── FileException.php │ │ │ ├── FileFinder.php │ │ │ ├── FileGeneric.php │ │ │ ├── FileLink.php │ │ │ ├── FileLinkRead.php │ │ │ ├── FileLinkReadWrite.php │ │ │ ├── FileRead.php │ │ │ ├── FileReadWrite.php │ │ │ ├── IStream.php │ │ │ ├── IteratorFileSystem.php │ │ │ ├── IteratorRecursiveDirectory.php │ │ │ ├── IteratorSplFileInfo.php │ │ │ ├── Protocol.php │ │ │ ├── ProtocolException.php │ │ │ ├── ProtocolNode.php │ │ │ ├── ProtocolNodeLibrary.php │ │ │ ├── ProtocolWrapper.php │ │ │ ├── Readline.php │ │ │ ├── Stream.php │ │ │ ├── StreamBufferable.php │ │ │ ├── StreamContext.php │ │ │ ├── StreamException.php │ │ │ ├── StreamIn.php │ │ │ ├── StreamLockable.php │ │ │ ├── StreamOut.php │ │ │ ├── StreamPathable.php │ │ │ ├── StreamPointable.php │ │ │ ├── StreamStatable.php │ │ │ ├── StreamTouchable.php │ │ │ ├── Terminfo │ │ │ │ ├── 77 │ │ │ │ │ └── windows-ansi │ │ │ │ └── 78 │ │ │ │ │ ├── xterm │ │ │ │ │ └── xterm-256color │ │ │ ├── Ustring.php │ │ │ └── Xcallable.php │ │ ├── HoaConsole.php │ │ ├── Libedit.php │ │ ├── Readline.php │ │ ├── Transient.php │ │ └── Userland.php │ │ ├── Reflection │ │ ├── ReflectionClassConstant.php │ │ ├── ReflectionConstant.php │ │ ├── ReflectionConstant_.php │ │ ├── ReflectionLanguageConstruct.php │ │ ├── ReflectionLanguageConstructParameter.php │ │ └── ReflectionNamespace.php │ │ ├── Shell.php │ │ ├── Sudo.php │ │ ├── Sudo │ │ └── SudoVisitor.php │ │ ├── SuperglobalsEnv.php │ │ ├── SystemEnv.php │ │ ├── TabCompletion │ │ ├── AutoCompleter.php │ │ └── Matcher │ │ │ ├── AbstractContextAwareMatcher.php │ │ │ ├── AbstractDefaultParametersMatcher.php │ │ │ ├── AbstractMatcher.php │ │ │ ├── ClassAttributesMatcher.php │ │ │ ├── ClassMethodDefaultParametersMatcher.php │ │ │ ├── ClassMethodsMatcher.php │ │ │ ├── ClassNamesMatcher.php │ │ │ ├── CommandsMatcher.php │ │ │ ├── ConstantsMatcher.php │ │ │ ├── FunctionDefaultParametersMatcher.php │ │ │ ├── FunctionsMatcher.php │ │ │ ├── KeywordsMatcher.php │ │ │ ├── MongoClientMatcher.php │ │ │ ├── MongoDatabaseMatcher.php │ │ │ ├── ObjectAttributesMatcher.php │ │ │ ├── ObjectMethodDefaultParametersMatcher.php │ │ │ ├── ObjectMethodsMatcher.php │ │ │ └── VariablesMatcher.php │ │ ├── Util │ │ ├── Docblock.php │ │ ├── Json.php │ │ ├── Mirror.php │ │ └── Str.php │ │ ├── VarDumper │ │ ├── Cloner.php │ │ ├── Dumper.php │ │ ├── Presenter.php │ │ └── PresenterAware.php │ │ ├── VersionUpdater │ │ ├── Checker.php │ │ ├── Downloader.php │ │ ├── Downloader │ │ │ ├── CurlDownloader.php │ │ │ ├── Factory.php │ │ │ └── FileDownloader.php │ │ ├── GitHubChecker.php │ │ ├── Installer.php │ │ ├── IntervalChecker.php │ │ ├── NoopChecker.php │ │ └── SelfUpdate.php │ │ └── functions.php ├── ralouphie │ └── getallheaders │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── getallheaders.php ├── ramsey │ ├── collection │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── conventional-commits.json │ │ └── src │ │ │ ├── AbstractArray.php │ │ │ ├── AbstractCollection.php │ │ │ ├── AbstractSet.php │ │ │ ├── ArrayInterface.php │ │ │ ├── Collection.php │ │ │ ├── CollectionInterface.php │ │ │ ├── DoubleEndedQueue.php │ │ │ ├── DoubleEndedQueueInterface.php │ │ │ ├── Exception │ │ │ ├── CollectionException.php │ │ │ ├── CollectionMismatchException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidPropertyOrMethod.php │ │ │ ├── NoSuchElementException.php │ │ │ ├── OutOfBoundsException.php │ │ │ └── UnsupportedOperationException.php │ │ │ ├── GenericArray.php │ │ │ ├── Map │ │ │ ├── AbstractMap.php │ │ │ ├── AbstractTypedMap.php │ │ │ ├── AssociativeArrayMap.php │ │ │ ├── MapInterface.php │ │ │ ├── NamedParameterMap.php │ │ │ ├── TypedMap.php │ │ │ └── TypedMapInterface.php │ │ │ ├── Queue.php │ │ │ ├── QueueInterface.php │ │ │ ├── Set.php │ │ │ ├── Sort.php │ │ │ └── Tool │ │ │ ├── TypeTrait.php │ │ │ ├── ValueExtractorTrait.php │ │ │ └── ValueToStringTrait.php │ └── uuid │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BinaryUtils.php │ │ ├── Builder │ │ ├── BuilderCollection.php │ │ ├── DefaultUuidBuilder.php │ │ ├── DegradedUuidBuilder.php │ │ ├── FallbackBuilder.php │ │ └── UuidBuilderInterface.php │ │ ├── Codec │ │ ├── CodecInterface.php │ │ ├── GuidStringCodec.php │ │ ├── OrderedTimeCodec.php │ │ ├── StringCodec.php │ │ ├── TimestampFirstCombCodec.php │ │ └── TimestampLastCombCodec.php │ │ ├── Converter │ │ ├── Number │ │ │ ├── BigNumberConverter.php │ │ │ ├── DegradedNumberConverter.php │ │ │ └── GenericNumberConverter.php │ │ ├── NumberConverterInterface.php │ │ ├── Time │ │ │ ├── BigNumberTimeConverter.php │ │ │ ├── DegradedTimeConverter.php │ │ │ ├── GenericTimeConverter.php │ │ │ ├── PhpTimeConverter.php │ │ │ └── UnixTimeConverter.php │ │ └── TimeConverterInterface.php │ │ ├── DegradedUuid.php │ │ ├── DeprecatedUuidInterface.php │ │ ├── DeprecatedUuidMethodsTrait.php │ │ ├── Exception │ │ ├── BuilderNotFoundException.php │ │ ├── DateTimeException.php │ │ ├── DceSecurityException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidBytesException.php │ │ ├── InvalidUuidStringException.php │ │ ├── NameException.php │ │ ├── NodeException.php │ │ ├── RandomSourceException.php │ │ ├── TimeSourceException.php │ │ ├── UnableToBuildUuidException.php │ │ ├── UnsupportedOperationException.php │ │ └── UuidExceptionInterface.php │ │ ├── FeatureSet.php │ │ ├── Fields │ │ ├── FieldsInterface.php │ │ └── SerializableFieldsTrait.php │ │ ├── Generator │ │ ├── CombGenerator.php │ │ ├── DceSecurityGenerator.php │ │ ├── DceSecurityGeneratorInterface.php │ │ ├── DefaultNameGenerator.php │ │ ├── DefaultTimeGenerator.php │ │ ├── NameGeneratorFactory.php │ │ ├── NameGeneratorInterface.php │ │ ├── PeclUuidNameGenerator.php │ │ ├── PeclUuidRandomGenerator.php │ │ ├── PeclUuidTimeGenerator.php │ │ ├── RandomBytesGenerator.php │ │ ├── RandomGeneratorFactory.php │ │ ├── RandomGeneratorInterface.php │ │ ├── RandomLibAdapter.php │ │ ├── TimeGeneratorFactory.php │ │ ├── TimeGeneratorInterface.php │ │ └── UnixTimeGenerator.php │ │ ├── Guid │ │ ├── Fields.php │ │ ├── Guid.php │ │ └── GuidBuilder.php │ │ ├── Lazy │ │ └── LazyUuidFromString.php │ │ ├── Math │ │ ├── BrickMathCalculator.php │ │ ├── CalculatorInterface.php │ │ └── RoundingMode.php │ │ ├── Nonstandard │ │ ├── Fields.php │ │ ├── Uuid.php │ │ ├── UuidBuilder.php │ │ └── UuidV6.php │ │ ├── Provider │ │ ├── Dce │ │ │ └── SystemDceSecurityProvider.php │ │ ├── DceSecurityProviderInterface.php │ │ ├── Node │ │ │ ├── FallbackNodeProvider.php │ │ │ ├── NodeProviderCollection.php │ │ │ ├── RandomNodeProvider.php │ │ │ ├── StaticNodeProvider.php │ │ │ └── SystemNodeProvider.php │ │ ├── NodeProviderInterface.php │ │ ├── Time │ │ │ ├── FixedTimeProvider.php │ │ │ └── SystemTimeProvider.php │ │ └── TimeProviderInterface.php │ │ ├── Rfc4122 │ │ ├── Fields.php │ │ ├── FieldsInterface.php │ │ ├── MaxTrait.php │ │ ├── MaxUuid.php │ │ ├── NilTrait.php │ │ ├── NilUuid.php │ │ ├── TimeTrait.php │ │ ├── UuidBuilder.php │ │ ├── UuidInterface.php │ │ ├── UuidV1.php │ │ ├── UuidV2.php │ │ ├── UuidV3.php │ │ ├── UuidV4.php │ │ ├── UuidV5.php │ │ ├── UuidV6.php │ │ ├── UuidV7.php │ │ ├── UuidV8.php │ │ ├── Validator.php │ │ ├── VariantTrait.php │ │ └── VersionTrait.php │ │ ├── Type │ │ ├── Decimal.php │ │ ├── Hexadecimal.php │ │ ├── Integer.php │ │ ├── NumberInterface.php │ │ ├── Time.php │ │ └── TypeInterface.php │ │ ├── Uuid.php │ │ ├── UuidFactory.php │ │ ├── UuidFactoryInterface.php │ │ ├── UuidInterface.php │ │ ├── Validator │ │ ├── GenericValidator.php │ │ └── ValidatorInterface.php │ │ └── functions.php ├── ryangjchandler │ └── blade-capture-directive │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BladeCaptureDirective.php │ │ └── BladeCaptureDirectiveServiceProvider.php ├── sebastian │ ├── cli-parser │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Parser.php │ │ │ └── exceptions │ │ │ ├── AmbiguousOptionException.php │ │ │ ├── Exception.php │ │ │ ├── OptionDoesNotAllowArgumentException.php │ │ │ ├── RequiredOptionArgumentMissingException.php │ │ │ └── UnknownOptionException.php │ ├── code-unit-reverse-lookup │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── Wizard.php │ ├── code-unit │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClassMethodUnit.php │ │ │ ├── ClassUnit.php │ │ │ ├── CodeUnit.php │ │ │ ├── CodeUnitCollection.php │ │ │ ├── CodeUnitCollectionIterator.php │ │ │ ├── FileUnit.php │ │ │ ├── FunctionUnit.php │ │ │ ├── InterfaceMethodUnit.php │ │ │ ├── InterfaceUnit.php │ │ │ ├── Mapper.php │ │ │ ├── TraitMethodUnit.php │ │ │ ├── TraitUnit.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidCodeUnitException.php │ │ │ ├── NoTraitException.php │ │ │ └── ReflectionException.php │ ├── comparator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ArrayComparator.php │ │ │ ├── Comparator.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── DOMNodeComparator.php │ │ │ ├── DateTimeComparator.php │ │ │ ├── ExceptionComparator.php │ │ │ ├── Factory.php │ │ │ ├── MockObjectComparator.php │ │ │ ├── NumericComparator.php │ │ │ ├── ObjectComparator.php │ │ │ ├── ResourceComparator.php │ │ │ ├── ScalarComparator.php │ │ │ ├── SplObjectStorageComparator.php │ │ │ ├── TypeComparator.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── complexity │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Calculator.php │ │ │ ├── Complexity │ │ │ ├── Complexity.php │ │ │ ├── ComplexityCollection.php │ │ │ └── ComplexityCollectionIterator.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ └── Visitor │ │ │ ├── ComplexityCalculatingVisitor.php │ │ │ └── CyclomaticComplexityCalculatingVisitor.php │ ├── diff │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Chunk.php │ │ │ ├── Diff.php │ │ │ ├── Differ.php │ │ │ ├── Exception │ │ │ ├── ConfigurationException.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ │ ├── Line.php │ │ │ ├── LongestCommonSubsequenceCalculator.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ │ ├── Output │ │ │ ├── AbstractChunkOutputBuilder.php │ │ │ ├── DiffOnlyOutputBuilder.php │ │ │ ├── DiffOutputBuilderInterface.php │ │ │ ├── StrictUnifiedDiffOutputBuilder.php │ │ │ └── UnifiedDiffOutputBuilder.php │ │ │ ├── Parser.php │ │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ ├── environment │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Console.php │ │ │ └── Runtime.php │ ├── exporter │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── Exporter.php │ ├── global-state │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeExporter.php │ │ │ ├── ExcludeList.php │ │ │ ├── Restorer.php │ │ │ ├── Snapshot.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── lines-of-code │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Counter.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── IllogicalValuesException.php │ │ │ ├── NegativeValueException.php │ │ │ └── RuntimeException.php │ │ │ ├── LineCountingVisitor.php │ │ │ └── LinesOfCode.php │ ├── object-enumerator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ └── src │ │ │ └── Enumerator.php │ ├── object-reflector │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── ObjectReflector.php │ ├── recursion-context │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── Context.php │ ├── type │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── infection.json │ │ └── src │ │ │ ├── Parameter.php │ │ │ ├── ReflectionMapper.php │ │ │ ├── TypeName.php │ │ │ ├── exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ └── type │ │ │ ├── CallableType.php │ │ │ ├── FalseType.php │ │ │ ├── GenericObjectType.php │ │ │ ├── IntersectionType.php │ │ │ ├── IterableType.php │ │ │ ├── MixedType.php │ │ │ ├── NeverType.php │ │ │ ├── NullType.php │ │ │ ├── ObjectType.php │ │ │ ├── SimpleType.php │ │ │ ├── StaticType.php │ │ │ ├── TrueType.php │ │ │ ├── Type.php │ │ │ ├── UnionType.php │ │ │ ├── UnknownType.php │ │ │ └── VoidType.php │ └── version │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ └── Version.php ├── spatie │ ├── backtrace │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Arguments │ │ │ ├── ArgumentReducers.php │ │ │ ├── ProvidedArgument.php │ │ │ ├── ReduceArgumentPayloadAction.php │ │ │ ├── ReduceArgumentsAction.php │ │ │ ├── ReducedArgument │ │ │ │ ├── ReducedArgument.php │ │ │ │ ├── ReducedArgumentContract.php │ │ │ │ ├── TruncatedReducedArgument.php │ │ │ │ ├── UnReducedArgument.php │ │ │ │ └── VariadicReducedArgument.php │ │ │ └── Reducers │ │ │ │ ├── ArgumentReducer.php │ │ │ │ ├── ArrayArgumentReducer.php │ │ │ │ ├── BaseTypeArgumentReducer.php │ │ │ │ ├── ClosureArgumentReducer.php │ │ │ │ ├── DateTimeArgumentReducer.php │ │ │ │ ├── DateTimeZoneArgumentReducer.php │ │ │ │ ├── EnumArgumentReducer.php │ │ │ │ ├── MinimalArrayArgumentReducer.php │ │ │ │ ├── SensitiveParameterArrayReducer.php │ │ │ │ ├── StdClassArgumentReducer.php │ │ │ │ ├── StringableArgumentReducer.php │ │ │ │ └── SymphonyRequestArgumentReducer.php │ │ │ ├── Backtrace.php │ │ │ ├── CodeSnippet.php │ │ │ ├── File.php │ │ │ └── Frame.php │ ├── browsershot │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin │ │ │ └── browser.cjs │ │ ├── composer.json │ │ └── src │ │ │ ├── Browsershot.php │ │ │ ├── Exceptions │ │ │ ├── CouldNotTakeBrowsershot.php │ │ │ ├── ElementNotFound.php │ │ │ ├── FileDoesNotExistException.php │ │ │ ├── FileUrlNotAllowed.php │ │ │ ├── HtmlIsNotAllowedToContainFile.php │ │ │ └── UnsuccessfulResponse.php │ │ │ └── Helpers.php │ ├── color │ │ ├── .editorconfig │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ └── workflows │ │ │ │ ├── php-cs-fixer.yml │ │ │ │ ├── run-tests.yml │ │ │ │ └── update-changelog.yml │ │ ├── .php_cs.dist.php │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CIELab.php │ │ │ ├── Cmyk.php │ │ │ ├── Color.php │ │ │ ├── Contrast.php │ │ │ ├── Convert.php │ │ │ ├── Distance.php │ │ │ ├── Exceptions │ │ │ └── InvalidColorValue.php │ │ │ ├── Factory.php │ │ │ ├── Hex.php │ │ │ ├── Hsb.php │ │ │ ├── Hsl.php │ │ │ ├── Hsla.php │ │ │ ├── Rgb.php │ │ │ ├── Rgba.php │ │ │ ├── Validate.php │ │ │ └── Xyz.php │ ├── crawler │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CrawlObservers │ │ │ ├── CrawlObserver.php │ │ │ └── CrawlObserverCollection.php │ │ │ ├── CrawlProfiles │ │ │ ├── CrawlAllUrls.php │ │ │ ├── CrawlInternalUrls.php │ │ │ ├── CrawlProfile.php │ │ │ └── CrawlSubdomains.php │ │ │ ├── CrawlQueues │ │ │ ├── ArrayCrawlQueue.php │ │ │ └── CrawlQueue.php │ │ │ ├── CrawlUrl.php │ │ │ ├── Crawler.php │ │ │ ├── CrawlerRobots.php │ │ │ ├── Exceptions │ │ │ ├── InvalidCrawlRequestHandler.php │ │ │ ├── InvalidUrl.php │ │ │ └── UrlNotFoundByIndex.php │ │ │ ├── Handlers │ │ │ ├── CrawlRequestFailed.php │ │ │ └── CrawlRequestFulfilled.php │ │ │ ├── LinkAdder.php │ │ │ └── ResponseWithCachedBody.php │ ├── db-dumper │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Compressors │ │ │ ├── Bzip2Compressor.php │ │ │ ├── Compressor.php │ │ │ └── GzipCompressor.php │ │ │ ├── Databases │ │ │ ├── MongoDb.php │ │ │ ├── MySql.php │ │ │ ├── PostgreSql.php │ │ │ └── Sqlite.php │ │ │ ├── DbDumper.php │ │ │ ├── DsnParser.php │ │ │ └── Exceptions │ │ │ ├── CannotSetParameter.php │ │ │ ├── CannotStartDump.php │ │ │ ├── DumpFailed.php │ │ │ └── InvalidDatabaseUrl.php │ ├── flare-client-php │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Api.php │ │ │ ├── Concerns │ │ │ ├── HasContext.php │ │ │ └── UsesTime.php │ │ │ ├── Context │ │ │ ├── BaseContextProviderDetector.php │ │ │ ├── ConsoleContextProvider.php │ │ │ ├── ContextProvider.php │ │ │ ├── ContextProviderDetector.php │ │ │ └── RequestContextProvider.php │ │ │ ├── Contracts │ │ │ └── ProvidesFlareContext.php │ │ │ ├── Enums │ │ │ └── MessageLevels.php │ │ │ ├── Flare.php │ │ │ ├── FlareMiddleware │ │ │ ├── AddDocumentationLinks.php │ │ │ ├── AddEnvironmentInformation.php │ │ │ ├── AddGitInformation.php │ │ │ ├── AddGlows.php │ │ │ ├── AddNotifierName.php │ │ │ ├── AddSolutions.php │ │ │ ├── CensorRequestBodyFields.php │ │ │ ├── CensorRequestHeaders.php │ │ │ ├── FlareMiddleware.php │ │ │ └── RemoveRequestIp.php │ │ │ ├── Frame.php │ │ │ ├── Glows │ │ │ ├── Glow.php │ │ │ └── GlowRecorder.php │ │ │ ├── Http │ │ │ ├── Client.php │ │ │ ├── Exceptions │ │ │ │ ├── BadResponse.php │ │ │ │ ├── BadResponseCode.php │ │ │ │ ├── InvalidData.php │ │ │ │ ├── MissingParameter.php │ │ │ │ └── NotFound.php │ │ │ └── Response.php │ │ │ ├── Report.php │ │ │ ├── Solutions │ │ │ └── ReportSolution.php │ │ │ ├── Time │ │ │ ├── SystemTime.php │ │ │ └── Time.php │ │ │ ├── Truncation │ │ │ ├── AbstractTruncationStrategy.php │ │ │ ├── ReportTrimmer.php │ │ │ ├── TrimContextItemsStrategy.php │ │ │ ├── TrimStackFrameArgumentsStrategy.php │ │ │ ├── TrimStringsStrategy.php │ │ │ └── TruncationStrategy.php │ │ │ ├── View.php │ │ │ └── helpers.php │ ├── ignition │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── resources │ │ │ ├── compiled │ │ │ │ ├── .gitignore │ │ │ │ ├── ignition.css │ │ │ │ └── ignition.js │ │ │ └── views │ │ │ │ ├── aiPrompt.php │ │ │ │ └── errorPage.php │ │ └── src │ │ │ ├── Config │ │ │ ├── FileConfigManager.php │ │ │ └── IgnitionConfig.php │ │ │ ├── Contracts │ │ │ ├── BaseSolution.php │ │ │ ├── ConfigManager.php │ │ │ ├── HasSolutionsForThrowable.php │ │ │ ├── ProvidesSolution.php │ │ │ ├── RunnableSolution.php │ │ │ ├── Solution.php │ │ │ └── SolutionProviderRepository.php │ │ │ ├── ErrorPage │ │ │ ├── ErrorPageViewModel.php │ │ │ └── Renderer.php │ │ │ ├── Ignition.php │ │ │ └── Solutions │ │ │ ├── OpenAi │ │ │ ├── DummyCache.php │ │ │ ├── OpenAiPromptViewModel.php │ │ │ ├── OpenAiSolution.php │ │ │ ├── OpenAiSolutionProvider.php │ │ │ └── OpenAiSolutionResponse.php │ │ │ ├── SolutionProviders │ │ │ ├── BadMethodCallSolutionProvider.php │ │ │ ├── MergeConflictSolutionProvider.php │ │ │ ├── SolutionProviderRepository.php │ │ │ └── UndefinedPropertySolutionProvider.php │ │ │ ├── SolutionTransformer.php │ │ │ ├── SuggestCorrectVariableNameSolution.php │ │ │ └── SuggestImportSolution.php │ ├── image-optimizer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── src │ │ │ ├── DummyLogger.php │ │ │ ├── Image.php │ │ │ ├── Optimizer.php │ │ │ ├── OptimizerChain.php │ │ │ ├── OptimizerChainFactory.php │ │ │ └── Optimizers │ │ │ │ ├── Avifenc.php │ │ │ │ ├── BaseOptimizer.php │ │ │ │ ├── Cwebp.php │ │ │ │ ├── Gifsicle.php │ │ │ │ ├── Jpegoptim.php │ │ │ │ ├── Optipng.php │ │ │ │ ├── Pngquant.php │ │ │ │ └── Svgo.php │ │ └── svgo.config.js │ ├── image │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Exceptions │ │ │ ├── CouldNotConvert.php │ │ │ ├── InvalidImageDriver.php │ │ │ ├── InvalidManipulation.php │ │ │ └── InvalidTemporaryDirectory.php │ │ │ ├── GlideConversion.php │ │ │ ├── Image.php │ │ │ ├── ManipulationSequence.php │ │ │ └── Manipulations.php │ ├── invade │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan-extension.neon │ │ └── src │ │ │ ├── Invader.php │ │ │ ├── PHPStan │ │ │ ├── InvadeMethodsReflectionExtension.php │ │ │ ├── InvadePropertiesReflectionExtension.php │ │ │ ├── InvadedMethodReflection.php │ │ │ └── InvadedPropertyReflection.php │ │ │ └── functions.php │ ├── laravel-cookie-consent │ │ ├── .editorconfig │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ └── workflows │ │ │ │ ├── php-cs-fixer.yml │ │ │ │ ├── run-tests.yml │ │ │ │ └── update-changelog.yml │ │ ├── .php-cs-fixer.dist.php │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ │ └── cookie-consent.php │ │ ├── resources │ │ │ ├── lang │ │ │ │ ├── ar │ │ │ │ │ └── texts.php │ │ │ │ ├── bg │ │ │ │ │ └── texts.php │ │ │ │ ├── bn │ │ │ │ │ └── texts.php │ │ │ │ ├── cs │ │ │ │ │ └── texts.php │ │ │ │ ├── da │ │ │ │ │ └── texts.php │ │ │ │ ├── de │ │ │ │ │ └── texts.php │ │ │ │ ├── el │ │ │ │ │ └── texts.php │ │ │ │ ├── en │ │ │ │ │ └── texts.php │ │ │ │ ├── eo │ │ │ │ │ └── texts.php │ │ │ │ ├── es │ │ │ │ │ └── texts.php │ │ │ │ ├── et │ │ │ │ │ └── texts.php │ │ │ │ ├── fr │ │ │ │ │ └── texts.php │ │ │ │ ├── hu │ │ │ │ │ └── texts.php │ │ │ │ ├── id │ │ │ │ │ └── texts.php │ │ │ │ ├── it │ │ │ │ │ └── texts.php │ │ │ │ ├── kr │ │ │ │ │ └── texts.php │ │ │ │ ├── mk │ │ │ │ │ └── texts.php │ │ │ │ ├── nb │ │ │ │ │ └── texts.php │ │ │ │ ├── nl │ │ │ │ │ └── texts.php │ │ │ │ ├── oc │ │ │ │ │ └── texts.php │ │ │ │ ├── pl │ │ │ │ │ └── texts.php │ │ │ │ ├── pt │ │ │ │ │ └── texts.php │ │ │ │ ├── pt_BR │ │ │ │ │ └── texts.php │ │ │ │ ├── ro │ │ │ │ │ └── texts.php │ │ │ │ ├── ru │ │ │ │ │ └── texts.php │ │ │ │ ├── sk │ │ │ │ │ └── texts.php │ │ │ │ ├── sv │ │ │ │ │ └── texts.php │ │ │ │ ├── th │ │ │ │ │ └── texts.php │ │ │ │ ├── tr │ │ │ │ │ └── texts.php │ │ │ │ └── vi │ │ │ │ │ └── texts.php │ │ │ └── views │ │ │ │ ├── dialogContents.blade.php │ │ │ │ └── index.blade.php │ │ └── src │ │ │ ├── CookieConsentMiddleware.php │ │ │ └── CookieConsentServiceProvider.php │ ├── laravel-db-snapshots │ │ ├── .php_cs.dist.php │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ │ └── db-snapshots.php │ │ └── src │ │ │ ├── Commands │ │ │ ├── Cleanup.php │ │ │ ├── Concerns │ │ │ │ └── AsksForSnapshotName.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── ListSnapshots.php │ │ │ └── Load.php │ │ │ ├── DbDumperFactory.php │ │ │ ├── DbSnapshotsServiceProvider.php │ │ │ ├── Events │ │ │ ├── CreatedSnapshot.php │ │ │ ├── CreatingSnapshot.php │ │ │ ├── DeletedSnapshot.php │ │ │ ├── DeletingSnapshot.php │ │ │ ├── LoadedSnapshot.php │ │ │ └── LoadingSnapshot.php │ │ │ ├── Exceptions │ │ │ ├── CannotCreateDbDumper.php │ │ │ └── CannotCreateDisk.php │ │ │ ├── Helpers │ │ │ └── Format.php │ │ │ ├── Snapshot.php │ │ │ ├── SnapshotFactory.php │ │ │ └── SnapshotRepository.php │ ├── laravel-ignition │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ │ ├── flare.php │ │ │ └── ignition.php │ │ └── src │ │ │ ├── ArgumentReducers │ │ │ ├── CollectionArgumentReducer.php │ │ │ └── ModelArgumentReducer.php │ │ │ ├── Commands │ │ │ ├── SolutionMakeCommand.php │ │ │ ├── SolutionProviderMakeCommand.php │ │ │ ├── TestCommand.php │ │ │ └── stubs │ │ │ │ ├── runnable-solution.stub │ │ │ │ ├── solution-provider.stub │ │ │ │ └── solution.stub │ │ │ ├── ContextProviders │ │ │ ├── LaravelConsoleContextProvider.php │ │ │ ├── LaravelContextProviderDetector.php │ │ │ ├── LaravelLivewireRequestContextProvider.php │ │ │ └── LaravelRequestContextProvider.php │ │ │ ├── Exceptions │ │ │ ├── CannotExecuteSolutionForNonLocalIp.php │ │ │ ├── InvalidConfig.php │ │ │ ├── ViewException.php │ │ │ └── ViewExceptionWithSolution.php │ │ │ ├── Facades │ │ │ └── Flare.php │ │ │ ├── FlareMiddleware │ │ │ ├── AddDumps.php │ │ │ ├── AddEnvironmentInformation.php │ │ │ ├── AddExceptionInformation.php │ │ │ ├── AddJobs.php │ │ │ ├── AddLogs.php │ │ │ ├── AddNotifierName.php │ │ │ └── AddQueries.php │ │ │ ├── Http │ │ │ ├── Controllers │ │ │ │ ├── ExecuteSolutionController.php │ │ │ │ ├── HealthCheckController.php │ │ │ │ └── UpdateConfigController.php │ │ │ ├── Middleware │ │ │ │ └── RunnableSolutionsEnabled.php │ │ │ └── Requests │ │ │ │ ├── ExecuteSolutionRequest.php │ │ │ │ └── UpdateConfigRequest.php │ │ │ ├── IgnitionServiceProvider.php │ │ │ ├── Recorders │ │ │ ├── DumpRecorder │ │ │ │ ├── Dump.php │ │ │ │ ├── DumpHandler.php │ │ │ │ ├── DumpRecorder.php │ │ │ │ ├── HtmlDumper.php │ │ │ │ └── MultiDumpHandler.php │ │ │ ├── JobRecorder │ │ │ │ └── JobRecorder.php │ │ │ ├── LogRecorder │ │ │ │ ├── LogMessage.php │ │ │ │ └── LogRecorder.php │ │ │ └── QueryRecorder │ │ │ │ ├── Query.php │ │ │ │ └── QueryRecorder.php │ │ │ ├── Renderers │ │ │ ├── ErrorPageRenderer.php │ │ │ └── IgnitionExceptionRenderer.php │ │ │ ├── Solutions │ │ │ ├── GenerateAppKeySolution.php │ │ │ ├── LivewireDiscoverSolution.php │ │ │ ├── MakeViewVariableOptionalSolution.php │ │ │ ├── RunMigrationsSolution.php │ │ │ ├── SolutionProviders │ │ │ │ ├── DefaultDbNameSolutionProvider.php │ │ │ │ ├── GenericLaravelExceptionSolutionProvider.php │ │ │ │ ├── IncorrectValetDbCredentialsSolutionProvider.php │ │ │ │ ├── InvalidRouteActionSolutionProvider.php │ │ │ │ ├── LazyLoadingViolationSolutionProvider.php │ │ │ │ ├── MissingAppKeySolutionProvider.php │ │ │ │ ├── MissingColumnSolutionProvider.php │ │ │ │ ├── MissingImportSolutionProvider.php │ │ │ │ ├── MissingLivewireComponentSolutionProvider.php │ │ │ │ ├── MissingMixManifestSolutionProvider.php │ │ │ │ ├── MissingViteManifestSolutionProvider.php │ │ │ │ ├── OpenAiSolutionProvider.php │ │ │ │ ├── RouteNotDefinedSolutionProvider.php │ │ │ │ ├── RunningLaravelDuskInProductionProvider.php │ │ │ │ ├── SailNetworkSolutionProvider.php │ │ │ │ ├── SolutionProviderRepository.php │ │ │ │ ├── TableNotFoundSolutionProvider.php │ │ │ │ ├── UndefinedLivewireMethodSolutionProvider.php │ │ │ │ ├── UndefinedLivewirePropertySolutionProvider.php │ │ │ │ ├── UndefinedViewVariableSolutionProvider.php │ │ │ │ ├── UnknownValidationSolutionProvider.php │ │ │ │ └── ViewNotFoundSolutionProvider.php │ │ │ ├── SolutionTransformers │ │ │ │ └── LaravelSolutionTransformer.php │ │ │ ├── SuggestCorrectVariableNameSolution.php │ │ │ ├── SuggestImportSolution.php │ │ │ ├── SuggestLivewireMethodNameSolution.php │ │ │ ├── SuggestLivewirePropertyNameSolution.php │ │ │ ├── SuggestUsingCorrectDbNameSolution.php │ │ │ └── UseDefaultValetDbCredentialsSolution.php │ │ │ ├── Support │ │ │ ├── Composer │ │ │ │ ├── Composer.php │ │ │ │ ├── ComposerClassMap.php │ │ │ │ └── FakeComposer.php │ │ │ ├── FlareLogHandler.php │ │ │ ├── LaravelDocumentationLinkFinder.php │ │ │ ├── LaravelVersion.php │ │ │ ├── LivewireComponentParser.php │ │ │ ├── RunnableSolutionsGuard.php │ │ │ ├── SentReports.php │ │ │ └── StringComparator.php │ │ │ ├── Views │ │ │ ├── BladeSourceMapCompiler.php │ │ │ └── ViewExceptionMapper.php │ │ │ ├── helpers.php │ │ │ └── ignition-routes.php │ ├── laravel-medialibrary │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ │ └── media-library.php │ │ ├── database │ │ │ └── migrations │ │ │ │ └── create_media_table.php.stub │ │ ├── resources │ │ │ └── views │ │ │ │ ├── image.blade.php │ │ │ │ ├── placeholderSvg.blade.php │ │ │ │ ├── responsiveImage.blade.php │ │ │ │ └── responsiveImageWithPlaceholder.blade.php │ │ └── src │ │ │ ├── Conversions │ │ │ ├── Actions │ │ │ │ ├── PerformConversionAction.php │ │ │ │ └── PerformManipulationsAction.php │ │ │ ├── Commands │ │ │ │ └── RegenerateCommand.php │ │ │ ├── Conversion.php │ │ │ ├── ConversionCollection.php │ │ │ ├── Events │ │ │ │ ├── ConversionHasBeenCompleted.php │ │ │ │ └── ConversionWillStart.php │ │ │ ├── FileManipulator.php │ │ │ ├── ImageGenerators │ │ │ │ ├── Avif.php │ │ │ │ ├── Image.php │ │ │ │ ├── ImageGenerator.php │ │ │ │ ├── ImageGeneratorFactory.php │ │ │ │ ├── Pdf.php │ │ │ │ ├── Svg.php │ │ │ │ ├── Video.php │ │ │ │ └── Webp.php │ │ │ └── Jobs │ │ │ │ └── PerformConversionsJob.php │ │ │ ├── Downloaders │ │ │ ├── DefaultDownloader.php │ │ │ └── Downloader.php │ │ │ ├── HasMedia.php │ │ │ ├── InteractsWithMedia.php │ │ │ ├── MediaCollections │ │ │ ├── Commands │ │ │ │ ├── CleanCommand.php │ │ │ │ └── ClearCommand.php │ │ │ ├── Contracts │ │ │ │ └── MediaLibraryRequest.php │ │ │ ├── Events │ │ │ │ ├── CollectionHasBeenCleared.php │ │ │ │ └── MediaHasBeenAdded.php │ │ │ ├── Exceptions │ │ │ │ ├── DiskCannotBeAccessed.php │ │ │ │ ├── DiskDoesNotExist.php │ │ │ │ ├── FileCannotBeAdded.php │ │ │ │ ├── FileDoesNotExist.php │ │ │ │ ├── FileIsTooBig.php │ │ │ │ ├── FileUnacceptableForCollection.php │ │ │ │ ├── FunctionalityNotAvailable.php │ │ │ │ ├── InvalidBase64Data.php │ │ │ │ ├── InvalidConversion.php │ │ │ │ ├── InvalidFileRemover.php │ │ │ │ ├── InvalidPathGenerator.php │ │ │ │ ├── InvalidUrl.php │ │ │ │ ├── InvalidUrlGenerator.php │ │ │ │ ├── MediaCannotBeDeleted.php │ │ │ │ ├── MediaCannotBeUpdated.php │ │ │ │ ├── MimeTypeNotAllowed.php │ │ │ │ ├── RequestDoesNotHaveFile.php │ │ │ │ ├── UnknownType.php │ │ │ │ └── UnreachableUrl.php │ │ │ ├── File.php │ │ │ ├── FileAdder.php │ │ │ ├── FileAdderFactory.php │ │ │ ├── Filesystem.php │ │ │ ├── HtmlableMedia.php │ │ │ ├── MediaCollection.php │ │ │ ├── MediaRepository.php │ │ │ └── Models │ │ │ │ ├── Collections │ │ │ │ └── MediaCollection.php │ │ │ │ ├── Concerns │ │ │ │ ├── CustomMediaProperties.php │ │ │ │ ├── HasUuid.php │ │ │ │ └── IsSorted.php │ │ │ │ ├── Media.php │ │ │ │ └── Observers │ │ │ │ └── MediaObserver.php │ │ │ ├── MediaLibraryServiceProvider.php │ │ │ ├── ResponsiveImages │ │ │ ├── Events │ │ │ │ └── ResponsiveImagesGenerated.php │ │ │ ├── Exceptions │ │ │ │ └── InvalidTinyJpg.php │ │ │ ├── Jobs │ │ │ │ └── GenerateResponsiveImagesJob.php │ │ │ ├── RegisteredResponsiveImages.php │ │ │ ├── ResponsiveImage.php │ │ │ ├── ResponsiveImageGenerator.php │ │ │ ├── TinyPlaceholderGenerator │ │ │ │ ├── Blurred.php │ │ │ │ └── TinyPlaceholderGenerator.php │ │ │ └── WidthCalculator │ │ │ │ ├── FileSizeOptimizedWidthCalculator.php │ │ │ │ └── WidthCalculator.php │ │ │ └── Support │ │ │ ├── Factories │ │ │ └── TemporaryUploadFactory.php │ │ │ ├── File.php │ │ │ ├── FileNamer │ │ │ ├── DefaultFileNamer.php │ │ │ └── FileNamer.php │ │ │ ├── FileRemover │ │ │ ├── DefaultFileRemover.php │ │ │ ├── FileBaseFileRemover.php │ │ │ ├── FileRemover.php │ │ │ └── FileRemoverFactory.php │ │ │ ├── ImageFactory.php │ │ │ ├── MediaLibraryPro.php │ │ │ ├── MediaStream.php │ │ │ ├── PathGenerator │ │ │ ├── DefaultPathGenerator.php │ │ │ ├── PathGenerator.php │ │ │ └── PathGeneratorFactory.php │ │ │ ├── RemoteFile.php │ │ │ ├── TemporaryDirectory.php │ │ │ └── UrlGenerator │ │ │ ├── BaseUrlGenerator.php │ │ │ ├── DefaultUrlGenerator.php │ │ │ ├── UrlGenerator.php │ │ │ └── UrlGeneratorFactory.php │ ├── laravel-package-tools │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Commands │ │ │ └── InstallCommand.php │ │ │ ├── Exceptions │ │ │ └── InvalidPackage.php │ │ │ ├── Package.php │ │ │ └── PackageServiceProvider.php │ ├── laravel-permission │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ │ └── permission.php │ │ ├── database │ │ │ └── migrations │ │ │ │ ├── add_teams_fields.php.stub │ │ │ │ └── create_permission_tables.php.stub │ │ ├── ide.json │ │ └── src │ │ │ ├── Commands │ │ │ ├── CacheReset.php │ │ │ ├── CreatePermission.php │ │ │ ├── CreateRole.php │ │ │ ├── Show.php │ │ │ └── UpgradeForTeams.php │ │ │ ├── Contracts │ │ │ ├── Permission.php │ │ │ ├── Role.php │ │ │ └── Wildcard.php │ │ │ ├── Exceptions │ │ │ ├── GuardDoesNotMatch.php │ │ │ ├── PermissionAlreadyExists.php │ │ │ ├── PermissionDoesNotExist.php │ │ │ ├── RoleAlreadyExists.php │ │ │ ├── RoleDoesNotExist.php │ │ │ ├── UnauthorizedException.php │ │ │ ├── WildcardPermissionInvalidArgument.php │ │ │ ├── WildcardPermissionNotImplementsContract.php │ │ │ └── WildcardPermissionNotProperlyFormatted.php │ │ │ ├── Guard.php │ │ │ ├── Middlewares │ │ │ ├── PermissionMiddleware.php │ │ │ ├── RoleMiddleware.php │ │ │ └── RoleOrPermissionMiddleware.php │ │ │ ├── Models │ │ │ ├── Permission.php │ │ │ └── Role.php │ │ │ ├── PermissionRegistrar.php │ │ │ ├── PermissionServiceProvider.php │ │ │ ├── Traits │ │ │ ├── HasPermissions.php │ │ │ ├── HasRoles.php │ │ │ └── RefreshesPermissionCache.php │ │ │ ├── WildcardPermission.php │ │ │ └── helpers.php │ ├── laravel-settings │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ ├── config │ │ │ └── settings.php │ │ ├── database │ │ │ └── migrations │ │ │ │ └── create_settings_table.php.stub │ │ └── src │ │ │ ├── Console │ │ │ ├── CacheDiscoveredSettingsCommand.php │ │ │ ├── ClearCachedSettingsCommand.php │ │ │ ├── ClearDiscoveredSettingsCacheCommand.php │ │ │ ├── MakeSettingCommand.php │ │ │ └── MakeSettingsMigrationCommand.php │ │ │ ├── Events │ │ │ ├── LoadingSettings.php │ │ │ ├── SavingSettings.php │ │ │ ├── SettingsLoaded.php │ │ │ └── SettingsSaved.php │ │ │ ├── Exceptions │ │ │ ├── CouldNotResolveDocblockType.php │ │ │ ├── CouldNotUnserializeSettings.php │ │ │ ├── InvalidSettingName.php │ │ │ ├── MissingSettings.php │ │ │ ├── SettingAlreadyExists.php │ │ │ ├── SettingDoesNotExist.php │ │ │ └── SettingsCacheDisabled.php │ │ │ ├── Factories │ │ │ ├── SettingsCastFactory.php │ │ │ └── SettingsRepositoryFactory.php │ │ │ ├── LaravelSettingsServiceProvider.php │ │ │ ├── Migrations │ │ │ ├── SettingsBlueprint.php │ │ │ ├── SettingsMigration.php │ │ │ └── SettingsMigrator.php │ │ │ ├── Models │ │ │ └── SettingsProperty.php │ │ │ ├── Settings.php │ │ │ ├── SettingsCache.php │ │ │ ├── SettingsCasts │ │ │ ├── ArraySettingsCast.php │ │ │ ├── CollectionCast.php │ │ │ ├── DataCast.php │ │ │ ├── DateTimeInterfaceCast.php │ │ │ ├── DateTimeZoneCast.php │ │ │ ├── DtoCast.php │ │ │ ├── EnumCast.php │ │ │ └── SettingsCast.php │ │ │ ├── SettingsConfig.php │ │ │ ├── SettingsContainer.php │ │ │ ├── SettingsEventSubscriber.php │ │ │ ├── SettingsMapper.php │ │ │ ├── SettingsRepositories │ │ │ ├── DatabaseSettingsRepository.php │ │ │ ├── RedisSettingsRepository.php │ │ │ └── SettingsRepository.php │ │ │ └── Support │ │ │ ├── Composer.php │ │ │ ├── Crypto.php │ │ │ ├── DiscoverSettings.php │ │ │ ├── PropertyReflector.php │ │ │ └── SettingsCacheFactory.php │ ├── laravel-sitemap │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ │ └── sitemap.php │ │ ├── resources │ │ │ └── views │ │ │ │ ├── image.blade.php │ │ │ │ ├── news.blade.php │ │ │ │ ├── sitemap.blade.php │ │ │ │ ├── sitemapIndex │ │ │ │ ├── index.blade.php │ │ │ │ └── sitemap.blade.php │ │ │ │ ├── url.blade.php │ │ │ │ └── video.blade.php │ │ └── src │ │ │ ├── Contracts │ │ │ └── Sitemapable.php │ │ │ ├── Crawler │ │ │ ├── Observer.php │ │ │ └── Profile.php │ │ │ ├── Sitemap.php │ │ │ ├── SitemapGenerator.php │ │ │ ├── SitemapIndex.php │ │ │ ├── SitemapServiceProvider.php │ │ │ └── Tags │ │ │ ├── Alternate.php │ │ │ ├── Image.php │ │ │ ├── News.php │ │ │ ├── Sitemap.php │ │ │ ├── Tag.php │ │ │ ├── Url.php │ │ │ └── Video.php │ ├── robots-txt │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ └── workflows │ │ │ │ ├── php-cs-fixer.yml │ │ │ │ ├── run-tests.yml │ │ │ │ └── update-changelog.yml │ │ ├── .php_cs.cache │ │ ├── .php_cs.dist │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Robots.php │ │ │ ├── RobotsHeaders.php │ │ │ ├── RobotsMeta.php │ │ │ └── RobotsTxt.php │ └── temporary-directory │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Exceptions │ │ ├── InvalidDirectoryName.php │ │ └── PathAlreadyExists.php │ │ └── TemporaryDirectory.php ├── symfony │ ├── console │ │ ├── Application.php │ │ ├── Attribute │ │ │ └── AsCommand.php │ │ ├── CI │ │ │ └── GithubActionReporter.php │ │ ├── Color.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── CompleteCommand.php │ │ │ ├── DumpCompletionCommand.php │ │ │ ├── HelpCommand.php │ │ │ ├── LazyCommand.php │ │ │ ├── ListCommand.php │ │ │ ├── LockableTrait.php │ │ │ └── SignalableCommandInterface.php │ │ ├── CommandLoader │ │ │ ├── CommandLoaderInterface.php │ │ │ ├── ContainerCommandLoader.php │ │ │ └── FactoryCommandLoader.php │ │ ├── Completion │ │ │ ├── CompletionInput.php │ │ │ ├── CompletionSuggestions.php │ │ │ ├── Output │ │ │ │ ├── BashCompletionOutput.php │ │ │ │ ├── CompletionOutputInterface.php │ │ │ │ ├── FishCompletionOutput.php │ │ │ │ └── ZshCompletionOutput.php │ │ │ └── Suggestion.php │ │ ├── ConsoleEvents.php │ │ ├── Cursor.php │ │ ├── DependencyInjection │ │ │ └── AddConsoleCommandPass.php │ │ ├── Descriptor │ │ │ ├── ApplicationDescription.php │ │ │ ├── Descriptor.php │ │ │ ├── DescriptorInterface.php │ │ │ ├── JsonDescriptor.php │ │ │ ├── MarkdownDescriptor.php │ │ │ ├── ReStructuredTextDescriptor.php │ │ │ ├── TextDescriptor.php │ │ │ └── XmlDescriptor.php │ │ ├── Event │ │ │ ├── ConsoleCommandEvent.php │ │ │ ├── ConsoleErrorEvent.php │ │ │ ├── ConsoleEvent.php │ │ │ ├── ConsoleSignalEvent.php │ │ │ └── ConsoleTerminateEvent.php │ │ ├── EventListener │ │ │ └── ErrorListener.php │ │ ├── Exception │ │ │ ├── CommandNotFoundException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidOptionException.php │ │ │ ├── LogicException.php │ │ │ ├── MissingInputException.php │ │ │ ├── NamespaceNotFoundException.php │ │ │ └── RuntimeException.php │ │ ├── Formatter │ │ │ ├── NullOutputFormatter.php │ │ │ ├── NullOutputFormatterStyle.php │ │ │ ├── OutputFormatter.php │ │ │ ├── OutputFormatterInterface.php │ │ │ ├── OutputFormatterStyle.php │ │ │ ├── OutputFormatterStyleInterface.php │ │ │ ├── OutputFormatterStyleStack.php │ │ │ └── WrappableOutputFormatterInterface.php │ │ ├── Helper │ │ │ ├── DebugFormatterHelper.php │ │ │ ├── DescriptorHelper.php │ │ │ ├── Dumper.php │ │ │ ├── FormatterHelper.php │ │ │ ├── Helper.php │ │ │ ├── HelperInterface.php │ │ │ ├── HelperSet.php │ │ │ ├── InputAwareHelper.php │ │ │ ├── OutputWrapper.php │ │ │ ├── ProcessHelper.php │ │ │ ├── ProgressBar.php │ │ │ ├── ProgressIndicator.php │ │ │ ├── QuestionHelper.php │ │ │ ├── SymfonyQuestionHelper.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableCellStyle.php │ │ │ ├── TableRows.php │ │ │ ├── TableSeparator.php │ │ │ └── TableStyle.php │ │ ├── Input │ │ │ ├── ArgvInput.php │ │ │ ├── ArrayInput.php │ │ │ ├── Input.php │ │ │ ├── InputArgument.php │ │ │ ├── InputAwareInterface.php │ │ │ ├── InputDefinition.php │ │ │ ├── InputInterface.php │ │ │ ├── InputOption.php │ │ │ ├── StreamableInputInterface.php │ │ │ └── StringInput.php │ │ ├── LICENSE │ │ ├── Logger │ │ │ └── ConsoleLogger.php │ │ ├── Output │ │ │ ├── AnsiColorMode.php │ │ │ ├── BufferedOutput.php │ │ │ ├── ConsoleOutput.php │ │ │ ├── ConsoleOutputInterface.php │ │ │ ├── ConsoleSectionOutput.php │ │ │ ├── NullOutput.php │ │ │ ├── Output.php │ │ │ ├── OutputInterface.php │ │ │ ├── StreamOutput.php │ │ │ └── TrimmedBufferOutput.php │ │ ├── Question │ │ │ ├── ChoiceQuestion.php │ │ │ ├── ConfirmationQuestion.php │ │ │ └── Question.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── hiddeninput.exe │ │ │ ├── completion.bash │ │ │ ├── completion.fish │ │ │ └── completion.zsh │ │ ├── SignalRegistry │ │ │ └── SignalRegistry.php │ │ ├── SingleCommandApplication.php │ │ ├── Style │ │ │ ├── OutputStyle.php │ │ │ ├── StyleInterface.php │ │ │ └── SymfonyStyle.php │ │ ├── Terminal.php │ │ ├── Tester │ │ │ ├── ApplicationTester.php │ │ │ ├── CommandCompletionTester.php │ │ │ ├── CommandTester.php │ │ │ ├── Constraint │ │ │ │ └── CommandIsSuccessful.php │ │ │ └── TesterTrait.php │ │ └── composer.json │ ├── css-selector │ │ ├── CssSelectorConverter.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── ExpressionErrorException.php │ │ │ ├── InternalErrorException.php │ │ │ ├── ParseException.php │ │ │ └── SyntaxErrorException.php │ │ ├── LICENSE │ │ ├── Node │ │ │ ├── AbstractNode.php │ │ │ ├── AttributeNode.php │ │ │ ├── ClassNode.php │ │ │ ├── CombinedSelectorNode.php │ │ │ ├── ElementNode.php │ │ │ ├── FunctionNode.php │ │ │ ├── HashNode.php │ │ │ ├── NegationNode.php │ │ │ ├── NodeInterface.php │ │ │ ├── PseudoNode.php │ │ │ ├── SelectorNode.php │ │ │ └── Specificity.php │ │ ├── Parser │ │ │ ├── Handler │ │ │ │ ├── CommentHandler.php │ │ │ │ ├── HandlerInterface.php │ │ │ │ ├── HashHandler.php │ │ │ │ ├── IdentifierHandler.php │ │ │ │ ├── NumberHandler.php │ │ │ │ ├── StringHandler.php │ │ │ │ └── WhitespaceHandler.php │ │ │ ├── Parser.php │ │ │ ├── ParserInterface.php │ │ │ ├── Reader.php │ │ │ ├── Shortcut │ │ │ │ ├── ClassParser.php │ │ │ │ ├── ElementParser.php │ │ │ │ ├── EmptyStringParser.php │ │ │ │ └── HashParser.php │ │ │ ├── Token.php │ │ │ ├── TokenStream.php │ │ │ └── Tokenizer │ │ │ │ ├── Tokenizer.php │ │ │ │ ├── TokenizerEscaping.php │ │ │ │ └── TokenizerPatterns.php │ │ ├── README.md │ │ ├── XPath │ │ │ ├── Extension │ │ │ │ ├── AbstractExtension.php │ │ │ │ ├── AttributeMatchingExtension.php │ │ │ │ ├── CombinationExtension.php │ │ │ │ ├── ExtensionInterface.php │ │ │ │ ├── FunctionExtension.php │ │ │ │ ├── HtmlExtension.php │ │ │ │ ├── NodeExtension.php │ │ │ │ └── PseudoClassExtension.php │ │ │ ├── Translator.php │ │ │ ├── TranslatorInterface.php │ │ │ └── XPathExpr.php │ │ └── composer.json │ ├── deprecation-contracts │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── function.php │ ├── dom-crawler │ │ ├── AbstractUriElement.php │ │ ├── Crawler.php │ │ ├── Field │ │ │ ├── ChoiceFormField.php │ │ │ ├── FileFormField.php │ │ │ ├── FormField.php │ │ │ ├── InputFormField.php │ │ │ └── TextareaFormField.php │ │ ├── Form.php │ │ ├── FormFieldRegistry.php │ │ ├── Image.php │ │ ├── LICENSE │ │ ├── Link.php │ │ ├── README.md │ │ ├── Test │ │ │ └── Constraint │ │ │ │ ├── CrawlerSelectorAttributeValueSame.php │ │ │ │ ├── CrawlerSelectorCount.php │ │ │ │ ├── CrawlerSelectorExists.php │ │ │ │ ├── CrawlerSelectorTextContains.php │ │ │ │ └── CrawlerSelectorTextSame.php │ │ ├── UriResolver.php │ │ └── composer.json │ ├── error-handler │ │ ├── BufferingLogger.php │ │ ├── Debug.php │ │ ├── DebugClassLoader.php │ │ ├── Error │ │ │ ├── ClassNotFoundError.php │ │ │ ├── FatalError.php │ │ │ ├── OutOfMemoryError.php │ │ │ ├── UndefinedFunctionError.php │ │ │ └── UndefinedMethodError.php │ │ ├── ErrorEnhancer │ │ │ ├── ClassNotFoundErrorEnhancer.php │ │ │ ├── ErrorEnhancerInterface.php │ │ │ ├── UndefinedFunctionErrorEnhancer.php │ │ │ └── UndefinedMethodErrorEnhancer.php │ │ ├── ErrorHandler.php │ │ ├── ErrorRenderer │ │ │ ├── CliErrorRenderer.php │ │ │ ├── ErrorRendererInterface.php │ │ │ ├── HtmlErrorRenderer.php │ │ │ └── SerializerErrorRenderer.php │ │ ├── Exception │ │ │ ├── FlattenException.php │ │ │ └── SilencedErrorContext.php │ │ ├── Internal │ │ │ └── TentativeTypes.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── error.css │ │ │ │ │ ├── exception.css │ │ │ │ │ └── exception_full.css │ │ │ │ ├── images │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── favicon.png.base64 │ │ │ │ │ ├── icon-book.svg │ │ │ │ │ ├── icon-copy.svg │ │ │ │ │ ├── icon-minus-square-o.svg │ │ │ │ │ ├── icon-minus-square.svg │ │ │ │ │ ├── icon-plus-square-o.svg │ │ │ │ │ ├── icon-plus-square.svg │ │ │ │ │ ├── icon-support.svg │ │ │ │ │ ├── symfony-ghost.svg.php │ │ │ │ │ └── symfony-logo.svg │ │ │ │ └── js │ │ │ │ │ └── exception.js │ │ │ ├── bin │ │ │ │ ├── extract-tentative-return-types.php │ │ │ │ └── patch-type-declarations │ │ │ └── views │ │ │ │ ├── error.html.php │ │ │ │ ├── exception.html.php │ │ │ │ ├── exception_full.html.php │ │ │ │ ├── logs.html.php │ │ │ │ ├── trace.html.php │ │ │ │ ├── traces.html.php │ │ │ │ └── traces_text.html.php │ │ ├── ThrowableUtils.php │ │ └── composer.json │ ├── event-dispatcher-contracts │ │ ├── Event.php │ │ ├── EventDispatcherInterface.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ ├── event-dispatcher │ │ ├── Attribute │ │ │ └── AsEventListener.php │ │ ├── Debug │ │ │ ├── TraceableEventDispatcher.php │ │ │ └── WrappedListener.php │ │ ├── DependencyInjection │ │ │ ├── AddEventAliasesPass.php │ │ │ └── RegisterListenersPass.php │ │ ├── EventDispatcher.php │ │ ├── EventDispatcherInterface.php │ │ ├── EventSubscriberInterface.php │ │ ├── GenericEvent.php │ │ ├── ImmutableEventDispatcher.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ ├── filesystem │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── IOException.php │ │ │ ├── IOExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ │ ├── Filesystem.php │ │ ├── LICENSE │ │ ├── Path.php │ │ ├── README.md │ │ └── composer.json │ ├── finder │ │ ├── Comparator │ │ │ ├── Comparator.php │ │ │ ├── DateComparator.php │ │ │ └── NumberComparator.php │ │ ├── Exception │ │ │ ├── AccessDeniedException.php │ │ │ └── DirectoryNotFoundException.php │ │ ├── Finder.php │ │ ├── Gitignore.php │ │ ├── Glob.php │ │ ├── Iterator │ │ │ ├── CustomFilterIterator.php │ │ │ ├── DateRangeFilterIterator.php │ │ │ ├── DepthRangeFilterIterator.php │ │ │ ├── ExcludeDirectoryFilterIterator.php │ │ │ ├── FileTypeFilterIterator.php │ │ │ ├── FilecontentFilterIterator.php │ │ │ ├── FilenameFilterIterator.php │ │ │ ├── LazyIterator.php │ │ │ ├── MultiplePcreFilterIterator.php │ │ │ ├── PathFilterIterator.php │ │ │ ├── RecursiveDirectoryIterator.php │ │ │ ├── SizeRangeFilterIterator.php │ │ │ ├── SortableIterator.php │ │ │ └── VcsIgnoredFilterIterator.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SplFileInfo.php │ │ └── composer.json │ ├── html-sanitizer │ │ ├── HtmlSanitizer.php │ │ ├── HtmlSanitizerConfig.php │ │ ├── HtmlSanitizerInterface.php │ │ ├── LICENSE │ │ ├── Parser │ │ │ ├── MastermindsParser.php │ │ │ └── ParserInterface.php │ │ ├── README.md │ │ ├── Reference │ │ │ └── W3CReference.php │ │ ├── TextSanitizer │ │ │ ├── StringSanitizer.php │ │ │ └── UrlSanitizer.php │ │ ├── Visitor │ │ │ ├── AttributeSanitizer │ │ │ │ ├── AttributeSanitizerInterface.php │ │ │ │ └── UrlAttributeSanitizer.php │ │ │ ├── DomVisitor.php │ │ │ ├── Model │ │ │ │ └── Cursor.php │ │ │ └── Node │ │ │ │ ├── BlockedNode.php │ │ │ │ ├── DocumentNode.php │ │ │ │ ├── Node.php │ │ │ │ ├── NodeInterface.php │ │ │ │ └── TextNode.php │ │ └── composer.json │ ├── http-foundation │ │ ├── AcceptHeader.php │ │ ├── AcceptHeaderItem.php │ │ ├── BinaryFileResponse.php │ │ ├── ChainRequestMatcher.php │ │ ├── Cookie.php │ │ ├── Exception │ │ │ ├── BadRequestException.php │ │ │ ├── ConflictingHeadersException.php │ │ │ ├── JsonException.php │ │ │ ├── RequestExceptionInterface.php │ │ │ ├── SessionNotFoundException.php │ │ │ └── SuspiciousOperationException.php │ │ ├── ExpressionRequestMatcher.php │ │ ├── File │ │ │ ├── Exception │ │ │ │ ├── AccessDeniedException.php │ │ │ │ ├── CannotWriteFileException.php │ │ │ │ ├── ExtensionFileException.php │ │ │ │ ├── FileException.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ ├── FormSizeFileException.php │ │ │ │ ├── IniSizeFileException.php │ │ │ │ ├── NoFileException.php │ │ │ │ ├── NoTmpDirFileException.php │ │ │ │ ├── PartialFileException.php │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ └── UploadException.php │ │ │ ├── File.php │ │ │ ├── Stream.php │ │ │ └── UploadedFile.php │ │ ├── FileBag.php │ │ ├── HeaderBag.php │ │ ├── HeaderUtils.php │ │ ├── InputBag.php │ │ ├── IpUtils.php │ │ ├── JsonResponse.php │ │ ├── LICENSE │ │ ├── ParameterBag.php │ │ ├── README.md │ │ ├── RateLimiter │ │ │ ├── AbstractRequestRateLimiter.php │ │ │ ├── PeekableRequestRateLimiterInterface.php │ │ │ └── RequestRateLimiterInterface.php │ │ ├── RedirectResponse.php │ │ ├── Request.php │ │ ├── RequestMatcher.php │ │ ├── RequestMatcher │ │ │ ├── AttributesRequestMatcher.php │ │ │ ├── ExpressionRequestMatcher.php │ │ │ ├── HostRequestMatcher.php │ │ │ ├── IpsRequestMatcher.php │ │ │ ├── IsJsonRequestMatcher.php │ │ │ ├── MethodRequestMatcher.php │ │ │ ├── PathRequestMatcher.php │ │ │ ├── PortRequestMatcher.php │ │ │ └── SchemeRequestMatcher.php │ │ ├── RequestMatcherInterface.php │ │ ├── RequestStack.php │ │ ├── Response.php │ │ ├── ResponseHeaderBag.php │ │ ├── ServerBag.php │ │ ├── Session │ │ │ ├── Attribute │ │ │ │ ├── AttributeBag.php │ │ │ │ └── AttributeBagInterface.php │ │ │ ├── Flash │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ ├── FlashBag.php │ │ │ │ └── FlashBagInterface.php │ │ │ ├── FlashBagAwareSessionInterface.php │ │ │ ├── Session.php │ │ │ ├── SessionBagInterface.php │ │ │ ├── SessionBagProxy.php │ │ │ ├── SessionFactory.php │ │ │ ├── SessionFactoryInterface.php │ │ │ ├── SessionInterface.php │ │ │ ├── SessionUtils.php │ │ │ └── Storage │ │ │ │ ├── Handler │ │ │ │ ├── AbstractSessionHandler.php │ │ │ │ ├── IdentityMarshaller.php │ │ │ │ ├── MarshallingSessionHandler.php │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ ├── MigratingSessionHandler.php │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ ├── NullSessionHandler.php │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ ├── RedisSessionHandler.php │ │ │ │ ├── SessionHandlerFactory.php │ │ │ │ └── StrictSessionHandler.php │ │ │ │ ├── MetadataBag.php │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ ├── MockFileSessionStorageFactory.php │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ ├── NativeSessionStorageFactory.php │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ ├── PhpBridgeSessionStorageFactory.php │ │ │ │ ├── Proxy │ │ │ │ ├── AbstractProxy.php │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ ├── SessionStorageFactoryInterface.php │ │ │ │ └── SessionStorageInterface.php │ │ ├── StreamedJsonResponse.php │ │ ├── StreamedResponse.php │ │ ├── Test │ │ │ └── Constraint │ │ │ │ ├── RequestAttributeValueSame.php │ │ │ │ ├── ResponseCookieValueSame.php │ │ │ │ ├── ResponseFormatSame.php │ │ │ │ ├── ResponseHasCookie.php │ │ │ │ ├── ResponseHasHeader.php │ │ │ │ ├── ResponseHeaderSame.php │ │ │ │ ├── ResponseIsRedirected.php │ │ │ │ ├── ResponseIsSuccessful.php │ │ │ │ ├── ResponseIsUnprocessable.php │ │ │ │ └── ResponseStatusCodeSame.php │ │ ├── UrlHelper.php │ │ └── composer.json │ ├── http-kernel │ │ ├── Attribute │ │ │ ├── AsController.php │ │ │ ├── AsTargetedValueResolver.php │ │ │ ├── Cache.php │ │ │ ├── MapDateTime.php │ │ │ ├── MapQueryParameter.php │ │ │ ├── MapQueryString.php │ │ │ ├── MapRequestPayload.php │ │ │ ├── ValueResolver.php │ │ │ ├── WithHttpStatus.php │ │ │ └── WithLogLevel.php │ │ ├── Bundle │ │ │ ├── AbstractBundle.php │ │ │ ├── Bundle.php │ │ │ ├── BundleExtension.php │ │ │ └── BundleInterface.php │ │ ├── CacheClearer │ │ │ ├── CacheClearerInterface.php │ │ │ ├── ChainCacheClearer.php │ │ │ └── Psr6CacheClearer.php │ │ ├── CacheWarmer │ │ │ ├── CacheWarmer.php │ │ │ ├── CacheWarmerAggregate.php │ │ │ ├── CacheWarmerInterface.php │ │ │ └── WarmableInterface.php │ │ ├── Config │ │ │ └── FileLocator.php │ │ ├── Controller │ │ │ ├── ArgumentResolver.php │ │ │ ├── ArgumentResolver │ │ │ │ ├── BackedEnumValueResolver.php │ │ │ │ ├── DateTimeValueResolver.php │ │ │ │ ├── DefaultValueResolver.php │ │ │ │ ├── NotTaggedControllerValueResolver.php │ │ │ │ ├── QueryParameterValueResolver.php │ │ │ │ ├── RequestAttributeValueResolver.php │ │ │ │ ├── RequestPayloadValueResolver.php │ │ │ │ ├── RequestValueResolver.php │ │ │ │ ├── ServiceValueResolver.php │ │ │ │ ├── SessionValueResolver.php │ │ │ │ ├── TraceableValueResolver.php │ │ │ │ ├── UidValueResolver.php │ │ │ │ └── VariadicValueResolver.php │ │ │ ├── ArgumentResolverInterface.php │ │ │ ├── ArgumentValueResolverInterface.php │ │ │ ├── ContainerControllerResolver.php │ │ │ ├── ControllerReference.php │ │ │ ├── ControllerResolver.php │ │ │ ├── ControllerResolverInterface.php │ │ │ ├── ErrorController.php │ │ │ ├── TraceableArgumentResolver.php │ │ │ ├── TraceableControllerResolver.php │ │ │ └── ValueResolverInterface.php │ │ ├── ControllerMetadata │ │ │ ├── ArgumentMetadata.php │ │ │ ├── ArgumentMetadataFactory.php │ │ │ └── ArgumentMetadataFactoryInterface.php │ │ ├── DataCollector │ │ │ ├── AjaxDataCollector.php │ │ │ ├── ConfigDataCollector.php │ │ │ ├── DataCollector.php │ │ │ ├── DataCollectorInterface.php │ │ │ ├── DumpDataCollector.php │ │ │ ├── EventDataCollector.php │ │ │ ├── ExceptionDataCollector.php │ │ │ ├── LateDataCollectorInterface.php │ │ │ ├── LoggerDataCollector.php │ │ │ ├── MemoryDataCollector.php │ │ │ ├── RequestDataCollector.php │ │ │ ├── RouterDataCollector.php │ │ │ └── TimeDataCollector.php │ │ ├── Debug │ │ │ ├── ErrorHandlerConfigurator.php │ │ │ ├── FileLinkFormatter.php │ │ │ └── TraceableEventDispatcher.php │ │ ├── DependencyInjection │ │ │ ├── AddAnnotatedClassesToCachePass.php │ │ │ ├── ConfigurableExtension.php │ │ │ ├── ControllerArgumentValueResolverPass.php │ │ │ ├── Extension.php │ │ │ ├── FragmentRendererPass.php │ │ │ ├── LazyLoadingFragmentHandler.php │ │ │ ├── LoggerPass.php │ │ │ ├── MergeExtensionConfigurationPass.php │ │ │ ├── RegisterControllerArgumentLocatorsPass.php │ │ │ ├── RegisterLocaleAwareServicesPass.php │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPass.php │ │ │ ├── ResettableServicePass.php │ │ │ └── ServicesResetter.php │ │ ├── Event │ │ │ ├── ControllerArgumentsEvent.php │ │ │ ├── ControllerEvent.php │ │ │ ├── ExceptionEvent.php │ │ │ ├── FinishRequestEvent.php │ │ │ ├── KernelEvent.php │ │ │ ├── RequestEvent.php │ │ │ ├── ResponseEvent.php │ │ │ ├── TerminateEvent.php │ │ │ └── ViewEvent.php │ │ ├── EventListener │ │ │ ├── AbstractSessionListener.php │ │ │ ├── AddRequestFormatsListener.php │ │ │ ├── CacheAttributeListener.php │ │ │ ├── DebugHandlersListener.php │ │ │ ├── DisallowRobotsIndexingListener.php │ │ │ ├── DumpListener.php │ │ │ ├── ErrorListener.php │ │ │ ├── FragmentListener.php │ │ │ ├── LocaleAwareListener.php │ │ │ ├── LocaleListener.php │ │ │ ├── ProfilerListener.php │ │ │ ├── ResponseListener.php │ │ │ ├── RouterListener.php │ │ │ ├── SessionListener.php │ │ │ ├── StreamedResponseListener.php │ │ │ ├── SurrogateListener.php │ │ │ └── ValidateRequestListener.php │ │ ├── Exception │ │ │ ├── AccessDeniedHttpException.php │ │ │ ├── BadRequestHttpException.php │ │ │ ├── ConflictHttpException.php │ │ │ ├── ControllerDoesNotReturnResponseException.php │ │ │ ├── GoneHttpException.php │ │ │ ├── HttpException.php │ │ │ ├── HttpExceptionInterface.php │ │ │ ├── InvalidMetadataException.php │ │ │ ├── LengthRequiredHttpException.php │ │ │ ├── LockedHttpException.php │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ ├── NotAcceptableHttpException.php │ │ │ ├── NotFoundHttpException.php │ │ │ ├── PreconditionFailedHttpException.php │ │ │ ├── PreconditionRequiredHttpException.php │ │ │ ├── ResolverNotFoundException.php │ │ │ ├── ServiceUnavailableHttpException.php │ │ │ ├── TooManyRequestsHttpException.php │ │ │ ├── UnauthorizedHttpException.php │ │ │ ├── UnexpectedSessionUsageException.php │ │ │ ├── UnprocessableEntityHttpException.php │ │ │ └── UnsupportedMediaTypeHttpException.php │ │ ├── Fragment │ │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ │ ├── EsiFragmentRenderer.php │ │ │ ├── FragmentHandler.php │ │ │ ├── FragmentRendererInterface.php │ │ │ ├── FragmentUriGenerator.php │ │ │ ├── FragmentUriGeneratorInterface.php │ │ │ ├── HIncludeFragmentRenderer.php │ │ │ ├── InlineFragmentRenderer.php │ │ │ ├── RoutableFragmentRenderer.php │ │ │ └── SsiFragmentRenderer.php │ │ ├── HttpCache │ │ │ ├── AbstractSurrogate.php │ │ │ ├── Esi.php │ │ │ ├── HttpCache.php │ │ │ ├── ResponseCacheStrategy.php │ │ │ ├── ResponseCacheStrategyInterface.php │ │ │ ├── Ssi.php │ │ │ ├── Store.php │ │ │ ├── StoreInterface.php │ │ │ ├── SubRequestHandler.php │ │ │ └── SurrogateInterface.php │ │ ├── HttpClientKernel.php │ │ ├── HttpKernel.php │ │ ├── HttpKernelBrowser.php │ │ ├── HttpKernelInterface.php │ │ ├── Kernel.php │ │ ├── KernelEvents.php │ │ ├── KernelInterface.php │ │ ├── LICENSE │ │ ├── Log │ │ │ ├── DebugLoggerInterface.php │ │ │ └── Logger.php │ │ ├── Profiler │ │ │ ├── FileProfilerStorage.php │ │ │ ├── Profile.php │ │ │ ├── Profiler.php │ │ │ └── ProfilerStorageInterface.php │ │ ├── README.md │ │ ├── RebootableInterface.php │ │ ├── Resources │ │ │ └── welcome.html.php │ │ ├── TerminableInterface.php │ │ ├── UriSigner.php │ │ └── composer.json │ ├── mailer │ │ ├── Command │ │ │ └── MailerTestCommand.php │ │ ├── DataCollector │ │ │ └── MessageDataCollector.php │ │ ├── DelayedEnvelope.php │ │ ├── Envelope.php │ │ ├── Event │ │ │ ├── FailedMessageEvent.php │ │ │ ├── MessageEvent.php │ │ │ ├── MessageEvents.php │ │ │ └── SentMessageEvent.php │ │ ├── EventListener │ │ │ ├── EnvelopeListener.php │ │ │ ├── MessageListener.php │ │ │ ├── MessageLoggerListener.php │ │ │ └── MessengerTransportListener.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── HttpTransportException.php │ │ │ ├── IncompleteDsnException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── RuntimeException.php │ │ │ ├── TransportException.php │ │ │ ├── TransportExceptionInterface.php │ │ │ └── UnsupportedSchemeException.php │ │ ├── Header │ │ │ ├── MetadataHeader.php │ │ │ └── TagHeader.php │ │ ├── LICENSE │ │ ├── Mailer.php │ │ ├── MailerInterface.php │ │ ├── Messenger │ │ │ ├── MessageHandler.php │ │ │ └── SendEmailMessage.php │ │ ├── README.md │ │ ├── SentMessage.php │ │ ├── Test │ │ │ ├── Constraint │ │ │ │ ├── EmailCount.php │ │ │ │ └── EmailIsQueued.php │ │ │ └── TransportFactoryTestCase.php │ │ ├── Transport.php │ │ ├── Transport │ │ │ ├── AbstractApiTransport.php │ │ │ ├── AbstractHttpTransport.php │ │ │ ├── AbstractTransport.php │ │ │ ├── AbstractTransportFactory.php │ │ │ ├── Dsn.php │ │ │ ├── FailoverTransport.php │ │ │ ├── NativeTransportFactory.php │ │ │ ├── NullTransport.php │ │ │ ├── NullTransportFactory.php │ │ │ ├── RoundRobinTransport.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SendmailTransportFactory.php │ │ │ ├── Smtp │ │ │ │ ├── Auth │ │ │ │ │ ├── AuthenticatorInterface.php │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ ├── EsmtpTransport.php │ │ │ │ ├── EsmtpTransportFactory.php │ │ │ │ ├── SmtpTransport.php │ │ │ │ └── Stream │ │ │ │ │ ├── AbstractStream.php │ │ │ │ │ ├── ProcessStream.php │ │ │ │ │ └── SocketStream.php │ │ │ ├── TransportFactoryInterface.php │ │ │ ├── TransportInterface.php │ │ │ └── Transports.php │ │ └── composer.json │ ├── mime │ │ ├── Address.php │ │ ├── BodyRendererInterface.php │ │ ├── CharacterStream.php │ │ ├── Crypto │ │ │ ├── DkimOptions.php │ │ │ ├── DkimSigner.php │ │ │ ├── SMime.php │ │ │ ├── SMimeEncrypter.php │ │ │ └── SMimeSigner.php │ │ ├── DependencyInjection │ │ │ └── AddMimeTypeGuesserPass.php │ │ ├── DraftEmail.php │ │ ├── Email.php │ │ ├── Encoder │ │ │ ├── AddressEncoderInterface.php │ │ │ ├── Base64ContentEncoder.php │ │ │ ├── Base64Encoder.php │ │ │ ├── Base64MimeHeaderEncoder.php │ │ │ ├── ContentEncoderInterface.php │ │ │ ├── EightBitContentEncoder.php │ │ │ ├── EncoderInterface.php │ │ │ ├── IdnAddressEncoder.php │ │ │ ├── MimeHeaderEncoderInterface.php │ │ │ ├── QpContentEncoder.php │ │ │ ├── QpEncoder.php │ │ │ ├── QpMimeHeaderEncoder.php │ │ │ └── Rfc2231Encoder.php │ │ ├── Exception │ │ │ ├── AddressEncoderException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── RfcComplianceException.php │ │ │ └── RuntimeException.php │ │ ├── FileBinaryMimeTypeGuesser.php │ │ ├── FileinfoMimeTypeGuesser.php │ │ ├── Header │ │ │ ├── AbstractHeader.php │ │ │ ├── DateHeader.php │ │ │ ├── HeaderInterface.php │ │ │ ├── Headers.php │ │ │ ├── IdentificationHeader.php │ │ │ ├── MailboxHeader.php │ │ │ ├── MailboxListHeader.php │ │ │ ├── ParameterizedHeader.php │ │ │ ├── PathHeader.php │ │ │ └── UnstructuredHeader.php │ │ ├── HtmlToTextConverter │ │ │ ├── DefaultHtmlToTextConverter.php │ │ │ ├── HtmlToTextConverterInterface.php │ │ │ └── LeagueHtmlToMarkdownConverter.php │ │ ├── LICENSE │ │ ├── Message.php │ │ ├── MessageConverter.php │ │ ├── MimeTypeGuesserInterface.php │ │ ├── MimeTypes.php │ │ ├── MimeTypesInterface.php │ │ ├── Part │ │ │ ├── AbstractMultipartPart.php │ │ │ ├── AbstractPart.php │ │ │ ├── DataPart.php │ │ │ ├── File.php │ │ │ ├── MessagePart.php │ │ │ ├── Multipart │ │ │ │ ├── AlternativePart.php │ │ │ │ ├── DigestPart.php │ │ │ │ ├── FormDataPart.php │ │ │ │ ├── MixedPart.php │ │ │ │ └── RelatedPart.php │ │ │ ├── SMimePart.php │ │ │ └── TextPart.php │ │ ├── README.md │ │ ├── RawMessage.php │ │ ├── Resources │ │ │ └── bin │ │ │ │ └── update_mime_types.php │ │ ├── Test │ │ │ └── Constraint │ │ │ │ ├── EmailAddressContains.php │ │ │ │ ├── EmailAttachmentCount.php │ │ │ │ ├── EmailHasHeader.php │ │ │ │ ├── EmailHeaderSame.php │ │ │ │ ├── EmailHtmlBodyContains.php │ │ │ │ └── EmailTextBodyContains.php │ │ └── composer.json │ ├── options-resolver │ │ ├── Debug │ │ │ └── OptionsResolverIntrospector.php │ │ ├── Exception │ │ │ ├── AccessException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidOptionsException.php │ │ │ ├── MissingOptionsException.php │ │ │ ├── NoConfigurationException.php │ │ │ ├── NoSuchOptionException.php │ │ │ ├── OptionDefinitionException.php │ │ │ └── UndefinedOptionsException.php │ │ ├── LICENSE │ │ ├── OptionConfigurator.php │ │ ├── Options.php │ │ ├── OptionsResolver.php │ │ ├── README.md │ │ └── composer.json │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-grapheme │ │ ├── Grapheme.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-idn │ │ ├── Idn.php │ │ ├── Info.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── DisallowedRanges.php │ │ │ │ ├── Regex.php │ │ │ │ ├── deviation.php │ │ │ │ ├── disallowed.php │ │ │ │ ├── disallowed_STD3_mapped.php │ │ │ │ ├── disallowed_STD3_valid.php │ │ │ │ ├── ignored.php │ │ │ │ ├── mapped.php │ │ │ │ └── virama.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-normalizer │ │ ├── LICENSE │ │ ├── Normalizer.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── stubs │ │ │ │ └── Normalizer.php │ │ │ └── unidata │ │ │ │ ├── canonicalComposition.php │ │ │ │ ├── canonicalDecomposition.php │ │ │ │ ├── combiningClass.php │ │ │ │ └── compatibilityDecomposition.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── caseFolding.php │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-php72 │ │ ├── LICENSE │ │ ├── Php72.php │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php80 │ │ ├── LICENSE │ │ ├── Php80.php │ │ ├── PhpToken.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── Attribute.php │ │ │ │ ├── PhpToken.php │ │ │ │ ├── Stringable.php │ │ │ │ ├── UnhandledMatchError.php │ │ │ │ └── ValueError.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php81 │ │ ├── LICENSE │ │ ├── Php81.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── CURLStringFile.php │ │ │ │ └── ReturnTypeWillChange.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php83 │ │ ├── LICENSE │ │ ├── Php83.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── DateError.php │ │ │ │ ├── DateException.php │ │ │ │ ├── DateInvalidOperationException.php │ │ │ │ ├── DateInvalidTimeZoneException.php │ │ │ │ ├── DateMalformedIntervalStringException.php │ │ │ │ ├── DateMalformedPeriodStringException.php │ │ │ │ ├── DateMalformedStringException.php │ │ │ │ ├── DateObjectError.php │ │ │ │ ├── DateRangeError.php │ │ │ │ └── Override.php │ │ ├── bootstrap.php │ │ ├── bootstrap81.php │ │ └── composer.json │ ├── polyfill-uuid │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Uuid.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── process │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── ProcessFailedException.php │ │ │ ├── ProcessSignaledException.php │ │ │ ├── ProcessTimedOutException.php │ │ │ └── RuntimeException.php │ │ ├── ExecutableFinder.php │ │ ├── InputStream.php │ │ ├── LICENSE │ │ ├── PhpExecutableFinder.php │ │ ├── PhpProcess.php │ │ ├── Pipes │ │ │ ├── AbstractPipes.php │ │ │ ├── PipesInterface.php │ │ │ ├── UnixPipes.php │ │ │ └── WindowsPipes.php │ │ ├── Process.php │ │ ├── ProcessUtils.php │ │ ├── README.md │ │ └── composer.json │ ├── routing │ │ ├── Alias.php │ │ ├── Annotation │ │ │ └── Route.php │ │ ├── CompiledRoute.php │ │ ├── DependencyInjection │ │ │ └── RoutingResolverPass.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidParameterException.php │ │ │ ├── MethodNotAllowedException.php │ │ │ ├── MissingMandatoryParametersException.php │ │ │ ├── NoConfigurationException.php │ │ │ ├── ResourceNotFoundException.php │ │ │ ├── RouteCircularReferenceException.php │ │ │ ├── RouteNotFoundException.php │ │ │ └── RuntimeException.php │ │ ├── Generator │ │ │ ├── CompiledUrlGenerator.php │ │ │ ├── ConfigurableRequirementsInterface.php │ │ │ ├── Dumper │ │ │ │ ├── CompiledUrlGeneratorDumper.php │ │ │ │ ├── GeneratorDumper.php │ │ │ │ └── GeneratorDumperInterface.php │ │ │ ├── UrlGenerator.php │ │ │ └── UrlGeneratorInterface.php │ │ ├── LICENSE │ │ ├── Loader │ │ │ ├── AnnotationClassLoader.php │ │ │ ├── AnnotationDirectoryLoader.php │ │ │ ├── AnnotationFileLoader.php │ │ │ ├── ClosureLoader.php │ │ │ ├── Configurator │ │ │ │ ├── AliasConfigurator.php │ │ │ │ ├── CollectionConfigurator.php │ │ │ │ ├── ImportConfigurator.php │ │ │ │ ├── RouteConfigurator.php │ │ │ │ ├── RoutingConfigurator.php │ │ │ │ └── Traits │ │ │ │ │ ├── AddTrait.php │ │ │ │ │ ├── HostTrait.php │ │ │ │ │ ├── LocalizedRouteTrait.php │ │ │ │ │ ├── PrefixTrait.php │ │ │ │ │ └── RouteTrait.php │ │ │ ├── ContainerLoader.php │ │ │ ├── DirectoryLoader.php │ │ │ ├── GlobFileLoader.php │ │ │ ├── ObjectLoader.php │ │ │ ├── PhpFileLoader.php │ │ │ ├── Psr4DirectoryLoader.php │ │ │ ├── XmlFileLoader.php │ │ │ ├── YamlFileLoader.php │ │ │ └── schema │ │ │ │ └── routing │ │ │ │ └── routing-1.0.xsd │ │ ├── Matcher │ │ │ ├── CompiledUrlMatcher.php │ │ │ ├── Dumper │ │ │ │ ├── CompiledUrlMatcherDumper.php │ │ │ │ ├── CompiledUrlMatcherTrait.php │ │ │ │ ├── MatcherDumper.php │ │ │ │ ├── MatcherDumperInterface.php │ │ │ │ └── StaticPrefixCollection.php │ │ │ ├── ExpressionLanguageProvider.php │ │ │ ├── RedirectableUrlMatcher.php │ │ │ ├── RedirectableUrlMatcherInterface.php │ │ │ ├── RequestMatcherInterface.php │ │ │ ├── TraceableUrlMatcher.php │ │ │ ├── UrlMatcher.php │ │ │ └── UrlMatcherInterface.php │ │ ├── README.md │ │ ├── RequestContext.php │ │ ├── RequestContextAwareInterface.php │ │ ├── Requirement │ │ │ ├── EnumRequirement.php │ │ │ └── Requirement.php │ │ ├── Route.php │ │ ├── RouteCollection.php │ │ ├── RouteCompiler.php │ │ ├── RouteCompilerInterface.php │ │ ├── Router.php │ │ ├── RouterInterface.php │ │ └── composer.json │ ├── service-contracts │ │ ├── Attribute │ │ │ ├── Required.php │ │ │ └── SubscribedService.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ResetInterface.php │ │ ├── ServiceLocatorTrait.php │ │ ├── ServiceProviderInterface.php │ │ ├── ServiceSubscriberInterface.php │ │ ├── ServiceSubscriberTrait.php │ │ ├── Test │ │ │ ├── ServiceLocatorTest.php │ │ │ └── ServiceLocatorTestCase.php │ │ └── composer.json │ ├── stopwatch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Section.php │ │ ├── Stopwatch.php │ │ ├── StopwatchEvent.php │ │ ├── StopwatchPeriod.php │ │ └── composer.json │ ├── string │ │ ├── AbstractString.php │ │ ├── AbstractUnicodeString.php │ │ ├── ByteString.php │ │ ├── CodePointString.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ │ ├── Inflector │ │ │ ├── EnglishInflector.php │ │ │ ├── FrenchInflector.php │ │ │ └── InflectorInterface.php │ │ ├── LICENSE │ │ ├── LazyString.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── data │ │ │ │ ├── wcswidth_table_wide.php │ │ │ │ └── wcswidth_table_zero.php │ │ │ └── functions.php │ │ ├── Slugger │ │ │ ├── AsciiSlugger.php │ │ │ └── SluggerInterface.php │ │ ├── UnicodeString.php │ │ └── composer.json │ ├── translation-contracts │ │ ├── LICENSE │ │ ├── LocaleAwareInterface.php │ │ ├── README.md │ │ ├── Test │ │ │ └── TranslatorTest.php │ │ ├── TranslatableInterface.php │ │ ├── TranslatorInterface.php │ │ ├── TranslatorTrait.php │ │ └── composer.json │ ├── translation │ │ ├── Catalogue │ │ │ ├── AbstractOperation.php │ │ │ ├── MergeOperation.php │ │ │ ├── OperationInterface.php │ │ │ └── TargetOperation.php │ │ ├── CatalogueMetadataAwareInterface.php │ │ ├── Command │ │ │ ├── TranslationPullCommand.php │ │ │ ├── TranslationPushCommand.php │ │ │ ├── TranslationTrait.php │ │ │ └── XliffLintCommand.php │ │ ├── DataCollector │ │ │ └── TranslationDataCollector.php │ │ ├── DataCollectorTranslator.php │ │ ├── DependencyInjection │ │ │ ├── TranslationDumperPass.php │ │ │ ├── TranslationExtractorPass.php │ │ │ ├── TranslatorPass.php │ │ │ └── TranslatorPathsPass.php │ │ ├── Dumper │ │ │ ├── CsvFileDumper.php │ │ │ ├── DumperInterface.php │ │ │ ├── FileDumper.php │ │ │ ├── IcuResFileDumper.php │ │ │ ├── IniFileDumper.php │ │ │ ├── JsonFileDumper.php │ │ │ ├── MoFileDumper.php │ │ │ ├── PhpFileDumper.php │ │ │ ├── PoFileDumper.php │ │ │ ├── QtFileDumper.php │ │ │ ├── XliffFileDumper.php │ │ │ └── YamlFileDumper.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── IncompleteDsnException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidResourceException.php │ │ │ ├── LogicException.php │ │ │ ├── MissingRequiredOptionException.php │ │ │ ├── NotFoundResourceException.php │ │ │ ├── ProviderException.php │ │ │ ├── ProviderExceptionInterface.php │ │ │ ├── RuntimeException.php │ │ │ └── UnsupportedSchemeException.php │ │ ├── Extractor │ │ │ ├── AbstractFileExtractor.php │ │ │ ├── ChainExtractor.php │ │ │ ├── ExtractorInterface.php │ │ │ ├── PhpAstExtractor.php │ │ │ ├── PhpExtractor.php │ │ │ ├── PhpStringTokenParser.php │ │ │ └── Visitor │ │ │ │ ├── AbstractVisitor.php │ │ │ │ ├── ConstraintVisitor.php │ │ │ │ ├── TransMethodVisitor.php │ │ │ │ └── TranslatableMessageVisitor.php │ │ ├── Formatter │ │ │ ├── IntlFormatter.php │ │ │ ├── IntlFormatterInterface.php │ │ │ ├── MessageFormatter.php │ │ │ └── MessageFormatterInterface.php │ │ ├── IdentityTranslator.php │ │ ├── LICENSE │ │ ├── Loader │ │ │ ├── ArrayLoader.php │ │ │ ├── CsvFileLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── IcuDatFileLoader.php │ │ │ ├── IcuResFileLoader.php │ │ │ ├── IniFileLoader.php │ │ │ ├── JsonFileLoader.php │ │ │ ├── LoaderInterface.php │ │ │ ├── MoFileLoader.php │ │ │ ├── PhpFileLoader.php │ │ │ ├── PoFileLoader.php │ │ │ ├── QtFileLoader.php │ │ │ ├── XliffFileLoader.php │ │ │ └── YamlFileLoader.php │ │ ├── LocaleSwitcher.php │ │ ├── LoggingTranslator.php │ │ ├── MessageCatalogue.php │ │ ├── MessageCatalogueInterface.php │ │ ├── MetadataAwareInterface.php │ │ ├── Provider │ │ │ ├── AbstractProviderFactory.php │ │ │ ├── Dsn.php │ │ │ ├── FilteringProvider.php │ │ │ ├── NullProvider.php │ │ │ ├── NullProviderFactory.php │ │ │ ├── ProviderFactoryInterface.php │ │ │ ├── ProviderInterface.php │ │ │ ├── TranslationProviderCollection.php │ │ │ └── TranslationProviderCollectionFactory.php │ │ ├── PseudoLocalizationTranslator.php │ │ ├── README.md │ │ ├── Reader │ │ │ ├── TranslationReader.php │ │ │ └── TranslationReaderInterface.php │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── translation-status.php │ │ │ ├── data │ │ │ │ └── parents.json │ │ │ ├── functions.php │ │ │ └── schemas │ │ │ │ ├── xliff-core-1.2-transitional.xsd │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ └── xml.xsd │ │ ├── Test │ │ │ ├── ProviderFactoryTestCase.php │ │ │ └── ProviderTestCase.php │ │ ├── TranslatableMessage.php │ │ ├── Translator.php │ │ ├── TranslatorBag.php │ │ ├── TranslatorBagInterface.php │ │ ├── Util │ │ │ ├── ArrayConverter.php │ │ │ └── XliffUtils.php │ │ ├── Writer │ │ │ ├── TranslationWriter.php │ │ │ └── TranslationWriterInterface.php │ │ └── composer.json │ ├── uid │ │ ├── AbstractUid.php │ │ ├── BinaryUtil.php │ │ ├── Command │ │ │ ├── GenerateUlidCommand.php │ │ │ ├── GenerateUuidCommand.php │ │ │ ├── InspectUlidCommand.php │ │ │ └── InspectUuidCommand.php │ │ ├── Factory │ │ │ ├── NameBasedUuidFactory.php │ │ │ ├── RandomBasedUuidFactory.php │ │ │ ├── TimeBasedUuidFactory.php │ │ │ ├── UlidFactory.php │ │ │ └── UuidFactory.php │ │ ├── LICENSE │ │ ├── MaxUlid.php │ │ ├── MaxUuid.php │ │ ├── NilUlid.php │ │ ├── NilUuid.php │ │ ├── README.md │ │ ├── TimeBasedUidInterface.php │ │ ├── Ulid.php │ │ ├── Uuid.php │ │ ├── UuidV1.php │ │ ├── UuidV3.php │ │ ├── UuidV4.php │ │ ├── UuidV5.php │ │ ├── UuidV6.php │ │ ├── UuidV7.php │ │ ├── UuidV8.php │ │ └── composer.json │ ├── var-dumper │ │ ├── Caster │ │ │ ├── AmqpCaster.php │ │ │ ├── ArgsStub.php │ │ │ ├── Caster.php │ │ │ ├── ClassStub.php │ │ │ ├── ConstStub.php │ │ │ ├── CutArrayStub.php │ │ │ ├── CutStub.php │ │ │ ├── DOMCaster.php │ │ │ ├── DateCaster.php │ │ │ ├── DoctrineCaster.php │ │ │ ├── DsCaster.php │ │ │ ├── DsPairStub.php │ │ │ ├── EnumStub.php │ │ │ ├── ExceptionCaster.php │ │ │ ├── FFICaster.php │ │ │ ├── FiberCaster.php │ │ │ ├── FrameStub.php │ │ │ ├── GmpCaster.php │ │ │ ├── ImagineCaster.php │ │ │ ├── ImgStub.php │ │ │ ├── IntlCaster.php │ │ │ ├── LinkStub.php │ │ │ ├── MemcachedCaster.php │ │ │ ├── MysqliCaster.php │ │ │ ├── PdoCaster.php │ │ │ ├── PgSqlCaster.php │ │ │ ├── ProxyManagerCaster.php │ │ │ ├── RdKafkaCaster.php │ │ │ ├── RedisCaster.php │ │ │ ├── ReflectionCaster.php │ │ │ ├── ResourceCaster.php │ │ │ ├── ScalarStub.php │ │ │ ├── SplCaster.php │ │ │ ├── StubCaster.php │ │ │ ├── SymfonyCaster.php │ │ │ ├── TraceStub.php │ │ │ ├── UuidCaster.php │ │ │ ├── XmlReaderCaster.php │ │ │ └── XmlResourceCaster.php │ │ ├── Cloner │ │ │ ├── AbstractCloner.php │ │ │ ├── ClonerInterface.php │ │ │ ├── Cursor.php │ │ │ ├── Data.php │ │ │ ├── DumperInterface.php │ │ │ ├── Stub.php │ │ │ └── VarCloner.php │ │ ├── Command │ │ │ ├── Descriptor │ │ │ │ ├── CliDescriptor.php │ │ │ │ ├── DumpDescriptorInterface.php │ │ │ │ └── HtmlDescriptor.php │ │ │ └── ServerDumpCommand.php │ │ ├── Dumper │ │ │ ├── AbstractDumper.php │ │ │ ├── CliDumper.php │ │ │ ├── ContextProvider │ │ │ │ ├── CliContextProvider.php │ │ │ │ ├── ContextProviderInterface.php │ │ │ │ ├── RequestContextProvider.php │ │ │ │ └── SourceContextProvider.php │ │ │ ├── ContextualizedDumper.php │ │ │ ├── DataDumperInterface.php │ │ │ ├── HtmlDumper.php │ │ │ └── ServerDumper.php │ │ ├── Exception │ │ │ └── ThrowingCasterException.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── var-dump-server │ │ │ ├── css │ │ │ │ └── htmlDescriptor.css │ │ │ ├── functions │ │ │ │ └── dump.php │ │ │ └── js │ │ │ │ └── htmlDescriptor.js │ │ ├── Server │ │ │ ├── Connection.php │ │ │ └── DumpServer.php │ │ ├── Test │ │ │ └── VarDumperTestTrait.php │ │ ├── VarDumper.php │ │ └── composer.json │ └── yaml │ │ ├── Command │ │ └── LintCommand.php │ │ ├── Dumper.php │ │ ├── Escaper.php │ │ ├── Exception │ │ ├── DumpException.php │ │ ├── ExceptionInterface.php │ │ ├── ParseException.php │ │ └── RuntimeException.php │ │ ├── Inline.php │ │ ├── LICENSE │ │ ├── Parser.php │ │ ├── README.md │ │ ├── Resources │ │ └── bin │ │ │ └── yaml-lint │ │ ├── Tag │ │ └── TaggedValue.php │ │ ├── Unescaper.php │ │ ├── Yaml.php │ │ └── composer.json ├── theseer │ └── tokenizer │ │ ├── .php_cs.dist │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ ├── Exception.php │ │ ├── NamespaceUri.php │ │ ├── NamespaceUriException.php │ │ ├── Token.php │ │ ├── TokenCollection.php │ │ ├── TokenCollectionException.php │ │ ├── Tokenizer.php │ │ └── XMLSerializer.php ├── tijsverkoyen │ └── css-to-inline-styles │ │ ├── LICENSE.md │ │ ├── composer.json │ │ └── src │ │ ├── Css │ │ ├── Processor.php │ │ ├── Property │ │ │ ├── Processor.php │ │ │ └── Property.php │ │ └── Rule │ │ │ ├── Processor.php │ │ │ └── Rule.php │ │ └── CssToInlineStyles.php ├── vlucas │ └── phpdotenv │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── Dotenv.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidEncodingException.php │ │ ├── InvalidFileException.php │ │ ├── InvalidPathException.php │ │ └── ValidationException.php │ │ ├── Loader │ │ ├── Loader.php │ │ ├── LoaderInterface.php │ │ └── Resolver.php │ │ ├── Parser │ │ ├── Entry.php │ │ ├── EntryParser.php │ │ ├── Lexer.php │ │ ├── Lines.php │ │ ├── Parser.php │ │ ├── ParserInterface.php │ │ └── Value.php │ │ ├── Repository │ │ ├── Adapter │ │ │ ├── AdapterInterface.php │ │ │ ├── ApacheAdapter.php │ │ │ ├── ArrayAdapter.php │ │ │ ├── EnvConstAdapter.php │ │ │ ├── GuardedWriter.php │ │ │ ├── ImmutableWriter.php │ │ │ ├── MultiReader.php │ │ │ ├── MultiWriter.php │ │ │ ├── PutenvAdapter.php │ │ │ ├── ReaderInterface.php │ │ │ ├── ReplacingWriter.php │ │ │ ├── ServerConstAdapter.php │ │ │ └── WriterInterface.php │ │ ├── AdapterRepository.php │ │ ├── RepositoryBuilder.php │ │ └── RepositoryInterface.php │ │ ├── Store │ │ ├── File │ │ │ ├── Paths.php │ │ │ └── Reader.php │ │ ├── FileStore.php │ │ ├── StoreBuilder.php │ │ ├── StoreInterface.php │ │ └── StringStore.php │ │ ├── Util │ │ ├── Regex.php │ │ └── Str.php │ │ └── Validator.php ├── voku │ └── portable-ascii │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── voku │ │ └── helper │ │ ├── ASCII.php │ │ └── data │ │ ├── ascii_by_languages.php │ │ ├── ascii_extras_by_languages.php │ │ ├── ascii_language_max_key.php │ │ ├── ascii_ord.php │ │ ├── x000.php │ │ ├── x001.php │ │ ├── x002.php │ │ ├── x003.php │ │ ├── x004.php │ │ ├── x005.php │ │ ├── x006.php │ │ ├── x007.php │ │ ├── x009.php │ │ ├── x00a.php │ │ ├── x00b.php │ │ ├── x00c.php │ │ ├── x00d.php │ │ ├── x00e.php │ │ ├── x00f.php │ │ ├── x010.php │ │ ├── x011.php │ │ ├── x012.php │ │ ├── x013.php │ │ ├── x014.php │ │ ├── x015.php │ │ ├── x016.php │ │ ├── x017.php │ │ ├── x018.php │ │ ├── x01d.php │ │ ├── x01e.php │ │ ├── x01f.php │ │ ├── x020.php │ │ ├── x021.php │ │ ├── x022.php │ │ ├── x023.php │ │ ├── x024.php │ │ ├── x025.php │ │ ├── x026.php │ │ ├── x027.php │ │ ├── x028.php │ │ ├── x029.php │ │ ├── x02a.php │ │ ├── x02c.php │ │ ├── x02e.php │ │ ├── x02f.php │ │ ├── x030.php │ │ ├── x031.php │ │ ├── x032.php │ │ ├── x033.php │ │ ├── x04d.php │ │ ├── x04e.php │ │ ├── x04f.php │ │ ├── x050.php │ │ ├── x051.php │ │ ├── x052.php │ │ ├── x053.php │ │ ├── x054.php │ │ ├── x055.php │ │ ├── x056.php │ │ ├── x057.php │ │ ├── x058.php │ │ ├── x059.php │ │ ├── x05a.php │ │ ├── x05b.php │ │ ├── x05c.php │ │ ├── x05d.php │ │ ├── x05e.php │ │ ├── x05f.php │ │ ├── x060.php │ │ ├── x061.php │ │ ├── x062.php │ │ ├── x063.php │ │ ├── x064.php │ │ ├── x065.php │ │ ├── x066.php │ │ ├── x067.php │ │ ├── x068.php │ │ ├── x069.php │ │ ├── x06a.php │ │ ├── x06b.php │ │ ├── x06c.php │ │ ├── x06d.php │ │ ├── x06e.php │ │ ├── x06f.php │ │ ├── x070.php │ │ ├── x071.php │ │ ├── x072.php │ │ ├── x073.php │ │ ├── x074.php │ │ ├── x075.php │ │ ├── x076.php │ │ ├── x077.php │ │ ├── x078.php │ │ ├── x079.php │ │ ├── x07a.php │ │ ├── x07b.php │ │ ├── x07c.php │ │ ├── x07d.php │ │ ├── x07e.php │ │ ├── x07f.php │ │ ├── x080.php │ │ ├── x081.php │ │ ├── x082.php │ │ ├── x083.php │ │ ├── x084.php │ │ ├── x085.php │ │ ├── x086.php │ │ ├── x087.php │ │ ├── x088.php │ │ ├── x089.php │ │ ├── x08a.php │ │ ├── x08b.php │ │ ├── x08c.php │ │ ├── x08d.php │ │ ├── x08e.php │ │ ├── x08f.php │ │ ├── x090.php │ │ ├── x091.php │ │ ├── x092.php │ │ ├── x093.php │ │ ├── x094.php │ │ ├── x095.php │ │ ├── x096.php │ │ ├── x097.php │ │ ├── x098.php │ │ ├── x099.php │ │ ├── x09a.php │ │ ├── x09b.php │ │ ├── x09c.php │ │ ├── x09d.php │ │ ├── x09e.php │ │ ├── x09f.php │ │ ├── x0a0.php │ │ ├── x0a1.php │ │ ├── x0a2.php │ │ ├── x0a3.php │ │ ├── x0a4.php │ │ ├── x0ac.php │ │ ├── x0ad.php │ │ ├── x0ae.php │ │ ├── x0af.php │ │ ├── x0b0.php │ │ ├── x0b1.php │ │ ├── x0b2.php │ │ ├── x0b3.php │ │ ├── x0b4.php │ │ ├── x0b5.php │ │ ├── x0b6.php │ │ ├── x0b7.php │ │ ├── x0b8.php │ │ ├── x0b9.php │ │ ├── x0ba.php │ │ ├── x0bb.php │ │ ├── x0bc.php │ │ ├── x0bd.php │ │ ├── x0be.php │ │ ├── x0bf.php │ │ ├── x0c0.php │ │ ├── x0c1.php │ │ ├── x0c2.php │ │ ├── x0c3.php │ │ ├── x0c4.php │ │ ├── x0c5.php │ │ ├── x0c6.php │ │ ├── x0c7.php │ │ ├── x0c8.php │ │ ├── x0c9.php │ │ ├── x0ca.php │ │ ├── x0cb.php │ │ ├── x0cc.php │ │ ├── x0cd.php │ │ ├── x0ce.php │ │ ├── x0cf.php │ │ ├── x0d0.php │ │ ├── x0d1.php │ │ ├── x0d2.php │ │ ├── x0d3.php │ │ ├── x0d4.php │ │ ├── x0d5.php │ │ ├── x0d6.php │ │ ├── x0d7.php │ │ ├── x0f9.php │ │ ├── x0fa.php │ │ ├── x0fb.php │ │ ├── x0fc.php │ │ ├── x0fd.php │ │ ├── x0fe.php │ │ ├── x0ff.php │ │ ├── x1d4.php │ │ ├── x1d5.php │ │ ├── x1d6.php │ │ ├── x1d7.php │ │ └── x1f1.php ├── webmozart │ └── assert │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Assert.php │ │ ├── InvalidArgumentException.php │ │ └── Mixin.php └── wireui │ └── wireui │ ├── .editorconfig │ ├── .eslintrc │ ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows │ │ └── tests.yml │ ├── .gitignore │ ├── .nvmrc │ ├── .php-cs-fixer.php │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── composer.json │ ├── composer.lock │ ├── dist │ ├── mix-manifest.json │ ├── wireui.css │ ├── wireui.js │ └── wireui.js.LICENSE.txt │ ├── ide.json │ ├── jest.config.js │ ├── js │ └── tailwindcss │ │ └── plugins │ │ ├── appearance-none.js │ │ ├── hideScrollbar.js │ │ └── softScrollbar.js │ ├── package.json │ ├── phpunit.xml │ ├── readme.md │ ├── resources │ ├── css │ │ └── wireui.css │ ├── images │ │ └── features.png │ └── views │ │ └── components │ │ ├── avatar.blade.php │ │ ├── badge.blade.php │ │ ├── button.blade.php │ │ ├── card.blade.php │ │ ├── checkbox.blade.php │ │ ├── circle-badge.blade.php │ │ ├── circle-button.blade.php │ │ ├── color-picker.blade.php │ │ ├── datetime-picker.blade.php │ │ ├── dialog.blade.php │ │ ├── dropdown.blade.php │ │ ├── dropdown │ │ ├── header.blade.php │ │ └── item.blade.php │ │ ├── error.blade.php │ │ ├── errors.blade.php │ │ ├── icon.blade.php │ │ ├── icons │ │ ├── outline │ │ │ ├── academic-cap.blade.php │ │ │ ├── adjustments.blade.php │ │ │ ├── annotation.blade.php │ │ │ ├── archive.blade.php │ │ │ ├── arrow-circle-down.blade.php │ │ │ ├── arrow-circle-left.blade.php │ │ │ ├── arrow-circle-right.blade.php │ │ │ ├── arrow-circle-up.blade.php │ │ │ ├── arrow-down.blade.php │ │ │ ├── arrow-left.blade.php │ │ │ ├── arrow-narrow-down.blade.php │ │ │ ├── arrow-narrow-left.blade.php │ │ │ ├── arrow-narrow-right.blade.php │ │ │ ├── arrow-narrow-up.blade.php │ │ │ ├── arrow-right.blade.php │ │ │ ├── arrow-up.blade.php │ │ │ ├── arrows-expand.blade.php │ │ │ ├── at-symbol.blade.php │ │ │ ├── backspace.blade.php │ │ │ ├── badge-check.blade.php │ │ │ ├── ban.blade.php │ │ │ ├── beaker.blade.php │ │ │ ├── bell.blade.php │ │ │ ├── book-open.blade.php │ │ │ ├── bookmark-alt.blade.php │ │ │ ├── bookmark.blade.php │ │ │ ├── briefcase.blade.php │ │ │ ├── cake.blade.php │ │ │ ├── calculator.blade.php │ │ │ ├── calendar.blade.php │ │ │ ├── camera.blade.php │ │ │ ├── cash.blade.php │ │ │ ├── chart-bar.blade.php │ │ │ ├── chart-pie.blade.php │ │ │ ├── chart-square-bar.blade.php │ │ │ ├── chat-alt-2.blade.php │ │ │ ├── chat-alt.blade.php │ │ │ ├── chat.blade.php │ │ │ ├── check-circle.blade.php │ │ │ ├── check.blade.php │ │ │ ├── chevron-double-down.blade.php │ │ │ ├── chevron-double-left.blade.php │ │ │ ├── chevron-double-right.blade.php │ │ │ ├── chevron-double-up.blade.php │ │ │ ├── chevron-down.blade.php │ │ │ ├── chevron-left.blade.php │ │ │ ├── chevron-right.blade.php │ │ │ ├── chevron-up.blade.php │ │ │ ├── chip.blade.php │ │ │ ├── clipboard-check.blade.php │ │ │ ├── clipboard-copy.blade.php │ │ │ ├── clipboard-list.blade.php │ │ │ ├── clipboard.blade.php │ │ │ ├── clock.blade.php │ │ │ ├── cloud-download.blade.php │ │ │ ├── cloud-upload.blade.php │ │ │ ├── cloud.blade.php │ │ │ ├── code.blade.php │ │ │ ├── cog.blade.php │ │ │ ├── collection.blade.php │ │ │ ├── color-swatch.blade.php │ │ │ ├── credit-card.blade.php │ │ │ ├── cube-transparent.blade.php │ │ │ ├── cube.blade.php │ │ │ ├── currency-bangladeshi.blade.php │ │ │ ├── currency-dollar.blade.php │ │ │ ├── currency-euro.blade.php │ │ │ ├── currency-pound.blade.php │ │ │ ├── currency-rupee.blade.php │ │ │ ├── currency-yen.blade.php │ │ │ ├── cursor-click.blade.php │ │ │ ├── database.blade.php │ │ │ ├── desktop-computer.blade.php │ │ │ ├── device-mobile.blade.php │ │ │ ├── device-tablet.blade.php │ │ │ ├── document-add.blade.php │ │ │ ├── document-download.blade.php │ │ │ ├── document-duplicate.blade.php │ │ │ ├── document-remove.blade.php │ │ │ ├── document-report.blade.php │ │ │ ├── document-search.blade.php │ │ │ ├── document-text.blade.php │ │ │ ├── document.blade.php │ │ │ ├── dots-circle-horizontal.blade.php │ │ │ ├── dots-horizontal.blade.php │ │ │ ├── dots-vertical.blade.php │ │ │ ├── download.blade.php │ │ │ ├── duplicate.blade.php │ │ │ ├── emoji-happy.blade.php │ │ │ ├── emoji-sad.blade.php │ │ │ ├── exclamation-circle.blade.php │ │ │ ├── exclamation.blade.php │ │ │ ├── external-link.blade.php │ │ │ ├── eye-off.blade.php │ │ │ ├── eye.blade.php │ │ │ ├── fast-forward.blade.php │ │ │ ├── film.blade.php │ │ │ ├── filter.blade.php │ │ │ ├── finger-print.blade.php │ │ │ ├── fire.blade.php │ │ │ ├── flag.blade.php │ │ │ ├── folder-add.blade.php │ │ │ ├── folder-download.blade.php │ │ │ ├── folder-open.blade.php │ │ │ ├── folder-remove.blade.php │ │ │ ├── folder.blade.php │ │ │ ├── gift.blade.php │ │ │ ├── globe-alt.blade.php │ │ │ ├── globe.blade.php │ │ │ ├── hand.blade.php │ │ │ ├── hashtag.blade.php │ │ │ ├── heart.blade.php │ │ │ ├── home.blade.php │ │ │ ├── identification.blade.php │ │ │ ├── inbox-in.blade.php │ │ │ ├── inbox.blade.php │ │ │ ├── information-circle.blade.php │ │ │ ├── key.blade.php │ │ │ ├── library.blade.php │ │ │ ├── light-bulb.blade.php │ │ │ ├── lightning-bolt.blade.php │ │ │ ├── link.blade.php │ │ │ ├── location-marker.blade.php │ │ │ ├── lock-closed.blade.php │ │ │ ├── lock-open.blade.php │ │ │ ├── login.blade.php │ │ │ ├── logout.blade.php │ │ │ ├── mail-open.blade.php │ │ │ ├── mail.blade.php │ │ │ ├── map.blade.php │ │ │ ├── menu-alt-1.blade.php │ │ │ ├── menu-alt-2.blade.php │ │ │ ├── menu-alt-3.blade.php │ │ │ ├── menu-alt-4.blade.php │ │ │ ├── menu.blade.php │ │ │ ├── microphone.blade.php │ │ │ ├── minus-circle.blade.php │ │ │ ├── minus-sm.blade.php │ │ │ ├── minus.blade.php │ │ │ ├── moon.blade.php │ │ │ ├── music-note.blade.php │ │ │ ├── newspaper.blade.php │ │ │ ├── office-building.blade.php │ │ │ ├── paper-airplane.blade.php │ │ │ ├── paper-clip.blade.php │ │ │ ├── pause.blade.php │ │ │ ├── pencil-alt.blade.php │ │ │ ├── pencil.blade.php │ │ │ ├── phone-incoming.blade.php │ │ │ ├── phone-missed-call.blade.php │ │ │ ├── phone-outgoing.blade.php │ │ │ ├── phone.blade.php │ │ │ ├── photograph.blade.php │ │ │ ├── play.blade.php │ │ │ ├── plus-circle.blade.php │ │ │ ├── plus-sm.blade.php │ │ │ ├── plus.blade.php │ │ │ ├── presentation-chart-bar.blade.php │ │ │ ├── presentation-chart-line.blade.php │ │ │ ├── printer.blade.php │ │ │ ├── puzzle.blade.php │ │ │ ├── qrcode.blade.php │ │ │ ├── question-mark-circle.blade.php │ │ │ ├── receipt-refund.blade.php │ │ │ ├── receipt-tax.blade.php │ │ │ ├── refresh.blade.php │ │ │ ├── reply.blade.php │ │ │ ├── rewind.blade.php │ │ │ ├── rss.blade.php │ │ │ ├── save-as.blade.php │ │ │ ├── save.blade.php │ │ │ ├── scale.blade.php │ │ │ ├── scissors.blade.php │ │ │ ├── search-circle.blade.php │ │ │ ├── search.blade.php │ │ │ ├── selector.blade.php │ │ │ ├── server.blade.php │ │ │ ├── share.blade.php │ │ │ ├── shield-check.blade.php │ │ │ ├── shield-exclamation.blade.php │ │ │ ├── shopping-bag.blade.php │ │ │ ├── shopping-cart.blade.php │ │ │ ├── sort-ascending.blade.php │ │ │ ├── sort-descending.blade.php │ │ │ ├── sparkles.blade.php │ │ │ ├── speakerphone.blade.php │ │ │ ├── star.blade.php │ │ │ ├── status-offline.blade.php │ │ │ ├── status-online.blade.php │ │ │ ├── stop.blade.php │ │ │ ├── sun.blade.php │ │ │ ├── support.blade.php │ │ │ ├── switch-horizontal.blade.php │ │ │ ├── switch-vertical.blade.php │ │ │ ├── table.blade.php │ │ │ ├── tag.blade.php │ │ │ ├── template.blade.php │ │ │ ├── terminal.blade.php │ │ │ ├── thumb-down.blade.php │ │ │ ├── thumb-up.blade.php │ │ │ ├── ticket.blade.php │ │ │ ├── translate.blade.php │ │ │ ├── trash.blade.php │ │ │ ├── trending-down.blade.php │ │ │ ├── trending-up.blade.php │ │ │ ├── truck.blade.php │ │ │ ├── upload.blade.php │ │ │ ├── user-add.blade.php │ │ │ ├── user-circle.blade.php │ │ │ ├── user-group.blade.php │ │ │ ├── user-remove.blade.php │ │ │ ├── user.blade.php │ │ │ ├── users.blade.php │ │ │ ├── variable.blade.php │ │ │ ├── video-camera.blade.php │ │ │ ├── view-boards.blade.php │ │ │ ├── view-grid-add.blade.php │ │ │ ├── view-grid.blade.php │ │ │ ├── view-list.blade.php │ │ │ ├── volume-off.blade.php │ │ │ ├── volume-up.blade.php │ │ │ ├── wifi.blade.php │ │ │ ├── x-circle.blade.php │ │ │ ├── x.blade.php │ │ │ ├── zoom-in.blade.php │ │ │ └── zoom-out.blade.php │ │ ├── solid │ │ │ ├── academic-cap.blade.php │ │ │ ├── adjustments.blade.php │ │ │ ├── annotation.blade.php │ │ │ ├── archive.blade.php │ │ │ ├── arrow-circle-down.blade.php │ │ │ ├── arrow-circle-left.blade.php │ │ │ ├── arrow-circle-right.blade.php │ │ │ ├── arrow-circle-up.blade.php │ │ │ ├── arrow-down.blade.php │ │ │ ├── arrow-left.blade.php │ │ │ ├── arrow-narrow-down.blade.php │ │ │ ├── arrow-narrow-left.blade.php │ │ │ ├── arrow-narrow-right.blade.php │ │ │ ├── arrow-narrow-up.blade.php │ │ │ ├── arrow-right.blade.php │ │ │ ├── arrow-up.blade.php │ │ │ ├── arrows-expand.blade.php │ │ │ ├── at-symbol.blade.php │ │ │ ├── backspace.blade.php │ │ │ ├── badge-check.blade.php │ │ │ ├── ban.blade.php │ │ │ ├── beaker.blade.php │ │ │ ├── bell.blade.php │ │ │ ├── book-open.blade.php │ │ │ ├── bookmark-alt.blade.php │ │ │ ├── bookmark.blade.php │ │ │ ├── briefcase.blade.php │ │ │ ├── cake.blade.php │ │ │ ├── calculator.blade.php │ │ │ ├── calendar.blade.php │ │ │ ├── camera.blade.php │ │ │ ├── cash.blade.php │ │ │ ├── chart-bar.blade.php │ │ │ ├── chart-pie.blade.php │ │ │ ├── chart-square-bar.blade.php │ │ │ ├── chat-alt-2.blade.php │ │ │ ├── chat-alt.blade.php │ │ │ ├── chat.blade.php │ │ │ ├── check-circle.blade.php │ │ │ ├── check.blade.php │ │ │ ├── chevron-double-down.blade.php │ │ │ ├── chevron-double-left.blade.php │ │ │ ├── chevron-double-right.blade.php │ │ │ ├── chevron-double-up.blade.php │ │ │ ├── chevron-down.blade.php │ │ │ ├── chevron-left.blade.php │ │ │ ├── chevron-right.blade.php │ │ │ ├── chevron-up.blade.php │ │ │ ├── chip.blade.php │ │ │ ├── clipboard-check.blade.php │ │ │ ├── clipboard-copy.blade.php │ │ │ ├── clipboard-list.blade.php │ │ │ ├── clipboard.blade.php │ │ │ ├── clock.blade.php │ │ │ ├── cloud-download.blade.php │ │ │ ├── cloud-upload.blade.php │ │ │ ├── cloud.blade.php │ │ │ ├── code.blade.php │ │ │ ├── cog.blade.php │ │ │ ├── collection.blade.php │ │ │ ├── color-swatch.blade.php │ │ │ ├── credit-card.blade.php │ │ │ ├── cube-transparent.blade.php │ │ │ ├── cube.blade.php │ │ │ ├── currency-bangladeshi.blade.php │ │ │ ├── currency-dollar.blade.php │ │ │ ├── currency-euro.blade.php │ │ │ ├── currency-pound.blade.php │ │ │ ├── currency-rupee.blade.php │ │ │ ├── currency-yen.blade.php │ │ │ ├── cursor-click.blade.php │ │ │ ├── database.blade.php │ │ │ ├── desktop-computer.blade.php │ │ │ ├── device-mobile.blade.php │ │ │ ├── device-tablet.blade.php │ │ │ ├── document-add.blade.php │ │ │ ├── document-download.blade.php │ │ │ ├── document-duplicate.blade.php │ │ │ ├── document-remove.blade.php │ │ │ ├── document-report.blade.php │ │ │ ├── document-search.blade.php │ │ │ ├── document-text.blade.php │ │ │ ├── document.blade.php │ │ │ ├── dots-circle-horizontal.blade.php │ │ │ ├── dots-horizontal.blade.php │ │ │ ├── dots-vertical.blade.php │ │ │ ├── download.blade.php │ │ │ ├── duplicate.blade.php │ │ │ ├── emoji-happy.blade.php │ │ │ ├── emoji-sad.blade.php │ │ │ ├── exclamation-circle.blade.php │ │ │ ├── exclamation.blade.php │ │ │ ├── external-link.blade.php │ │ │ ├── eye-off.blade.php │ │ │ ├── eye.blade.php │ │ │ ├── fast-forward.blade.php │ │ │ ├── film.blade.php │ │ │ ├── filter.blade.php │ │ │ ├── finger-print.blade.php │ │ │ ├── fire.blade.php │ │ │ ├── flag.blade.php │ │ │ ├── folder-add.blade.php │ │ │ ├── folder-download.blade.php │ │ │ ├── folder-open.blade.php │ │ │ ├── folder-remove.blade.php │ │ │ ├── folder.blade.php │ │ │ ├── gift.blade.php │ │ │ ├── globe-alt.blade.php │ │ │ ├── globe.blade.php │ │ │ ├── hand.blade.php │ │ │ ├── hashtag.blade.php │ │ │ ├── heart.blade.php │ │ │ ├── home.blade.php │ │ │ ├── identification.blade.php │ │ │ ├── inbox-in.blade.php │ │ │ ├── inbox.blade.php │ │ │ ├── information-circle.blade.php │ │ │ ├── key.blade.php │ │ │ ├── library.blade.php │ │ │ ├── light-bulb.blade.php │ │ │ ├── lightning-bolt.blade.php │ │ │ ├── link.blade.php │ │ │ ├── location-marker.blade.php │ │ │ ├── lock-closed.blade.php │ │ │ ├── lock-open.blade.php │ │ │ ├── login.blade.php │ │ │ ├── logout.blade.php │ │ │ ├── mail-open.blade.php │ │ │ ├── mail.blade.php │ │ │ ├── map.blade.php │ │ │ ├── menu-alt-1.blade.php │ │ │ ├── menu-alt-2.blade.php │ │ │ ├── menu-alt-3.blade.php │ │ │ ├── menu-alt-4.blade.php │ │ │ ├── menu.blade.php │ │ │ ├── microphone.blade.php │ │ │ ├── minus-circle.blade.php │ │ │ ├── minus-sm.blade.php │ │ │ ├── minus.blade.php │ │ │ ├── moon.blade.php │ │ │ ├── music-note.blade.php │ │ │ ├── newspaper.blade.php │ │ │ ├── office-building.blade.php │ │ │ ├── paper-airplane.blade.php │ │ │ ├── paper-clip.blade.php │ │ │ ├── pause.blade.php │ │ │ ├── pencil-alt.blade.php │ │ │ ├── pencil.blade.php │ │ │ ├── phone-incoming.blade.php │ │ │ ├── phone-missed-call.blade.php │ │ │ ├── phone-outgoing.blade.php │ │ │ ├── phone.blade.php │ │ │ ├── photograph.blade.php │ │ │ ├── play.blade.php │ │ │ ├── plus-circle.blade.php │ │ │ ├── plus-sm.blade.php │ │ │ ├── plus.blade.php │ │ │ ├── presentation-chart-bar.blade.php │ │ │ ├── presentation-chart-line.blade.php │ │ │ ├── printer.blade.php │ │ │ ├── puzzle.blade.php │ │ │ ├── qrcode.blade.php │ │ │ ├── question-mark-circle.blade.php │ │ │ ├── receipt-refund.blade.php │ │ │ ├── receipt-tax.blade.php │ │ │ ├── refresh.blade.php │ │ │ ├── reply.blade.php │ │ │ ├── rewind.blade.php │ │ │ ├── rss.blade.php │ │ │ ├── save-as.blade.php │ │ │ ├── save.blade.php │ │ │ ├── scale.blade.php │ │ │ ├── scissors.blade.php │ │ │ ├── search-circle.blade.php │ │ │ ├── search.blade.php │ │ │ ├── selector.blade.php │ │ │ ├── server.blade.php │ │ │ ├── share.blade.php │ │ │ ├── shield-check.blade.php │ │ │ ├── shield-exclamation.blade.php │ │ │ ├── shopping-bag.blade.php │ │ │ ├── shopping-cart.blade.php │ │ │ ├── sort-ascending.blade.php │ │ │ ├── sort-descending.blade.php │ │ │ ├── sparkles.blade.php │ │ │ ├── speakerphone.blade.php │ │ │ ├── star.blade.php │ │ │ ├── status-offline.blade.php │ │ │ ├── status-online.blade.php │ │ │ ├── stop.blade.php │ │ │ ├── sun.blade.php │ │ │ ├── support.blade.php │ │ │ ├── switch-horizontal.blade.php │ │ │ ├── switch-vertical.blade.php │ │ │ ├── table.blade.php │ │ │ ├── tag.blade.php │ │ │ ├── template.blade.php │ │ │ ├── terminal.blade.php │ │ │ ├── thumb-down.blade.php │ │ │ ├── thumb-up.blade.php │ │ │ ├── ticket.blade.php │ │ │ ├── translate.blade.php │ │ │ ├── trash.blade.php │ │ │ ├── trending-down.blade.php │ │ │ ├── trending-up.blade.php │ │ │ ├── truck.blade.php │ │ │ ├── upload.blade.php │ │ │ ├── user-add.blade.php │ │ │ ├── user-circle.blade.php │ │ │ ├── user-group.blade.php │ │ │ ├── user-remove.blade.php │ │ │ ├── user.blade.php │ │ │ ├── users.blade.php │ │ │ ├── variable.blade.php │ │ │ ├── video-camera.blade.php │ │ │ ├── view-boards.blade.php │ │ │ ├── view-grid-add.blade.php │ │ │ ├── view-grid.blade.php │ │ │ ├── view-list.blade.php │ │ │ ├── volume-off.blade.php │ │ │ ├── volume-up.blade.php │ │ │ ├── wifi.blade.php │ │ │ ├── x-circle.blade.php │ │ │ ├── x.blade.php │ │ │ ├── zoom-in.blade.php │ │ │ └── zoom-out.blade.php │ │ └── spinner.blade.php │ │ ├── input.blade.php │ │ ├── inputs │ │ ├── currency.blade.php │ │ ├── maskable.blade.php │ │ ├── number.blade.php │ │ └── password.blade.php │ │ ├── label.blade.php │ │ ├── modal-card.blade.php │ │ ├── modal.blade.php │ │ ├── native-select.blade.php │ │ ├── notifications.blade.php │ │ ├── parts │ │ └── popover.blade.php │ │ ├── radio.blade.php │ │ ├── select.blade.php │ │ ├── select │ │ ├── option.blade.php │ │ └── user-option.blade.php │ │ ├── textarea.blade.php │ │ ├── time-picker.blade.php │ │ └── toggle.blade.php │ ├── src │ ├── Actions │ │ ├── Actionable.php │ │ ├── Dialog.php │ │ └── Notification.php │ ├── Facades │ │ ├── WireUi.php │ │ └── WireUiDirectives.php │ ├── Http │ │ ├── Controllers │ │ │ ├── ButtonController.php │ │ │ ├── Controller.php │ │ │ ├── IconsController.php │ │ │ └── WireUiAssetsController.php │ │ └── Requests │ │ │ └── ButtonRequest.php │ ├── Providers │ │ └── WireUiServiceProvider.php │ ├── Support │ │ ├── BladeCompiler.php │ │ ├── BladeDirectives.php │ │ ├── ComponentResolver.php │ │ ├── SafeEval.php │ │ └── WireUiTagCompiler.php │ ├── Traits │ │ └── Actions.php │ ├── View │ │ └── Components │ │ │ ├── Avatar.php │ │ │ ├── Badge.php │ │ │ ├── BaseBadge.php │ │ │ ├── BaseButton.php │ │ │ ├── Button.php │ │ │ ├── Card.php │ │ │ ├── Checkbox.php │ │ │ ├── CircleBadge.php │ │ │ ├── CircleButton.php │ │ │ ├── ColorPicker.php │ │ │ ├── Component.php │ │ │ ├── DatetimePicker.php │ │ │ ├── Dialog.php │ │ │ ├── Dropdown.php │ │ │ ├── Dropdown │ │ │ ├── DropdownHeader.php │ │ │ └── DropdownItem.php │ │ │ ├── Error.php │ │ │ ├── Errors.php │ │ │ ├── FormComponent.php │ │ │ ├── Icon.php │ │ │ ├── Icons │ │ │ └── Spinner.php │ │ │ ├── Input.php │ │ │ ├── Inputs │ │ │ ├── BaseMaskable.php │ │ │ ├── CurrencyInput.php │ │ │ ├── MaskableInput.php │ │ │ ├── NumberInput.php │ │ │ ├── PasswordInput.php │ │ │ └── PhoneInput.php │ │ │ ├── Label.php │ │ │ ├── Modal.php │ │ │ ├── ModalCard.php │ │ │ ├── NativeSelect.php │ │ │ ├── Notifications.php │ │ │ ├── Radio.php │ │ │ ├── Select.php │ │ │ ├── Select │ │ │ ├── Option.php │ │ │ └── UserOption.php │ │ │ ├── Textarea.php │ │ │ ├── TimePicker.php │ │ │ └── Toggle.php │ ├── Wireui.php │ ├── config │ │ └── wireui.php │ ├── lang │ │ ├── af │ │ │ └── messages.php │ │ ├── ar │ │ │ └── messages.php │ │ ├── bg │ │ │ └── messages.php │ │ ├── bn │ │ │ └── messages.php │ │ ├── bs │ │ │ └── messages.php │ │ ├── ca │ │ │ └── messages.php │ │ ├── ckb │ │ │ └── messages.php │ │ ├── de │ │ │ └── messages.php │ │ ├── en │ │ │ └── messages.php │ │ ├── es │ │ │ └── messages.php │ │ ├── fa │ │ │ └── messages.php │ │ ├── fr │ │ │ └── messages.php │ │ ├── id │ │ │ └── messages.php │ │ ├── it │ │ │ └── messages.php │ │ ├── ja │ │ │ └── messages.php │ │ ├── ms │ │ │ └── messages.php │ │ ├── nl_NL │ │ │ └── messages.php │ │ ├── pt_BR │ │ │ └── messages.php │ │ ├── ru │ │ │ └── messages.php │ │ ├── sk │ │ │ └── messages.php │ │ ├── vi │ │ │ └── messages.php │ │ └── zh_CN │ │ │ └── messages.php │ └── routes │ │ └── web.php │ ├── tailwind.config.js │ ├── tests │ ├── Browser │ │ ├── Badge │ │ │ ├── BadgeComponent.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── BrowserFunctions.php │ │ ├── BrowserTestCase.php │ │ ├── Button │ │ │ ├── ATagComponent.php │ │ │ ├── ButtonComponent.php │ │ │ └── Test.php │ │ ├── Checkbox │ │ │ ├── CheckComponent.php │ │ │ └── Test.php │ │ ├── ColorPicker │ │ │ ├── BlurComponent.php │ │ │ ├── BlurTest.php │ │ │ ├── DebounceComponent.php │ │ │ └── DebounceTest.php │ │ ├── ColorPickerTest.php │ │ ├── ConfirmDirective │ │ │ ├── DirectiveComponent.php │ │ │ └── Test.php │ │ ├── CurrencyInput │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── DatetimePicker │ │ │ ├── Component.php │ │ │ ├── MinMaxLimits │ │ │ │ ├── Component.php │ │ │ │ └── Test.php │ │ │ └── Test.php │ │ ├── Dialog │ │ │ ├── AlertDialogTest.php │ │ │ ├── Component.php │ │ │ ├── ConfirmDialogTest.php │ │ │ └── view.blade.php │ │ ├── Errors │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── Input │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── Macros │ │ │ └── DuskBrowserMacros.php │ │ ├── MaskableInput │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── NativeSelect │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── Notifications │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── NumberInput │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── PasswordInput │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── PhoneInput │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── Radio │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── Select │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── TimePicker │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ ├── Toggle │ │ │ ├── Component.php │ │ │ ├── Test.php │ │ │ └── view.blade.php │ │ └── views │ │ │ └── components │ │ │ └── layouts │ │ │ └── app.blade.php │ ├── Pest.php │ ├── TypeScript │ │ ├── alpine │ │ │ ├── magic │ │ │ │ ├── index.spec.ts │ │ │ │ └── props.spec.ts │ │ │ └── store │ │ │ │ ├── colorPicker.spec.ts │ │ │ │ ├── index.spec.ts │ │ │ │ └── modal.spec.ts │ │ ├── components │ │ │ └── color-picker │ │ │ │ ├── colors.spec.ts │ │ │ │ └── index.spec.ts │ │ ├── currency.spec.ts │ │ ├── dataGet.spec.ts │ │ ├── date.spec.ts │ │ ├── datetime-picker │ │ │ └── make-times.spec.ts │ │ ├── helpers.ts │ │ ├── masker.spec.ts │ │ ├── notifications │ │ │ ├── notification.spec.ts │ │ │ └── parses.spec.ts │ │ ├── pausableInterval.spec.ts │ │ ├── pausableTimeout.spec.ts │ │ ├── utils │ │ │ └── time.spec.ts │ │ └── uuidGenerator.spec.ts │ └── Unit │ │ ├── Actions │ │ ├── DialogTest.php │ │ └── NotificationTest.php │ │ ├── Components │ │ ├── AvatarTest.php │ │ ├── BadgeTest.php │ │ ├── ButtonTest.php │ │ ├── ColorPickerTest.php │ │ ├── IconTest.php │ │ ├── NativeSelectTest.php │ │ └── SelectTest.php │ │ ├── Controllers │ │ ├── ButtonControllerTest.php │ │ └── IconsControllerTest.php │ │ ├── Http │ │ └── Controllers │ │ │ └── WireUiAssetsControllerTest.php │ │ ├── SafeEvalTest.php │ │ ├── Support │ │ └── BladeDirectives │ │ │ └── EntangleableTest.php │ │ ├── TestComponent.php │ │ ├── Traits │ │ └── ActionsTest.php │ │ ├── UnitTestCase.php │ │ ├── View │ │ ├── Components │ │ │ └── FormComponentTest.php │ │ └── Macros │ │ │ └── WireModifiersTest.php │ │ └── WireUiTagCompilerTest.php │ ├── ts │ ├── alpine │ │ ├── directives │ │ │ └── index.ts │ │ ├── magic │ │ │ ├── index.ts │ │ │ └── props.ts │ │ └── store │ │ │ ├── colorPicker.ts │ │ │ ├── index.ts │ │ │ └── modal.ts │ ├── browserSupport.ts │ ├── components │ │ ├── alpine.ts │ │ ├── color-picker │ │ │ ├── colors.ts │ │ │ └── index.ts │ │ ├── datetime-picker │ │ │ ├── index.ts │ │ │ ├── interfaces.ts │ │ │ └── makeTimes.ts │ │ ├── dialog.ts │ │ ├── dropdown.ts │ │ ├── index.ts │ │ ├── inputs │ │ │ ├── currency.ts │ │ │ ├── maskable.ts │ │ │ ├── number.ts │ │ │ └── password.ts │ │ ├── modal.ts │ │ ├── modules │ │ │ ├── focusables.ts │ │ │ └── positioning.ts │ │ ├── notifications.ts │ │ ├── select │ │ │ ├── index.ts │ │ │ ├── interfaces.ts │ │ │ ├── templates │ │ │ │ ├── baseTemplate.ts │ │ │ │ ├── index.ts │ │ │ │ ├── option.ts │ │ │ │ └── userOption.ts │ │ │ └── types.ts │ │ └── time-picker │ │ │ ├── index.ts │ │ │ └── interfaces.ts │ ├── dialog │ │ ├── actions.ts │ │ ├── events.ts │ │ ├── icons.ts │ │ ├── index.ts │ │ ├── options.ts │ │ └── parses.ts │ ├── directives │ │ └── confirm.ts │ ├── global.d.ts │ ├── global │ │ ├── index.ts │ │ └── modal.ts │ ├── hooks.ts │ ├── index.ts │ ├── notifications │ │ ├── actions.ts │ │ ├── events.ts │ │ ├── icons.ts │ │ ├── index.ts │ │ ├── options.ts │ │ ├── parses.ts │ │ └── timer.ts │ └── utils │ │ ├── currency │ │ ├── index.ts │ │ ├── maskCurrency.ts │ │ └── unMaskCurrency.ts │ │ ├── dataGet.ts │ │ ├── date.ts │ │ ├── debounce.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── interval.ts │ │ ├── masker │ │ ├── dynamicMasker.ts │ │ ├── index.ts │ │ ├── masker.ts │ │ ├── timeTokens.ts │ │ └── tokens.ts │ │ ├── scrollbar.ts │ │ ├── time.ts │ │ ├── timeout.ts │ │ └── uuid.ts │ ├── tsconfig.json │ ├── webpack.mix.js │ └── yarn.lock └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/.env -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/.htaccess -------------------------------------------------------------------------------- /.php-cs-fixer.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/.php-cs-fixer.cache -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Console/UpdateSitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Console/UpdateSitemap.php -------------------------------------------------------------------------------- /app/Console/UpdateUserLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Console/UpdateUserLevel.php -------------------------------------------------------------------------------- /app/Console/devstore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Console/devstore.php -------------------------------------------------------------------------------- /app/Events/Favorite/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Events/Favorite/Event.php -------------------------------------------------------------------------------- /app/Events/Favorite/Favorited.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Events/Favorite/Favorited.php -------------------------------------------------------------------------------- /app/Events/Favorite/Unfavorited.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Events/Favorite/Unfavorited.php -------------------------------------------------------------------------------- /app/Events/Follow/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Events/Follow/Event.php -------------------------------------------------------------------------------- /app/Events/Follow/Followed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Events/Follow/Followed.php -------------------------------------------------------------------------------- /app/Events/Follow/Unfollowed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Events/Follow/Unfollowed.php -------------------------------------------------------------------------------- /app/Events/Vote/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Events/Vote/Event.php -------------------------------------------------------------------------------- /app/Events/Vote/VoteCancelled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Events/Vote/VoteCancelled.php -------------------------------------------------------------------------------- /app/Events/Vote/Voted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Events/Vote/Voted.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exceptions/InvalidReportUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Exceptions/InvalidReportUser.php -------------------------------------------------------------------------------- /app/Filament/Pages/Ads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Pages/Ads.php -------------------------------------------------------------------------------- /app/Filament/Pages/CacheManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Pages/CacheManager.php -------------------------------------------------------------------------------- /app/Filament/Pages/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Pages/General.php -------------------------------------------------------------------------------- /app/Filament/Pages/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Pages/Mail.php -------------------------------------------------------------------------------- /app/Filament/Pages/PWA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Pages/PWA.php -------------------------------------------------------------------------------- /app/Filament/Pages/Recaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Pages/Recaptcha.php -------------------------------------------------------------------------------- /app/Filament/Pages/Seo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Pages/Seo.php -------------------------------------------------------------------------------- /app/Filament/Pages/Sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Pages/Sitemap.php -------------------------------------------------------------------------------- /app/Filament/Pages/SocialLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Pages/SocialLogin.php -------------------------------------------------------------------------------- /app/Filament/Pages/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Pages/Storage.php -------------------------------------------------------------------------------- /app/Filament/Resources/TagResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Resources/TagResource.php -------------------------------------------------------------------------------- /app/Filament/Widgets/CommentsChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Widgets/CommentsChart.php -------------------------------------------------------------------------------- /app/Filament/Widgets/LatestUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Widgets/LatestUsers.php -------------------------------------------------------------------------------- /app/Filament/Widgets/MediaChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Widgets/MediaChart.php -------------------------------------------------------------------------------- /app/Filament/Widgets/StatsApp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Widgets/StatsApp.php -------------------------------------------------------------------------------- /app/Filament/Widgets/StoriesChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Widgets/StoriesChart.php -------------------------------------------------------------------------------- /app/Filament/Widgets/UsersChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Filament/Widgets/UsersChart.php -------------------------------------------------------------------------------- /app/Helpers/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Helpers/helpers.php -------------------------------------------------------------------------------- /app/Helpers/numberForHumans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Helpers/numberForHumans.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/UserActivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Http/Middleware/UserActivity.php -------------------------------------------------------------------------------- /app/Listeners/NewFollowerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Listeners/NewFollowerListener.php -------------------------------------------------------------------------------- /app/Livewire/AbstractComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/AbstractComponent.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Settings/Ads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Admin/Settings/Ads.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Settings/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Admin/Settings/Mail.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Settings/PWA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Admin/Settings/PWA.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Settings/Seo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Admin/Settings/Seo.php -------------------------------------------------------------------------------- /app/Livewire/Front/Community/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Community/Show.php -------------------------------------------------------------------------------- /app/Livewire/Front/ContactForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/ContactForm.php -------------------------------------------------------------------------------- /app/Livewire/Front/Favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Favorite.php -------------------------------------------------------------------------------- /app/Livewire/Front/Follow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Follow.php -------------------------------------------------------------------------------- /app/Livewire/Front/Home/Featured.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Home/Featured.php -------------------------------------------------------------------------------- /app/Livewire/Front/Home/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Home/Index.php -------------------------------------------------------------------------------- /app/Livewire/Front/Home/Latest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Home/Latest.php -------------------------------------------------------------------------------- /app/Livewire/Front/Home/MyFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Home/MyFeed.php -------------------------------------------------------------------------------- /app/Livewire/Front/Notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Notifications.php -------------------------------------------------------------------------------- /app/Livewire/Front/Poll/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Poll/Form.php -------------------------------------------------------------------------------- /app/Livewire/Front/Poll/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Poll/Show.php -------------------------------------------------------------------------------- /app/Livewire/Front/ReportComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/ReportComment.php -------------------------------------------------------------------------------- /app/Livewire/Front/ReportStory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/ReportStory.php -------------------------------------------------------------------------------- /app/Livewire/Front/SearchBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/SearchBar.php -------------------------------------------------------------------------------- /app/Livewire/Front/Story/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Story/Create.php -------------------------------------------------------------------------------- /app/Livewire/Front/Story/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Story/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Front/Story/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Story/Show.php -------------------------------------------------------------------------------- /app/Livewire/Front/StoryCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/StoryCard.php -------------------------------------------------------------------------------- /app/Livewire/Front/Tags/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Tags/Index.php -------------------------------------------------------------------------------- /app/Livewire/Front/Tags/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Tags/Show.php -------------------------------------------------------------------------------- /app/Livewire/Front/User/Avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/User/Avatar.php -------------------------------------------------------------------------------- /app/Livewire/Front/User/CoverImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/User/CoverImage.php -------------------------------------------------------------------------------- /app/Livewire/Front/User/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/User/Settings.php -------------------------------------------------------------------------------- /app/Livewire/Front/User/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/User/Show.php -------------------------------------------------------------------------------- /app/Livewire/Front/Vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Livewire/Front/Vote.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/Community.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Community.php -------------------------------------------------------------------------------- /app/Models/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Contact.php -------------------------------------------------------------------------------- /app/Models/Favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Favorite.php -------------------------------------------------------------------------------- /app/Models/Followable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Followable.php -------------------------------------------------------------------------------- /app/Models/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Notification.php -------------------------------------------------------------------------------- /app/Models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Page.php -------------------------------------------------------------------------------- /app/Models/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Permission.php -------------------------------------------------------------------------------- /app/Models/Poll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Poll.php -------------------------------------------------------------------------------- /app/Models/PollChoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/PollChoice.php -------------------------------------------------------------------------------- /app/Models/PollVote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/PollVote.php -------------------------------------------------------------------------------- /app/Models/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Profile.php -------------------------------------------------------------------------------- /app/Models/ReportedComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/ReportedComment.php -------------------------------------------------------------------------------- /app/Models/ReportedStory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/ReportedStory.php -------------------------------------------------------------------------------- /app/Models/Story.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Story.php -------------------------------------------------------------------------------- /app/Models/Traits/Favoriteable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Traits/Favoriteable.php -------------------------------------------------------------------------------- /app/Models/Traits/Favoriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Traits/Favoriter.php -------------------------------------------------------------------------------- /app/Models/Traits/Followable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Traits/Followable.php -------------------------------------------------------------------------------- /app/Models/Traits/Follower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Traits/Follower.php -------------------------------------------------------------------------------- /app/Models/Traits/Votable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Traits/Votable.php -------------------------------------------------------------------------------- /app/Models/Traits/Voter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Traits/Voter.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/Vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Models/Vote.php -------------------------------------------------------------------------------- /app/Notifications/CommentAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Notifications/CommentAdded.php -------------------------------------------------------------------------------- /app/Notifications/ReplyAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Notifications/ReplyAdded.php -------------------------------------------------------------------------------- /app/Observers/Admin/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Observers/Admin/UserObserver.php -------------------------------------------------------------------------------- /app/Policies/CommentPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Policies/CommentPolicy.php -------------------------------------------------------------------------------- /app/Policies/StoryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Policies/StoryPolicy.php -------------------------------------------------------------------------------- /app/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Policies/UserPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BladeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Providers/BladeServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/BaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Repositories/BaseRepository.php -------------------------------------------------------------------------------- /app/Repositories/PageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Repositories/PageRepository.php -------------------------------------------------------------------------------- /app/Repositories/TagRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Repositories/TagRepository.php -------------------------------------------------------------------------------- /app/Repositories/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Repositories/UserRepository.php -------------------------------------------------------------------------------- /app/Rules/Recaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Rules/Recaptcha.php -------------------------------------------------------------------------------- /app/Services/PWAManifestService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Services/PWAManifestService.php -------------------------------------------------------------------------------- /app/Settings/AdvancedSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Settings/AdvancedSettings.php -------------------------------------------------------------------------------- /app/Settings/GeneralSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Settings/GeneralSettings.php -------------------------------------------------------------------------------- /app/Settings/SeoSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Settings/SeoSettings.php -------------------------------------------------------------------------------- /app/Settings/ThemeSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/Settings/ThemeSettings.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/EditorLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/View/Components/EditorLayout.php -------------------------------------------------------------------------------- /app/View/Components/ErrorLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/View/Components/ErrorLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /app/View/Components/Menu/Footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/View/Components/Menu/Footer.php -------------------------------------------------------------------------------- /app/View/Components/Menu/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/View/Components/Menu/Main.php -------------------------------------------------------------------------------- /app/View/Components/SetupLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/app/View/Components/SetupLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/bianity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/bianity.php -------------------------------------------------------------------------------- /config/blade-icons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/blade-icons.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cookie-consent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/cookie-consent.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/database.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/eloquent-viewable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/eloquent-viewable.php -------------------------------------------------------------------------------- /config/favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/favorite.php -------------------------------------------------------------------------------- /config/feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/feed.php -------------------------------------------------------------------------------- /config/filament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/filament.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/follow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/follow.php -------------------------------------------------------------------------------- /config/google2fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/google2fa.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/like.php -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/livewire.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/media-library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/media-library.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/points.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/points.php -------------------------------------------------------------------------------- /config/purifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/purifier.php -------------------------------------------------------------------------------- /config/pwa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/pwa.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/seotools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/seotools.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/session.php -------------------------------------------------------------------------------- /config/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/settings.php -------------------------------------------------------------------------------- /config/sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/sitemap.php -------------------------------------------------------------------------------- /config/sluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/sluggable.php -------------------------------------------------------------------------------- /config/taggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/taggable.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/view.php -------------------------------------------------------------------------------- /config/vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/vote.php -------------------------------------------------------------------------------- /config/wireui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/config/wireui.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/ProfileFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/database/factories/ProfileFactory.php -------------------------------------------------------------------------------- /database/factories/StoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/database/factories/StoryFactory.php -------------------------------------------------------------------------------- /database/factories/TagFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/database/factories/TagFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeders/CommunitySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/database/seeders/CommunitySeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/PageSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/database/seeders/PageSeeder.php -------------------------------------------------------------------------------- /database/seeders/PermissionsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/database/seeders/PermissionsSeeder.php -------------------------------------------------------------------------------- /database/seeders/RolesSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/database/seeders/RolesSeeder.php -------------------------------------------------------------------------------- /database/seeders/StorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/database/seeders/StorySeeder.php -------------------------------------------------------------------------------- /database/seeders/TagSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/database/seeders/TagSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/lang/id.json -------------------------------------------------------------------------------- /lang/id/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/lang/id/auth.php -------------------------------------------------------------------------------- /lang/id/http-statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/lang/id/http-statuses.php -------------------------------------------------------------------------------- /lang/id/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/lang/id/pagination.php -------------------------------------------------------------------------------- /lang/id/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/lang/id/passwords.php -------------------------------------------------------------------------------- /lang/id/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/lang/id/validation.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/build/assets/app-080ec996.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/build/assets/app-080ec996.js -------------------------------------------------------------------------------- /public/build/assets/app-bfd509e2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/build/assets/app-bfd509e2.css -------------------------------------------------------------------------------- /public/build/assets/editor-9e9bb1d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/build/assets/editor-9e9bb1d1.js -------------------------------------------------------------------------------- /public/build/assets/tagify-c2d7ae9b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/build/assets/tagify-c2d7ae9b.js -------------------------------------------------------------------------------- /public/build/assets/theme-9f9b664f.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/build/assets/theme-9f9b664f.css -------------------------------------------------------------------------------- /public/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/build/manifest.json -------------------------------------------------------------------------------- /public/css/filament/filament/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/css/filament/filament/app.css -------------------------------------------------------------------------------- /public/css/filament/forms/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/css/filament/forms/forms.css -------------------------------------------------------------------------------- /public/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/11.png -------------------------------------------------------------------------------- /public/images/20240617_094030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/20240617_094030.png -------------------------------------------------------------------------------- /public/images/20240629_042909.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/20240629_042909.png -------------------------------------------------------------------------------- /public/images/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/22.png -------------------------------------------------------------------------------- /public/images/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/33.png -------------------------------------------------------------------------------- /public/images/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/44.png -------------------------------------------------------------------------------- /public/images/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/55.png -------------------------------------------------------------------------------- /public/images/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/66.png -------------------------------------------------------------------------------- /public/images/77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/77.png -------------------------------------------------------------------------------- /public/images/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/88.png -------------------------------------------------------------------------------- /public/images/99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/99.png -------------------------------------------------------------------------------- /public/images/cover_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/cover_default.jpg -------------------------------------------------------------------------------- /public/images/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/default-avatar.png -------------------------------------------------------------------------------- /public/images/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/download.svg -------------------------------------------------------------------------------- /public/images/error-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/error-page.jpg -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/google-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/google-search.svg -------------------------------------------------------------------------------- /public/images/license-mit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/license-mit.svg -------------------------------------------------------------------------------- /public/images/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/logo-dark.png -------------------------------------------------------------------------------- /public/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/logo-dark.svg -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/logo.svg -------------------------------------------------------------------------------- /public/images/maintenance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/maintenance.jpg -------------------------------------------------------------------------------- /public/images/mylogo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/mylogo-3.png -------------------------------------------------------------------------------- /public/images/mylogo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/mylogo-4.png -------------------------------------------------------------------------------- /public/images/nopreview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/nopreview.jpg -------------------------------------------------------------------------------- /public/images/official-site.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/official-site.svg -------------------------------------------------------------------------------- /public/images/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/images/watermark.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/filament/filament/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/js/filament/filament/app.js -------------------------------------------------------------------------------- /public/js/filament/filament/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/js/filament/filament/echo.js -------------------------------------------------------------------------------- /public/js/filament/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/js/filament/support/support.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/livewire/livewire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/vendor/livewire/livewire.js -------------------------------------------------------------------------------- /public/vendor/livewire/livewire.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/vendor/livewire/livewire.js.map -------------------------------------------------------------------------------- /public/vendor/livewire/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/public/vendor/livewire/manifest.json -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/filament/cp/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/css/filament/cp/theme.css -------------------------------------------------------------------------------- /resources/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/css/reset.css -------------------------------------------------------------------------------- /resources/css/tagify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/css/tagify.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/js/cropper.js -------------------------------------------------------------------------------- /resources/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/js/editor.js -------------------------------------------------------------------------------- /resources/js/tagify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/js/tagify.js -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/blocks/code.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/blocks/code.blade.php -------------------------------------------------------------------------------- /resources/views/blocks/delimiter.blade.php: -------------------------------------------------------------------------------- 1 |
***
2 | -------------------------------------------------------------------------------- /resources/views/blocks/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/blocks/list.blade.php -------------------------------------------------------------------------------- /resources/views/blocks/not-found.blade.php: -------------------------------------------------------------------------------- 1 |

{{ __('Block Not Found!') }}

2 | -------------------------------------------------------------------------------- /resources/views/blocks/quote.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/blocks/quote.blade.php -------------------------------------------------------------------------------- /resources/views/blocks/raw.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/blocks/raw.blade.php -------------------------------------------------------------------------------- /resources/views/blocks/table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/blocks/table.blade.php -------------------------------------------------------------------------------- /resources/views/components/editorjs/block-paragraph-first.blade.php: -------------------------------------------------------------------------------- 1 |

{!! $data['text'] !!}

2 | -------------------------------------------------------------------------------- /resources/views/components/editorjs/block-paragraph.blade.php: -------------------------------------------------------------------------------- 1 |

{!! $data['text'] !!}

2 | -------------------------------------------------------------------------------- /resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/errors/401.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/errors/419.blade.php -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/errors/429.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/home/latest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/home/latest.blade.php -------------------------------------------------------------------------------- /resources/views/home/myfeed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/home/myfeed.blade.php -------------------------------------------------------------------------------- /resources/views/home/popular.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/home/popular.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/page/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/page/show.blade.php -------------------------------------------------------------------------------- /resources/views/story/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/story/create.blade.php -------------------------------------------------------------------------------- /resources/views/story/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/story/edit.blade.php -------------------------------------------------------------------------------- /resources/views/story/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/story/show.blade.php -------------------------------------------------------------------------------- /resources/views/tags/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/tags/index.blade.php -------------------------------------------------------------------------------- /resources/views/tags/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/tags/show.blade.php -------------------------------------------------------------------------------- /resources/views/user/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/resources/views/user/show.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/routes/installer.php -------------------------------------------------------------------------------- /routes/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/routes/online.php -------------------------------------------------------------------------------- /routes/points.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/routes/points.php -------------------------------------------------------------------------------- /routes/pwa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/routes/pwa.php -------------------------------------------------------------------------------- /routes/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/routes/setup.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vendor/archilex/filament-toggle-icon-column/resources/css/plugin.css: -------------------------------------------------------------------------------- 1 | @tailwind utilities; 2 | -------------------------------------------------------------------------------- /vendor/archilex/filament-toggle-icon-column/resources/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/archilex/filament-toggle-icon-column/resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/archtechx/enums/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/archtechx/enums/LICENSE -------------------------------------------------------------------------------- /vendor/archtechx/enums/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/archtechx/enums/README.md -------------------------------------------------------------------------------- /vendor/archtechx/enums/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/archtechx/enums/composer.json -------------------------------------------------------------------------------- /vendor/archtechx/enums/extension.neon: -------------------------------------------------------------------------------- 1 | includes: 2 | - ./src/PHPStan/InvokableCases/extension.neon -------------------------------------------------------------------------------- /vendor/archtechx/enums/src/From.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/archtechx/enums/src/From.php -------------------------------------------------------------------------------- /vendor/archtechx/enums/src/Names.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/archtechx/enums/src/Names.php -------------------------------------------------------------------------------- /vendor/archtechx/enums/src/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/archtechx/enums/src/Options.php -------------------------------------------------------------------------------- /vendor/archtechx/enums/src/Values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/archtechx/enums/src/Values.php -------------------------------------------------------------------------------- /vendor/artesaos/seotools/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/artesaos/seotools/LICENSE.md -------------------------------------------------------------------------------- /vendor/artesaos/seotools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/artesaos/seotools/README.md -------------------------------------------------------------------------------- /vendor/artesaos/seotools/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/artesaos/seotools/composer.json -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/aws/aws-crt-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/aws/aws-crt-php/LICENSE -------------------------------------------------------------------------------- /vendor/aws/aws-crt-php/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /vendor/aws/aws-crt-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/aws/aws-crt-php/README.md -------------------------------------------------------------------------------- /vendor/aws/aws-crt-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/aws/aws-crt-php/composer.json -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/aws/aws-sdk-php/LICENSE -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/aws/aws-sdk-php/NOTICE -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/aws/aws-sdk-php/composer.json -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/Arn/Arn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/aws/aws-sdk-php/src/Arn/Arn.php -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/aws/aws-sdk-php/src/Command.php -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/aws/aws-sdk-php/src/History.php -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/Sdk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/aws/aws-sdk-php/src/Sdk.php -------------------------------------------------------------------------------- /vendor/barryvdh/laravel-debugbar/src/Resources/laravel-debugbar-dark-mode-media-end.css: -------------------------------------------------------------------------------- 1 | } -------------------------------------------------------------------------------- /vendor/barryvdh/laravel-debugbar/src/Resources/laravel-debugbar-dark-mode-media-start.css: -------------------------------------------------------------------------------- 1 | @media (prefers-color-scheme: dark) { -------------------------------------------------------------------------------- /vendor/bin/blade-icons-generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/blade-icons-generate -------------------------------------------------------------------------------- /vendor/bin/blade-icons-generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/blade-icons-generate.bat -------------------------------------------------------------------------------- /vendor/bin/carbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/carbon -------------------------------------------------------------------------------- /vendor/bin/carbon.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/carbon.bat -------------------------------------------------------------------------------- /vendor/bin/doctrine-dbal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/doctrine-dbal -------------------------------------------------------------------------------- /vendor/bin/doctrine-dbal.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/doctrine-dbal.bat -------------------------------------------------------------------------------- /vendor/bin/jp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/jp.php -------------------------------------------------------------------------------- /vendor/bin/jp.php.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/jp.php.bat -------------------------------------------------------------------------------- /vendor/bin/patch-type-declarations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/patch-type-declarations -------------------------------------------------------------------------------- /vendor/bin/php-cs-fixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/php-cs-fixer -------------------------------------------------------------------------------- /vendor/bin/php-cs-fixer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/php-cs-fixer.bat -------------------------------------------------------------------------------- /vendor/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/php-parse -------------------------------------------------------------------------------- /vendor/bin/php-parse.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/php-parse.bat -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/phpunit -------------------------------------------------------------------------------- /vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/phpunit.bat -------------------------------------------------------------------------------- /vendor/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/psysh -------------------------------------------------------------------------------- /vendor/bin/psysh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/psysh.bat -------------------------------------------------------------------------------- /vendor/bin/sail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/sail -------------------------------------------------------------------------------- /vendor/bin/sail.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/sail.bat -------------------------------------------------------------------------------- /vendor/bin/var-dump-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/var-dump-server -------------------------------------------------------------------------------- /vendor/bin/var-dump-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/var-dump-server.bat -------------------------------------------------------------------------------- /vendor/bin/yaml-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/yaml-lint -------------------------------------------------------------------------------- /vendor/bin/yaml-lint.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/bin/yaml-lint.bat -------------------------------------------------------------------------------- /vendor/brick/math/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/brick/math/LICENSE -------------------------------------------------------------------------------- /vendor/brick/math/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/brick/math/composer.json -------------------------------------------------------------------------------- /vendor/brick/math/src/BigDecimal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/brick/math/src/BigDecimal.php -------------------------------------------------------------------------------- /vendor/brick/math/src/BigInteger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/brick/math/src/BigInteger.php -------------------------------------------------------------------------------- /vendor/brick/math/src/BigNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/brick/math/src/BigNumber.php -------------------------------------------------------------------------------- /vendor/cocur/slugify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/cocur/slugify/LICENSE -------------------------------------------------------------------------------- /vendor/cocur/slugify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/cocur/slugify/README.md -------------------------------------------------------------------------------- /vendor/cocur/slugify/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/cocur/slugify/composer.json -------------------------------------------------------------------------------- /vendor/cocur/slugify/src/Slugify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/cocur/slugify/src/Slugify.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/pcre/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/pcre/LICENSE -------------------------------------------------------------------------------- /vendor/composer/pcre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/pcre/README.md -------------------------------------------------------------------------------- /vendor/composer/pcre/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/pcre/composer.json -------------------------------------------------------------------------------- /vendor/composer/pcre/src/Preg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/pcre/src/Preg.php -------------------------------------------------------------------------------- /vendor/composer/pcre/src/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/pcre/src/Regex.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /vendor/composer/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/semver/LICENSE -------------------------------------------------------------------------------- /vendor/composer/semver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/semver/README.md -------------------------------------------------------------------------------- /vendor/composer/semver/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/composer/semver/composer.json -------------------------------------------------------------------------------- /vendor/cviebrock/eloquent-sluggable/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: cviebrock 2 | -------------------------------------------------------------------------------- /vendor/cviebrock/eloquent-taggable/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: cviebrock 2 | -------------------------------------------------------------------------------- /vendor/danharrin/date-format-converter/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [danharrin] 2 | -------------------------------------------------------------------------------- /vendor/danharrin/date-format-converter/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock -------------------------------------------------------------------------------- /vendor/danharrin/livewire-rate-limiting/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [danharrin] 2 | -------------------------------------------------------------------------------- /vendor/doctrine/cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/cache/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/cache/README.md -------------------------------------------------------------------------------- /vendor/doctrine/cache/UPGRADE-1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/cache/UPGRADE-1.4.md -------------------------------------------------------------------------------- /vendor/doctrine/cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/cache/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/dbal/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/dbal/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/doctrine/dbal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/dbal/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/dbal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/dbal/README.md -------------------------------------------------------------------------------- /vendor/doctrine/dbal/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/dbal/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/dbal/src/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/dbal/src/Driver.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/src/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/dbal/src/Events.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/src/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/dbal/src/Query.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/src/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/dbal/src/Result.php -------------------------------------------------------------------------------- /vendor/doctrine/deprecations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/deprecations/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/inflector/README.md -------------------------------------------------------------------------------- /vendor/doctrine/lexer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/lexer/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/lexer/README.md -------------------------------------------------------------------------------- /vendor/doctrine/lexer/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/lexer/UPGRADE.md -------------------------------------------------------------------------------- /vendor/doctrine/lexer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/lexer/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/lexer/src/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/doctrine/lexer/src/Token.php -------------------------------------------------------------------------------- /vendor/dragon-code/contracts/.nodoc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/dragon-code/contracts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/dragon-code/contracts/LICENSE -------------------------------------------------------------------------------- /vendor/dragon-code/support/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/dragon-code/support/LICENSE -------------------------------------------------------------------------------- /vendor/dragon-code/support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/dragon-code/support/README.md -------------------------------------------------------------------------------- /vendor/dragon-code/support/resources/stubs/json.stub: -------------------------------------------------------------------------------- 1 | {{slot}} 2 | -------------------------------------------------------------------------------- /vendor/dragon-code/support/resources/stubs/php_array.stub: -------------------------------------------------------------------------------- 1 | {})(); 2 | -------------------------------------------------------------------------------- /vendor/filament/forms/src/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/filament/forms/src/Form.php -------------------------------------------------------------------------------- /vendor/filament/forms/src/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/filament/forms/src/Get.php -------------------------------------------------------------------------------- /vendor/filament/forms/src/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/filament/forms/src/Set.php -------------------------------------------------------------------------------- /vendor/filament/support/stubs/scaffolding/resources/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/filament/tables/.stubs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/filament/tables/.stubs.php -------------------------------------------------------------------------------- /vendor/filament/tables/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/filament/tables/composer.json -------------------------------------------------------------------------------- /vendor/filament/tables/dist/index.js: -------------------------------------------------------------------------------- 1 | (()=>{})(); 2 | -------------------------------------------------------------------------------- /vendor/filament/tables/resources/js/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/filament/tables/src/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/filament/tables/src/Table.php -------------------------------------------------------------------------------- /vendor/filp/whoops/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/filp/whoops/.mailmap -------------------------------------------------------------------------------- /vendor/filp/whoops/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/filp/whoops/LICENSE.md -------------------------------------------------------------------------------- /vendor/filp/whoops/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/filp/whoops/SECURITY.md -------------------------------------------------------------------------------- /vendor/filp/whoops/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/filp/whoops/composer.json -------------------------------------------------------------------------------- /vendor/fruitcake/php-cors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/fruitcake/php-cors/LICENSE -------------------------------------------------------------------------------- /vendor/fruitcake/php-cors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/fruitcake/php-cors/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/guzzlehttp/guzzle/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/guzzlehttp/guzzle/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/guzzlehttp/promises/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/guzzlehttp/promises/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/guzzlehttp/psr7/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/guzzlehttp/psr7/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/guzzlehttp/psr7/composer.json -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/guzzlehttp/psr7/src/Query.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/guzzlehttp/psr7/src/Uri.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/guzzlehttp/psr7/src/Utils.php -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: hamcrest 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /vendor/intervention/image/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/intervention/image/LICENSE -------------------------------------------------------------------------------- /vendor/jenssegers/agent/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/jenssegers/agent/LICENSE.md -------------------------------------------------------------------------------- /vendor/jenssegers/agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/jenssegers/agent/README.md -------------------------------------------------------------------------------- /vendor/laravel-lang/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel-lang/common/LICENSE -------------------------------------------------------------------------------- /vendor/laravel-lang/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel-lang/common/README.md -------------------------------------------------------------------------------- /vendor/laravel-lang/http-statuses/locales/pl/_excludes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "OK" 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/laravel-lang/lang/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel-lang/lang/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel-lang/lang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel-lang/lang/README.md -------------------------------------------------------------------------------- /vendor/laravel-lang/lang/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel-lang/lang/SECURITY.md -------------------------------------------------------------------------------- /vendor/laravel-lang/lang/locales/fil/_not_translatable.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Update :resource: :title" 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/laravel-lang/locales/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel-lang/locales/LICENSE -------------------------------------------------------------------------------- /vendor/laravel/breeze/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/breeze/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel/breeze/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/breeze/README.md -------------------------------------------------------------------------------- /vendor/laravel/breeze/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/breeze/composer.json -------------------------------------------------------------------------------- /vendor/laravel/breeze/stubs/inertia-react-ts/resources/js/types/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /vendor/laravel/breeze/stubs/inertia-vue-ts/resources/js/types/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/framework/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel/framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/framework/README.md -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/prompts/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/prompts/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel/prompts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/prompts/README.md -------------------------------------------------------------------------------- /vendor/laravel/prompts/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/prompts/composer.json -------------------------------------------------------------------------------- /vendor/laravel/prompts/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/prompts/phpunit.xml -------------------------------------------------------------------------------- /vendor/laravel/prompts/src/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/prompts/src/Key.php -------------------------------------------------------------------------------- /vendor/laravel/prompts/src/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/prompts/src/Note.php -------------------------------------------------------------------------------- /vendor/laravel/prompts/src/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/prompts/src/Table.php -------------------------------------------------------------------------------- /vendor/laravel/sail/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sail/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel/sail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sail/README.md -------------------------------------------------------------------------------- /vendor/laravel/sail/bin/sail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sail/bin/sail -------------------------------------------------------------------------------- /vendor/laravel/sail/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sail/composer.json -------------------------------------------------------------------------------- /vendor/laravel/sail/stubs/minio.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sail/stubs/minio.stub -------------------------------------------------------------------------------- /vendor/laravel/sail/stubs/mysql.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sail/stubs/mysql.stub -------------------------------------------------------------------------------- /vendor/laravel/sail/stubs/pgsql.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sail/stubs/pgsql.stub -------------------------------------------------------------------------------- /vendor/laravel/sail/stubs/redis.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sail/stubs/redis.stub -------------------------------------------------------------------------------- /vendor/laravel/sanctum/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sanctum/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel/sanctum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sanctum/README.md -------------------------------------------------------------------------------- /vendor/laravel/sanctum/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sanctum/UPGRADE.md -------------------------------------------------------------------------------- /vendor/laravel/sanctum/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sanctum/composer.json -------------------------------------------------------------------------------- /vendor/laravel/sanctum/src/Guard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/sanctum/src/Guard.php -------------------------------------------------------------------------------- /vendor/laravel/socialite/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/socialite/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel/socialite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/socialite/README.md -------------------------------------------------------------------------------- /vendor/laravel/tinker/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/tinker/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel/tinker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/tinker/README.md -------------------------------------------------------------------------------- /vendor/laravel/tinker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/laravel/tinker/composer.json -------------------------------------------------------------------------------- /vendor/league/commonmark/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/commonmark/LICENSE -------------------------------------------------------------------------------- /vendor/league/commonmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/commonmark/README.md -------------------------------------------------------------------------------- /vendor/league/config/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/config/LICENSE.md -------------------------------------------------------------------------------- /vendor/league/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/config/README.md -------------------------------------------------------------------------------- /vendor/league/config/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/config/composer.json -------------------------------------------------------------------------------- /vendor/league/flysystem-ftp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/flysystem-ftp/LICENSE -------------------------------------------------------------------------------- /vendor/league/flysystem/INFO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/flysystem/INFO.md -------------------------------------------------------------------------------- /vendor/league/flysystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/flysystem/LICENSE -------------------------------------------------------------------------------- /vendor/league/flysystem/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/flysystem/readme.md -------------------------------------------------------------------------------- /vendor/league/glide/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/glide/LICENSE -------------------------------------------------------------------------------- /vendor/league/glide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/glide/README.md -------------------------------------------------------------------------------- /vendor/league/glide/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/glide/composer.json -------------------------------------------------------------------------------- /vendor/league/glide/src/Api/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/glide/src/Api/Api.php -------------------------------------------------------------------------------- /vendor/league/glide/src/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/glide/src/Server.php -------------------------------------------------------------------------------- /vendor/league/oauth1-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/oauth1-client/LICENSE -------------------------------------------------------------------------------- /vendor/league/oauth1-client/tests/test_rsa_invalidkey.pem: -------------------------------------------------------------------------------- 1 | not a valid RSA key -------------------------------------------------------------------------------- /vendor/league/uri-interfaces/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/uri-interfaces/LICENSE -------------------------------------------------------------------------------- /vendor/league/uri/BaseUri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/uri/BaseUri.php -------------------------------------------------------------------------------- /vendor/league/uri/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/uri/Http.php -------------------------------------------------------------------------------- /vendor/league/uri/HttpFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/uri/HttpFactory.php -------------------------------------------------------------------------------- /vendor/league/uri/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/uri/LICENSE -------------------------------------------------------------------------------- /vendor/league/uri/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/uri/Uri.php -------------------------------------------------------------------------------- /vendor/league/uri/UriInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/uri/UriInfo.php -------------------------------------------------------------------------------- /vendor/league/uri/UriResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/uri/UriResolver.php -------------------------------------------------------------------------------- /vendor/league/uri/UriTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/uri/UriTemplate.php -------------------------------------------------------------------------------- /vendor/league/uri/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/league/uri/composer.json -------------------------------------------------------------------------------- /vendor/livewire/livewire/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/livewire/livewire/LICENSE.md -------------------------------------------------------------------------------- /vendor/livewire/livewire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/livewire/livewire/README.md -------------------------------------------------------------------------------- /vendor/livewire/livewire/dist/manifest.json: -------------------------------------------------------------------------------- 1 | 2 | {"/livewire.js":"c4077c56"} 3 | -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/.tool-versions: -------------------------------------------------------------------------------- 1 | php 8.2.5 2 | -------------------------------------------------------------------------------- /vendor/masterminds/html5/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/masterminds/html5/CREDITS -------------------------------------------------------------------------------- /vendor/masterminds/html5/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/masterminds/html5/LICENSE.txt -------------------------------------------------------------------------------- /vendor/masterminds/html5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/masterminds/html5/README.md -------------------------------------------------------------------------------- /vendor/masterminds/html5/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/masterminds/html5/RELEASE.md -------------------------------------------------------------------------------- /vendor/maximebf/debugbar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/maximebf/debugbar/LICENSE -------------------------------------------------------------------------------- /vendor/mews/purifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/mews/purifier/LICENSE -------------------------------------------------------------------------------- /vendor/mews/purifier/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/mews/purifier/composer.json -------------------------------------------------------------------------------- /vendor/mews/purifier/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/mews/purifier/phpunit.xml -------------------------------------------------------------------------------- /vendor/mews/purifier/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/mews/purifier/src/helpers.php -------------------------------------------------------------------------------- /vendor/mobiledetect/mobiledetectlib/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/wireui/wireui/ts/global/index.ts: -------------------------------------------------------------------------------- 1 | import './modal' 2 | -------------------------------------------------------------------------------- /vendor/wireui/wireui/ts/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/wireui/wireui/ts/hooks.ts -------------------------------------------------------------------------------- /vendor/wireui/wireui/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/wireui/wireui/ts/index.ts -------------------------------------------------------------------------------- /vendor/wireui/wireui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/wireui/wireui/tsconfig.json -------------------------------------------------------------------------------- /vendor/wireui/wireui/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/wireui/wireui/webpack.mix.js -------------------------------------------------------------------------------- /vendor/wireui/wireui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vendor/wireui/wireui/yarn.lock -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bianity/blogging-platform/HEAD/vite.config.js --------------------------------------------------------------------------------