├── .editorconfig ├── .env.example ├── .env.travis ├── .gitattributes ├── .gitcommit ├── .github ├── ISSUE_TEMPLATE │ └── general_help_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── lint-php.yml │ ├── test-pgsql.yml │ └── test.yml ├── .gitignore ├── .htaccess ├── .travis.yml ├── LICENSE ├── Modules └── .gitkeep ├── README.md ├── SECURITY.md ├── app ├── ActivityLog.php ├── Attachment.php ├── Broadcasting │ └── Broadcasters │ │ └── PolycastBroadcaster.php ├── Channels │ └── RealtimeBroadcastChannel.php ├── Console │ ├── Commands │ │ ├── AfterAppUpdate.php │ │ ├── Build.php │ │ ├── CheckConvViewers.php │ │ ├── CheckRequirements.php │ │ ├── CleanNotificationsTable.php │ │ ├── CleanSendLog.php │ │ ├── CleanTmp.php │ │ ├── ClearCache.php │ │ ├── CreateUser.php │ │ ├── FetchEmails.php │ │ ├── FetchMonitor.php │ │ ├── GenerateVars.php │ │ ├── LogoutUsers.php │ │ ├── LogsMonitor.php │ │ ├── ModuleBuild.php │ │ ├── ModuleCheckLicenses.php │ │ ├── ModuleInstall.php │ │ ├── ModuleLaroute.php │ │ ├── ModuleUpdate.php │ │ ├── ParseEml.php │ │ ├── SendMonitor.php │ │ ├── Update.php │ │ └── UpdateFolderCounters.php │ └── Kernel.php ├── Conversation.php ├── ConversationFolder.php ├── Customer.php ├── CustomerChannel.php ├── Email.php ├── Events │ ├── ConversationCustomerChanged.php │ ├── ConversationStatusChanged.php │ ├── ConversationUserChanged.php │ ├── CustomerCreatedConversation.php │ ├── CustomerReplied.php │ ├── RealtimeBroadcastNotificationCreated.php │ ├── RealtimeChat.php │ ├── RealtimeConvNewThread.php │ ├── RealtimeConvView.php │ ├── RealtimeConvViewFinish.php │ ├── RealtimeMailboxNewThread.php │ ├── UserAddedNote.php │ ├── UserCreatedConversation.php │ ├── UserCreatedConversationDraft.php │ ├── UserCreatedThreadDraft.php │ ├── UserDeleted.php │ └── UserReplied.php ├── Exceptions │ └── Handler.php ├── FailedJob.php ├── Folder.php ├── Follower.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── Controller.php │ │ ├── ConversationsController.php │ │ ├── CustomersController.php │ │ ├── MailboxesController.php │ │ ├── ModulesController.php │ │ ├── OpenController.php │ │ ├── SecureController.php │ │ ├── SettingsController.php │ │ ├── SystemController.php │ │ ├── TranslateController.php │ │ └── UsersController.php │ ├── Kernel.php │ └── Middleware │ │ ├── CheckRole.php │ │ ├── CustomHandle.php │ │ ├── EncryptCookies.php │ │ ├── FrameGuard.php │ │ ├── HttpsRedirect.php │ │ ├── Localize.php │ │ ├── LogoutIfDeleted.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── ResponseHeaders.php │ │ ├── TerminateHandler.php │ │ ├── TokenAuth.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Job.php ├── Jobs │ ├── RestartQueueWorker.php │ ├── SendAlert.php │ ├── SendAutoReply.php │ ├── SendEmailReplyError.php │ ├── SendNotificationToUsers.php │ ├── SendReplyToCustomer.php │ ├── TriggerAction.php │ └── UpdateFolderCounters.php ├── Listeners │ ├── ActivateUser.php │ ├── LogFailedLogin.php │ ├── LogLockout.php │ ├── LogPasswordReset.php │ ├── LogRegisteredUser.php │ ├── LogSuccessfulLogin.php │ ├── LogSuccessfulLogout.php │ ├── LogUserDeletion.php │ ├── ProcessSwiftMessage.php │ ├── RefreshConversations.php │ ├── RememberUserLocale.php │ ├── RestartSwiftMailer.php │ ├── SendAutoReply.php │ ├── SendNotificationToUsers.php │ ├── SendPasswordChanged.php │ ├── SendReplyToCustomer.php │ └── UpdateMailboxCounters.php ├── Mail │ ├── Alert.php │ ├── AutoReply.php │ ├── PasswordChanged.php │ ├── ReplyToCustomer.php │ ├── Test.php │ ├── UserEmailReplyError.php │ ├── UserInvite.php │ └── UserNotification.php ├── Mailbox.php ├── MailboxUser.php ├── Misc │ ├── ConversationActionButtons.php │ ├── Functions.php │ ├── Helper.php │ ├── Mail.php │ ├── SwiftGetSmtpQueueId.php │ └── WpApi.php ├── Module.php ├── Notifications │ ├── BroadcastNotification.php │ └── WebsiteNotification.php ├── Observers │ ├── AttachmentObserver.php │ ├── ConversationObserver.php │ ├── CustomerObserver.php │ ├── DatabaseNotificationObserver.php │ ├── EmailObserver.php │ ├── FollowerObserver.php │ ├── MailboxObserver.php │ ├── SendLogObserver.php │ ├── ThreadObserver.php │ └── UserObserver.php ├── Option.php ├── Policies │ ├── ConversationPolicy.php │ ├── FolderPolicy.php │ ├── MailboxPolicy.php │ ├── ThreadPolicy.php │ └── UserPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── PolycastServiceProvider.php │ └── RouteServiceProvider.php ├── SendLog.php ├── Sendmail.php ├── Subscription.php ├── Thread.php └── User.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── activitylog.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── imap.php ├── installer.php ├── laroute.php ├── mail.php ├── minify.config.php ├── modules.php ├── purifier.php ├── queue.php ├── self-update.php ├── services.php ├── session.php ├── subscriptions.php ├── translation-manager.php ├── trustedproxy.php └── view.php ├── database ├── .gitignore ├── factories │ ├── ConversationFactory.php │ ├── CustomerFactory.php │ ├── EmailFactory.php │ ├── FolderFactory.php │ ├── MailboxFactory.php │ ├── ThreadFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_04_02_193005_create_translations_table.php │ ├── 2018_06_10_000000_create_users_table.php │ ├── 2018_06_10_100000_create_password_resets_table.php │ ├── 2018_06_25_065719_create_mailboxes_table.php │ ├── 2018_06_29_041002_create_mailbox_user_table.php │ ├── 2018_07_07_071443_create_activity_logs_table.php │ ├── 2018_07_09_052314_create_emails_table.php │ ├── 2018_07_09_053559_create_customers_table.php │ ├── 2018_07_11_010333_create_conversations_table.php │ ├── 2018_07_11_074558_create_folders_table.php │ ├── 2018_07_11_081928_create_conversation_folder_table.php │ ├── 2018_07_12_003318_create_threads_table.php │ ├── 2018_07_30_153206_create_jobs_table.php │ ├── 2018_07_30_165237_create_failed_jobs_table.php │ ├── 2018_08_04_063414_create_attachments_table.php │ ├── 2018_08_05_045458_create_options_table.php │ ├── 2018_08_05_153518_create_subscriptions_table.php │ ├── 2018_08_06_114901_create_send_logs_table.php │ ├── 2018_09_05_024109_create_notifications_table.php │ ├── 2018_09_05_033609_create_polycast_events_table.php │ ├── 2018_11_04_113009_create_modules_table.php │ ├── 2018_11_13_143000_encrypt_mailbox_password.php │ ├── 2018_11_26_122617_add_locale_column_to_users_table.php │ ├── 2018_12_11_130728_add_status_column_to_users_table.php │ ├── 2018_12_15_151003_add_send_status_data_column_to_threads_table.php │ ├── 2019_06_16_124000_add_in_validate_cert_column_to_mailboxes_table.php │ ├── 2019_06_21_130200_add_meta_subtype_columns_to_threads_table.php │ ├── 2019_06_25_105200_change_status_message_column_in_send_logs_table.php │ ├── 2019_07_05_370100_add_in_imap_folders_column_to_mailboxes_table.php │ ├── 2019_10_06_123000_add_auto_bcc_column_to_mailboxes_table.php │ ├── 2019_12_10_0856000_add_before_reply_column_to_mailboxes_table.php │ ├── 2019_12_19_183015_add_meta_column_to_folders_table.php │ ├── 2019_12_22_111025_change_passwords_types_in_mailboxes_table.php │ ├── 2019_12_24_155120_create_followers_table.php │ ├── 2020_02_06_103815_add_hide_column_to_mailbox_user_table.php │ ├── 2020_02_16_121001_add_mute_column_to_mailbox_user_table.php │ ├── 2020_03_06_100100_add_public_column_to_attachments_table.php │ ├── 2020_03_29_095201_update_in_imap_folders_in_mailboxes_table.php │ ├── 2020_04_16_122803_add_imap_sent_folder_column_to_mailboxes_table.php │ ├── 2020_05_28_095100_drop_slug_column_in_mailboxes_table.php │ ├── 2020_06_26_080258_add_email_history_column_to_conversations_table.php │ ├── 2020_09_18_123314_add_access_column_to_mailbox_user_table.php │ ├── 2020_09_20_010000_drop_email_history_column_in_conversations_table.php │ ├── 2020_11_04_140000_change_foreign_keys_types.php │ ├── 2020_11_19_070000_update_customers_table.php │ ├── 2020_12_22_070000_move_user_permissions_to_env.php │ ├── 2020_12_22_080000_add_permissions_column_to_users_table.php │ ├── 2020_12_30_010000_add_imported_column_to_threads_table.php │ ├── 2021_02_06_010101_add_meta_column_to_mailboxes_table.php │ ├── 2021_02_09_010101_add_hash_column_to_ltm_translations_table.php │ ├── 2021_02_17_010101_change_string_columns_in_mailboxes_table.php │ ├── 2021_03_01_010101_add_channel_column_to_conversations_table.php │ ├── 2021_03_01_010101_add_channel_columns_to_customers_table.php │ ├── 2021_04_15_010101_add_meta_column_to_customers_table.php │ ├── 2021_05_21_090000_encrypt_mailbox_out_password.php │ ├── 2021_05_21_105200_encrypt_mail_password.php │ ├── 2021_09_21_010101_add_indexes_to_conversations_table.php │ ├── 2021_11_30_010101_remove_unique_index_in_folders_table.php │ ├── 2021_12_25_010101_change_emails_column_in_users_table.php │ ├── 2022_12_17_010101_add_meta_column_to_conversations_table.php │ ├── 2022_12_18_010101_set_user_type_field.php │ ├── 2022_12_25_010101_set_numeric_phones_in_customers_table.php │ ├── 2023_01_14_010101_change_deleted_folder_index.php │ ├── 2023_05_09_010101_add_aliases_reply_column_to_mailboxes_table.php │ ├── 2023_08_19_010101_create_customer_channel_table.php │ ├── 2023_08_19_020202_populate_customer_channel_table.php │ ├── 2023_08_29_010101_add_id_column_to_customer_channel_table.php │ ├── 2023_09_05_010101_add_smtp_queue_id_column_to_send_logs_table.php │ ├── 2023_11_14_010101_change_aliases_column_in_mailboxes_table.php │ ├── 2024_06_18_010101_add_index_to_threads_table.php │ ├── 2025_01_30_010101_change_imap_sent_folder_column_in_mailboxes_table.php │ ├── 2025_09_06_010101_add_index_to_conversations_table.php │ └── 2025_10_06_000000_change_out_username_type_in_mailboxes_table.php └── seeds │ ├── CustomersTableSeeder.php │ ├── DatabaseSeeder.php │ ├── MailboxesTableSeeder.php │ └── UsersTableSeeder.php ├── overrides ├── axn │ └── laravel-laroute │ │ └── src │ │ └── Routes │ │ └── Collection.php ├── barryvdh │ ├── laravel-debugbar │ │ └── src │ │ │ ├── DataCollector │ │ │ └── QueryCollector.php │ │ │ ├── DataFormatter │ │ │ └── QueryFormatter.php │ │ │ └── JavascriptRenderer.php │ └── laravel-translation-manager │ │ └── src │ │ ├── Controller.php │ │ └── Manager.php ├── chumper │ └── zipper │ │ └── src │ │ └── Chumper │ │ └── Zipper │ │ ├── Repositories │ │ └── ZipRepository.php │ │ └── Zipper.php ├── codedge │ └── laravel-selfupdater │ │ └── src │ │ ├── AbstractRepositoryType.php │ │ └── SourceRepositoryTypes │ │ └── GithubRepositoryType.php ├── devfactory │ └── minify │ │ └── src │ │ └── Providers │ │ └── BaseProvider.php ├── doctrine │ └── dbal │ │ └── lib │ │ └── Doctrine │ │ └── DBAL │ │ ├── Driver │ │ ├── PDOConnection.php │ │ ├── PDOQueryImplementation.php │ │ ├── PDOStatement.php │ │ └── PDOStatementImplementations.php │ │ ├── Platforms │ │ └── PostgreSqlPlatform.php │ │ └── Schema │ │ └── PostgreSqlSchemaManager.php ├── ezyang │ └── htmlpurifier │ │ └── library │ │ └── HTMLPurifier │ │ ├── AttrDef │ │ └── URI │ │ │ └── Host.php │ │ ├── AttrTransform │ │ └── NameSync.php │ │ ├── AttrValidator.php │ │ ├── ChildDef │ │ └── List.php │ │ ├── Encoder.php │ │ ├── Length.php │ │ ├── Lexer.php │ │ └── Lexer │ │ └── DOMLex.php ├── filp │ └── whoops │ │ └── src │ │ └── Whoops │ │ ├── Handler │ │ └── PrettyPageHandler.php │ │ ├── Run.php │ │ └── Util │ │ └── TemplateHelper.php ├── fzaninotto │ └── faker │ │ └── src │ │ └── Faker │ │ └── Provider │ │ └── Base.php ├── guzzlehttp │ ├── guzzle │ │ └── src │ │ │ ├── Client.php │ │ │ ├── Cookie │ │ │ └── CookieJar.php │ │ │ ├── Handler │ │ │ ├── CurlMultiHandler.php │ │ │ └── StreamHandler.php │ │ │ ├── HandlerStack.php │ │ │ └── Middleware.php │ ├── promises │ │ └── src │ │ │ ├── FulfilledPromise.php │ │ │ ├── Promise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── RejectedPromise.php │ │ │ ├── Utils.php │ │ │ └── functions.php │ └── psr7 │ │ └── src │ │ ├── LazyOpenStream.php │ │ └── Uri.php ├── javoscript │ └── laravel-macroable-models │ │ └── src │ │ └── MacroableModels.php ├── laravel │ └── framework │ │ └── src │ │ └── Illuminate │ │ ├── Auth │ │ ├── Access │ │ │ └── Gate.php │ │ ├── Events │ │ │ └── Validated.php │ │ ├── Middleware │ │ │ └── Authenticate.php │ │ └── SessionGuard.php │ │ ├── Broadcasting │ │ ├── BroadcastManager.php │ │ └── Broadcasters │ │ │ └── Broadcaster.php │ │ ├── Bus │ │ └── Dispatcher.php │ │ ├── Cache │ │ ├── Console │ │ │ └── ClearCommand.php │ │ └── Repository.php │ │ ├── Config │ │ └── Repository.php │ │ ├── Console │ │ └── Application.php │ │ ├── Container │ │ ├── BoundMethod.php │ │ └── Container.php │ │ ├── Contracts │ │ └── Container │ │ │ └── Container.php │ │ ├── Cookie │ │ ├── CookieValuePrefix.php │ │ └── Middleware │ │ │ └── EncryptCookies.php │ │ ├── Database │ │ ├── DetectsLostConnections.php │ │ ├── Eloquent │ │ │ ├── Builder.php │ │ │ ├── Concerns │ │ │ │ ├── GuardsAttributes.php │ │ │ │ ├── HasGlobalScopes.php │ │ │ │ └── QueriesRelationships.php │ │ │ ├── Factory.php │ │ │ ├── Model.php │ │ │ └── Relations │ │ │ │ └── Relation.php │ │ ├── Query │ │ │ └── Builder.php │ │ └── Schema │ │ │ ├── Blueprint.php │ │ │ └── Builder.php │ │ ├── Events │ │ └── Dispatcher.php │ │ ├── Filesystem │ │ └── Filesystem.php │ │ ├── Foundation │ │ ├── Application.php │ │ ├── Bootstrap │ │ │ └── HandleExceptions.php │ │ ├── Http │ │ │ └── Middleware │ │ │ │ └── VerifyCsrfToken.php │ │ ├── PackageManifest.php │ │ ├── ProviderRepository.php │ │ ├── Testing │ │ │ └── TestCase.php │ │ └── Validation │ │ │ └── ValidatesRequests.php │ │ ├── Http │ │ ├── RedirectResponse.php │ │ └── Request.php │ │ ├── Log │ │ └── Writer.php │ │ ├── Mail │ │ ├── Mailer.php │ │ └── TransportManager.php │ │ ├── Notifications │ │ ├── ChannelManager.php │ │ ├── NotificationSender.php │ │ ├── RoutesNotifications.php │ │ └── SendQueuedNotifications.php │ │ ├── Pagination │ │ ├── AbstractPaginator.php │ │ ├── LengthAwarePaginator.php │ │ └── Paginator.php │ │ ├── Pipeline │ │ └── Pipeline.php │ │ ├── Queue │ │ └── Listener.php │ │ ├── Routing │ │ ├── Controller.php │ │ ├── RouteCollection.php │ │ ├── RouteDependencyResolverTrait.php │ │ ├── RouteSignatureParameters.php │ │ ├── Router.php │ │ └── UrlGenerator.php │ │ ├── Session │ │ ├── FileSessionHandler.php │ │ └── Middleware │ │ │ └── StartSession.php │ │ ├── Support │ │ ├── Arr.php │ │ ├── Carbon.php │ │ ├── Collection.php │ │ ├── Fluent.php │ │ ├── MessageBag.php │ │ ├── Optional.php │ │ ├── Str.php │ │ ├── ViewErrorBag.php │ │ └── helpers.php │ │ ├── Validation │ │ ├── Concerns │ │ │ ├── FormatsMessages.php │ │ │ └── ValidatesAttributes.php │ │ ├── Factory.php │ │ └── ValidationRuleParser.php │ │ └── View │ │ ├── Compilers │ │ ├── Compiler.php │ │ └── Concerns │ │ │ └── CompilesLayouts.php │ │ ├── Concerns │ │ └── ManagesLayouts.php │ │ ├── FileViewFinder.php │ │ └── View.php ├── league │ └── flysystem │ │ └── src │ │ ├── FileNotFoundException.php │ │ ├── Filesystem.php │ │ └── FilesystemInterface.php ├── lord │ └── laroute │ │ └── src │ │ └── Routes │ │ └── Collection.php ├── maximebf │ └── debugbar │ │ └── src │ │ └── DebugBar │ │ ├── DataCollector │ │ └── PDO │ │ │ └── PDOCollector.php │ │ ├── DataFormatter │ │ └── DataFormatter.php │ │ ├── DebugBar.php │ │ └── JavascriptRenderer.php ├── mews │ └── purifier │ │ └── src │ │ └── Purifier.php ├── mtdowling │ └── cron-expression │ │ └── src │ │ └── Cron │ │ └── CronExpression.php ├── natxet │ └── cssmin │ │ └── src │ │ └── CssMin.php ├── nesbot │ └── carbon │ │ └── src │ │ └── Carbon │ │ ├── Carbon.php │ │ └── Translator.php ├── nwidart │ └── laravel-modules │ │ └── src │ │ ├── Commands │ │ └── stubs │ │ │ ├── command.stub │ │ │ ├── composer.stub │ │ │ ├── controller-plain.stub │ │ │ ├── controller.stub │ │ │ ├── event.stub │ │ │ ├── factory.stub │ │ │ ├── job-queued.stub │ │ │ ├── job.stub │ │ │ ├── json.stub │ │ │ ├── listener-duck.stub │ │ │ ├── listener-queued-duck.stub │ │ │ ├── listener-queued.stub │ │ │ ├── listener.stub │ │ │ ├── mail.stub │ │ │ ├── middleware.stub │ │ │ ├── migration │ │ │ ├── add.stub │ │ │ ├── create.stub │ │ │ ├── delete.stub │ │ │ ├── drop.stub │ │ │ └── plain.stub │ │ │ ├── model.stub │ │ │ ├── notification.stub │ │ │ ├── policy.plain.stub │ │ │ ├── provider.stub │ │ │ ├── request.stub │ │ │ ├── resource-collection.stub │ │ │ ├── resource.stub │ │ │ ├── route-provider.stub │ │ │ ├── routes.stub │ │ │ ├── rule.stub │ │ │ ├── scaffold │ │ │ ├── config.stub │ │ │ └── provider.stub │ │ │ ├── seeder.stub │ │ │ ├── start.stub │ │ │ ├── unit-test.stub │ │ │ └── views │ │ │ ├── index.stub │ │ │ └── master.stub │ │ ├── Json.php │ │ ├── Module.php │ │ └── Repository.php ├── psy │ └── psysh │ │ └── src │ │ ├── CodeCleaner.php │ │ ├── Command │ │ ├── Command.php │ │ ├── ListCommand.php │ │ ├── ListCommand │ │ │ ├── ClassConstantEnumerator.php │ │ │ ├── ClassEnumerator.php │ │ │ ├── ConstantEnumerator.php │ │ │ ├── Enumerator.php │ │ │ └── FunctionEnumerator.php │ │ └── TimeitCommand │ │ │ └── TimeitVisitor.php │ │ ├── Exception │ │ ├── BreakException.php │ │ └── ErrorException.php │ │ ├── Input │ │ ├── FilterOptions.php │ │ └── ShellInput.php │ │ ├── Output │ │ └── ShellOutput.php │ │ ├── Shell.php │ │ ├── VarDumper │ │ └── Dumper.php │ │ └── functions.php ├── rachidlaasri │ └── laravel-installer │ │ └── src │ │ ├── Controllers │ │ ├── EnvironmentController.php │ │ └── FinalController.php │ │ ├── Events │ │ └── EnvironmentSaved.php │ │ ├── Helpers │ │ ├── DatabaseManager.php │ │ ├── EnvironmentManager.php │ │ ├── FinalInstallManager.php │ │ ├── InstalledFileManager.php │ │ ├── PermissionsChecker.php │ │ └── RequirementsChecker.php │ │ ├── Middleware │ │ └── canInstall.php │ │ ├── Providers │ │ └── LaravelInstallerServiceProvider.php │ │ └── Routes │ │ └── web.php ├── ramsey │ └── uuid │ │ └── src │ │ ├── Uuid.php │ │ └── UuidFactory.php ├── rap2hpoutre │ └── laravel-log-viewer │ │ └── src │ │ └── Rap2hpoutre │ │ └── LaravelLogViewer │ │ ├── LaravelLogViewer.php │ │ └── LogViewerController.php ├── spatie │ ├── laravel-activitylog │ │ └── src │ │ │ └── helpers.php │ └── string │ │ └── src │ │ └── Str.php ├── swiftmailer │ └── swiftmailer │ │ └── lib │ │ └── classes │ │ └── Swift │ │ ├── Attachment.php │ │ ├── EmbeddedFile.php │ │ ├── Encoder │ │ └── QpEncoder.php │ │ ├── IoException.php │ │ ├── KeyCache.php │ │ ├── KeyCache │ │ ├── DiskKeyCache.php │ │ └── SimpleKeyCacheInputStream.php │ │ ├── MailTransport.php │ │ ├── Message.php │ │ ├── Mime │ │ ├── ContentEncoder │ │ │ ├── Base64ContentEncoder.php │ │ │ └── QpContentEncoder.php │ │ ├── Headers │ │ │ ├── AbstractHeader.php │ │ │ ├── IdentificationHeader.php │ │ │ ├── MailboxHeader.php │ │ │ └── ParameterizedHeader.php │ │ ├── MimePart.php │ │ ├── SimpleHeaderFactory.php │ │ └── SimpleHeaderSet.php │ │ ├── MimePart.php │ │ ├── SendmailTransport.php │ │ ├── SmtpTransport.php │ │ ├── SwiftException.php │ │ ├── Transport │ │ ├── AbstractSmtpTransport.php │ │ ├── Esmtp │ │ │ └── AuthHandler.php │ │ ├── EsmtpTransport.php │ │ ├── MailInvoker.php │ │ ├── MailTransport.php │ │ ├── SimpleMailInvoker.php │ │ └── StreamBuffer.php │ │ └── TransportException.php ├── symfony │ ├── console │ │ ├── Application.php │ │ ├── Command │ │ │ └── Command.php │ │ ├── Descriptor │ │ │ └── TextDescriptor.php │ │ ├── Exception │ │ │ └── CommandNotFoundException.php │ │ ├── Formatter │ │ │ └── OutputFormatterStyleStack.php │ │ ├── Helper │ │ │ ├── Helper.php │ │ │ ├── HelperInterface.php │ │ │ ├── HelperSet.php │ │ │ ├── ProcessHelper.php │ │ │ └── Table.php │ │ ├── Input │ │ │ ├── ArgvInput.php │ │ │ ├── ArrayInput.php │ │ │ ├── Input.php │ │ │ └── StringInput.php │ │ ├── Output │ │ │ ├── ConsoleOutput.php │ │ │ ├── Output.php │ │ │ └── StreamOutput.php │ │ └── Question │ │ │ └── Question.php │ ├── css-selector │ │ └── XPath │ │ │ └── Extension │ │ │ └── NodeExtension.php │ ├── debug │ │ ├── Exception │ │ │ └── FatalErrorException.php │ │ └── ExceptionHandler.php │ ├── finder │ │ ├── Finder.php │ │ └── Iterator │ │ │ ├── DateRangeFilterIterator.php │ │ │ ├── DepthRangeFilterIterator.php │ │ │ ├── ExcludeDirectoryFilterIterator.php │ │ │ ├── FileTypeFilterIterator.php │ │ │ ├── FilenameFilterIterator.php │ │ │ ├── FilterIterator.php │ │ │ ├── PathFilterIterator.php │ │ │ ├── RecursiveDirectoryIterator.php │ │ │ └── SortableIterator.php │ ├── http-foundation │ │ ├── AcceptHeader.php │ │ ├── Cookie.php │ │ ├── File │ │ │ └── MimeType │ │ │ │ └── FileBinaryMimeTypeGuesser.php │ │ ├── FileBag.php │ │ ├── HeaderBag.php │ │ ├── ParameterBag.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── ResponseHeaderBag.php │ │ └── StreamedResponse.php │ ├── http-kernel │ │ ├── Exception │ │ │ ├── AccessDeniedHttpException.php │ │ │ ├── HttpException.php │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ ├── NotFoundHttpException.php │ │ │ ├── ServiceUnavailableHttpException.php │ │ │ └── UnauthorizedHttpException.php │ │ ├── HttpCache │ │ │ └── Store.php │ │ └── UriSigner.php │ ├── process │ │ └── Process.php │ ├── routing │ │ ├── CompiledRoute.php │ │ └── Route.php │ ├── translation │ │ ├── Formatter │ │ │ └── MessageFormatter.php │ │ ├── Loader │ │ │ └── ArrayLoader.php │ │ └── Translator.php │ └── var-dumper │ │ ├── Cloner │ │ ├── AbstractCloner.php │ │ ├── Data.php │ │ └── Stub.php │ │ └── Dumper │ │ └── HtmlDumper.php ├── tormjens │ └── eventy │ │ └── src │ │ ├── Action.php │ │ ├── Event.php │ │ └── Filter.php ├── vlucas │ └── phpdotenv │ │ └── src │ │ └── Loader.php └── webklex │ └── php-imap │ └── src │ ├── Attachment.php │ ├── Client.php │ ├── ClientManager.php │ ├── Connection │ └── Protocols │ │ ├── ImapProtocol.php │ │ ├── LegacyProtocol.php │ │ └── PopProtocol.php │ ├── EncodingAliases.php │ ├── Folder.php │ ├── Header.php │ ├── Message.php │ ├── Part.php │ ├── Query │ ├── Query.php │ └── WhereQuery.php │ ├── Structure.php │ └── config │ └── imap.php ├── package.json ├── phpcs.xml ├── phpunit.xml ├── public ├── .htaccess ├── android-chrome-192x192.png ├── android-chrome-256x256.png ├── apple-touch-icon.png ├── browserconfig.xml ├── css │ ├── bootstrap-rtl.css │ ├── bootstrap.css │ ├── builds │ │ └── .htaccess │ ├── fonts.css │ ├── magic-check.css │ ├── select2 │ │ ├── select2.css │ │ └── select2.min.css │ ├── style-rtl.css │ └── style.css ├── favicon.gif ├── favicon.ico ├── favicon.png ├── fonts │ ├── glyphicons │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── liberation-sans │ │ ├── LiberationSans-Bold-webfont.eot │ │ ├── LiberationSans-Bold-webfont.svg │ │ ├── LiberationSans-Bold-webfont.ttf │ │ ├── LiberationSans-Bold-webfont.woff │ │ ├── LiberationSans-BoldItalic-webfont.eot │ │ ├── LiberationSans-BoldItalic-webfont.svg │ │ ├── LiberationSans-BoldItalic-webfont.ttf │ │ ├── LiberationSans-BoldItalic-webfont.woff │ │ ├── LiberationSans-Italic-webfont.eot │ │ ├── LiberationSans-Italic-webfont.svg │ │ ├── LiberationSans-Italic-webfont.ttf │ │ ├── LiberationSans-Italic-webfont.woff │ │ ├── LiberationSans-Regular-webfont.eot │ │ ├── LiberationSans-Regular-webfont.svg │ │ ├── LiberationSans-Regular-webfont.ttf │ │ └── LiberationSans-Regular-webfont.woff │ └── yekan │ │ ├── Yekan.eot │ │ ├── Yekan.otf │ │ ├── Yekan.ttf │ │ ├── Yekan.woff │ │ └── Yekan.woff2 ├── img │ ├── banner.png │ ├── default-avatar.png │ ├── default-module.png │ ├── enable-push.png │ ├── loader-grey.gif │ ├── loader-main.gif │ ├── loader-tiny.gif │ ├── logo-300.png │ ├── logo-600.png │ ├── logo-brand.svg │ ├── logo-icon-150.png │ └── logo-icon-white-300.png ├── index.php ├── install.php ├── installer │ ├── css │ │ ├── fontawesome.css │ │ ├── style.css │ │ ├── style.css.map │ │ ├── style.min.css │ │ └── style.min.css.map │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ └── img │ │ └── pattern.png ├── js │ ├── bootstrap.js │ ├── bootstrap3-editable │ │ ├── css │ │ │ └── bootstrap-editable.css │ │ ├── img │ │ │ ├── clear.png │ │ │ └── loading.gif │ │ └── js │ │ │ ├── bootstrap-editable.js │ │ │ └── bootstrap-editable.min.js │ ├── builds │ │ └── .htaccess │ ├── datatables │ │ ├── datatables.css │ │ ├── datatables.js │ │ ├── datatables.min.css │ │ └── datatables.min.js │ ├── featherlight │ │ ├── featherlight.gallery.min.css │ │ ├── featherlight.gallery.min.js │ │ ├── featherlight.min.css │ │ └── featherlight.min.js │ ├── flatpickr │ │ ├── flatpickr.css │ │ ├── flatpickr.js │ │ ├── flatpickr.min.css │ │ ├── flatpickr.min.js │ │ ├── ie.css │ │ ├── l10n │ │ │ ├── ar.js │ │ │ ├── at.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── cat.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── default.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr.js │ │ │ ├── ga.js │ │ │ ├── gr.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── kz.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── my.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pa.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt-pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyr.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vn.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ └── plugins │ │ │ ├── confirmDate.css │ │ │ ├── confirmDate.js │ │ │ ├── labelPlugin.js │ │ │ ├── minMaxTimePlugin.js │ │ │ ├── rangePlugin.js │ │ │ ├── scrollPlugin.js │ │ │ ├── style.css │ │ │ └── weekSelect.js │ ├── html5sortable.js │ ├── jquery.js │ ├── jquery.titlealert.js │ ├── lang.js │ ├── laroute.js │ ├── main.js │ ├── parsley │ │ ├── i18n │ │ │ ├── al.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.extra.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.extra.js │ │ │ ├── de.js │ │ │ ├── el.extra.js │ │ │ ├── el.js │ │ │ ├── en.extra.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.extra.js │ │ │ ├── fi.js │ │ │ ├── fr.extra.js │ │ │ ├── fr.js │ │ │ ├── he.extra.js │ │ │ ├── he.js │ │ │ ├── hr.extra.js │ │ │ ├── hr.js │ │ │ ├── hu.extra.js │ │ │ ├── hu.js │ │ │ ├── id.extra.js │ │ │ ├── id.js │ │ │ ├── it.extra.js │ │ │ ├── it.js │ │ │ ├── ja.extra.js │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── kz.js │ │ │ ├── lt.extra.js │ │ │ ├── lt.js │ │ │ ├── lv.extra.js │ │ │ ├── lv.js │ │ │ ├── ms.extra.js │ │ │ ├── ms.js │ │ │ ├── nl.extra.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt-pt.js │ │ │ ├── ro.extra.js │ │ │ ├── ro.js │ │ │ ├── ru.extra.js │ │ │ ├── ru.js │ │ │ ├── sk.extra.js │ │ │ ├── sk.js │ │ │ ├── sl.extra.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr.extra.js │ │ │ ├── sr.js │ │ │ ├── sv.extra.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── ua.extra.js │ │ │ ├── ua.js │ │ │ ├── uk.extra.js │ │ │ ├── uk.js │ │ │ ├── zh-cn.extra.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── parsley.js │ │ ├── parsley.js.map │ │ ├── parsley.min.js │ │ └── parsley.min.js.map │ ├── polycast │ │ ├── polycast.js │ │ └── polycast.min.js │ ├── push │ │ ├── push.js │ │ ├── push.min.js │ │ └── serviceWorker.min.js │ ├── select2 │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ ├── select2.full.min.js │ │ ├── select2.js │ │ └── select2.min.js │ ├── summernote │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-el-GR.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-gl-ES.js │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-hr-HR.js │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-lt-LV.js │ │ │ ├── summernote-mn-MN.js │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-ta-IN.js │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-zh-CN.js │ │ │ └── summernote-zh-TW.js │ │ ├── plugin │ │ │ ├── databasic │ │ │ │ ├── summernote-ext-databasic.css │ │ │ │ └── summernote-ext-databasic.js │ │ │ ├── hello │ │ │ │ └── summernote-ext-hello.js │ │ │ └── specialchars │ │ │ │ └── summernote-ext-specialchars.js │ │ ├── summernote.css │ │ ├── summernote.js │ │ └── summernote.min.js │ └── taphold.js ├── modules │ └── .gitkeep ├── mstile-150x150.png ├── robots.txt ├── safari-pinned-tab.svg ├── site.webmanifest └── tools.php ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── components │ │ │ └── ExampleComponent.vue │ │ ├── laroute.js │ │ └── laroute_module.js │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ ├── ar.json │ ├── ar │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── validation-inline.php │ │ └── validation.php │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── de │ │ ├── auth.php │ │ ├── installer_messages.php │ │ ├── passwords.php │ │ └── validation.php │ ├── en │ │ ├── auth.php │ │ ├── installer_messages.php │ │ ├── passwords.php │ │ └── validation.php │ ├── es.json │ ├── fa.json │ ├── fa │ │ ├── auth.php │ │ ├── installer_messages.php │ │ ├── passwords.php │ │ └── validation.php │ ├── fi.json │ ├── fr.json │ ├── fr │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── he.json │ ├── he │ │ ├── auth.php │ │ ├── installer_messages.php │ │ ├── passwords.php │ │ └── validation.php │ ├── hr.json │ ├── hu.json │ ├── hu │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── validation-inline.php │ │ └── validation.php │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── ko │ │ ├── auth.php │ │ ├── installer_messages.php │ │ ├── passwords.php │ │ └── validation.php │ ├── kz.json │ ├── nl.json │ ├── nl │ │ ├── auth.php │ │ ├── installer_messages.php │ │ ├── passwords.php │ │ └── validation.php │ ├── no.json │ ├── pl.json │ ├── pt-BR.json │ ├── pt-BR │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── pt-PT.json │ ├── pt-PT │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── ro.json │ ├── ro │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── validation-inline.php │ │ └── validation.php │ ├── ru.json │ ├── sk.json │ ├── sl.json │ ├── sl │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── validation-inline.php │ │ └── validation.php │ ├── sv.json │ ├── tr.json │ ├── tr │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── validation-inline.php │ │ └── validation.php │ ├── uk.json │ ├── uk │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── validation-inline.php │ │ └── validation.php │ ├── zh-CN.json │ └── zh-CN │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── validation-inline.php │ │ └── validation.php └── views │ ├── auth │ ├── banner.blade.php │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── conversations │ ├── ajax_html │ │ ├── assignee_filter.blade.php │ │ ├── change_customer.blade.php │ │ ├── default_redirect.blade.php │ │ ├── merge_conv.blade.php │ │ ├── move_conv.blade.php │ │ ├── send_log.blade.php │ │ └── show_original.blade.php │ ├── chats.blade.php │ ├── conversations_pagination.blade.php │ ├── conversations_table.blade.php │ ├── create.blade.php │ ├── editor_bottom_toolbar.blade.php │ ├── partials │ │ ├── badges.blade.php │ │ ├── bulk_actions.blade.php │ │ ├── customer_sidebar.blade.php │ │ ├── edit_thread.blade.php │ │ ├── merge_search_result.blade.php │ │ ├── prev_convs_short.blade.php │ │ ├── settings_modal.blade.php │ │ ├── thread.blade.php │ │ ├── thread_attachments.blade.php │ │ └── threads.blade.php │ ├── search.blade.php │ ├── thread_by.blade.php │ └── view.blade.php │ ├── customers │ ├── conversations.blade.php │ ├── merge.blade.php │ ├── partials │ │ ├── customers_table.blade.php │ │ └── edit_form.blade.php │ ├── profile_menu.blade.php │ ├── profile_snippet.blade.php │ ├── profile_tabs.blade.php │ └── update.blade.php │ ├── emails │ ├── customer │ │ ├── auto_reply.blade.php │ │ ├── auto_reply_text.blade.php │ │ ├── reply_fancy.blade.php │ │ └── reply_fancy_text.blade.php │ └── user │ │ ├── _notification_thread_action.blade.php │ │ ├── alert.blade.php │ │ ├── email_reply_error.blade.php │ │ ├── layouts │ │ └── system.blade.php │ │ ├── notification.blade.php │ │ ├── notification_text.blade.php │ │ ├── password_changed.blade.php │ │ ├── password_changed_text.blade.php │ │ ├── test.blade.php │ │ ├── test_system.blade.php │ │ ├── thread_by.blade.php │ │ ├── user_invite.blade.php │ │ └── user_invite_text.blade.php │ ├── errors │ ├── 403.blade.php │ ├── 404.blade.php │ └── 500.blade.php │ ├── js │ └── vars.blade.php │ ├── layouts │ └── app.blade.php │ ├── mailboxes │ ├── auto_reply.blade.php │ ├── connection.blade.php │ ├── connection_incoming.blade.php │ ├── connection_menu.blade.php │ ├── create.blade.php │ ├── mailboxes.blade.php │ ├── partials │ │ ├── chat_list.blade.php │ │ ├── folders.blade.php │ │ └── mute_icon.blade.php │ ├── permissions.blade.php │ ├── settings_menu.blade.php │ ├── sidebar_menu.blade.php │ ├── sidebar_menu_view.blade.php │ ├── update.blade.php │ └── view.blade.php │ ├── modules │ ├── modules.blade.php │ ├── partials │ │ ├── invalid_symlinks.blade.php │ │ └── module_card.blade.php │ └── sidebar_menu.blade.php │ ├── open │ └── user_setup.blade.php │ ├── partials │ ├── calendar.blade.php │ ├── editor.blade.php │ ├── empty.blade.php │ ├── field_error.blade.php │ ├── flash_messages.blade.php │ ├── floating_flash_messages.blade.php │ ├── include_datepicker.blade.php │ ├── locale_options.blade.php │ ├── person_photo.blade.php │ ├── sidebar_menu_toggle.blade.php │ └── timezone_options.blade.php │ ├── secure │ ├── dashboard.blade.php │ └── logs.blade.php │ ├── settings │ ├── alerts.blade.php │ ├── emails.blade.php │ ├── general.blade.php │ └── view.blade.php │ ├── system │ ├── sidebar_menu.blade.php │ ├── status.blade.php │ └── tools.blade.php │ ├── users │ ├── create.blade.php │ ├── is_subscribed.blade.php │ ├── notifications.blade.php │ ├── partials │ │ └── web_notifications.blade.php │ ├── password.blade.php │ ├── permissions.blade.php │ ├── profile.blade.php │ ├── sidebar_menu.blade.php │ ├── subscriptions_table.blade.php │ └── users.blade.php │ └── vendor │ ├── installer │ ├── environment-classic.blade.php │ ├── environment-wizard.blade.php │ ├── environment.blade.php │ ├── finished.blade.php │ ├── layouts │ │ ├── master-update.blade.php │ │ └── master.blade.php │ ├── permissions.blade.php │ ├── requirements.blade.php │ ├── update │ │ ├── finished.blade.php │ │ ├── overview.blade.php │ │ └── welcome.blade.php │ └── welcome.blade.php │ ├── laravel-log-viewer │ └── log.blade.php │ ├── mail │ ├── html │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── promotion.blade.php │ │ ├── promotion │ │ │ └── button.blade.php │ │ ├── subcopy.blade.php │ │ ├── table.blade.php │ │ └── themes │ │ │ └── default.css │ └── markdown │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── promotion.blade.php │ │ ├── promotion │ │ └── button.blade.php │ │ ├── subcopy.blade.php │ │ └── table.blade.php │ ├── notifications │ └── email.blade.php │ └── translation-manager │ ├── .gitkeep │ ├── content.php │ ├── index.blade.php │ └── index.php ├── routes ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ ├── .gitignore │ │ └── .htaccess ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── .gitkeep ├── Fixtures │ └── FixtureWebklexMessage.php ├── Messages │ ├── issue-4567.eml │ ├── message-1.eml │ ├── message-1b.eml │ ├── message-1symbols.eml │ ├── message-2.eml │ └── message-3.eml ├── TestCase.php └── Unit │ ├── .keyfile │ ├── ConfigTest.php │ ├── MailVarsTest.php │ └── WebklexTest.php ├── tools ├── install.sh └── update.sh ├── vendor ├── anahkiasen │ └── underscore-php │ │ ├── .travis.yml │ │ ├── config │ │ └── config.php │ │ ├── helpers.php │ │ └── src │ │ ├── Dispatch.php │ │ ├── Method.php │ │ ├── Methods │ │ ├── ArraysMethods.php │ │ ├── CollectionMethods.php │ │ ├── FunctionsMethods.php │ │ ├── NumberMethods.php │ │ ├── ObjectMethods.php │ │ └── StringsMethods.php │ │ ├── Parse.php │ │ ├── Traits │ │ └── Repository.php │ │ ├── Types │ │ ├── Arrays.php │ │ ├── Functions.php │ │ ├── Number.php │ │ ├── Object.php │ │ └── Strings.php │ │ └── Underscore.php ├── autoload.php ├── axn │ └── laravel-laroute │ │ └── src │ │ └── ServiceProvider.php ├── barryvdh │ └── laravel-translation-manager │ │ ├── config │ │ └── translation-manager.php │ │ ├── database │ │ └── migrations │ │ │ ├── .gitkeep │ │ │ └── 2014_04_02_193005_create_translations_table.php │ │ ├── resources │ │ └── views │ │ │ ├── .gitkeep │ │ │ └── index.php │ │ └── src │ │ ├── Console │ │ ├── CleanCommand.php │ │ ├── ExportCommand.php │ │ ├── FindCommand.php │ │ ├── ImportCommand.php │ │ └── ResetCommand.php │ │ ├── Events │ │ └── TranslationsExportedEvent.php │ │ ├── ManagerServiceProvider.php │ │ ├── Models │ │ └── Translation.php │ │ ├── TranslationServiceProvider.php │ │ └── Translator.php ├── bin │ ├── doctrine-dbal │ ├── php-parse │ └── psysh ├── chumper │ └── zipper │ │ ├── .travis.yml │ │ └── src │ │ └── Chumper │ │ └── Zipper │ │ ├── Facades │ │ └── Zipper.php │ │ ├── Repositories │ │ └── RepositoryInterface.php │ │ └── ZipperServiceProvider.php ├── codedge │ └── laravel-selfupdater │ │ ├── .styleci.yml │ │ ├── .travis.yml │ │ ├── config │ │ └── self-update.php │ │ ├── resources │ │ └── views │ │ │ ├── mails │ │ │ └── update-available.blade.php │ │ │ └── self-update.blade.php │ │ └── src │ │ ├── AbstractRepositoryType.php │ │ ├── Commands │ │ └── CheckForUpdate.php │ │ ├── Contracts │ │ ├── SourceRepositoryTypeContract.php │ │ └── UpdaterContract.php │ │ ├── Events │ │ ├── HasWrongPermissions.php │ │ ├── UpdateAvailable.php │ │ ├── UpdateFailed.php │ │ └── UpdateSucceeded.php │ │ ├── Listeners │ │ ├── SendUpdateAvailableNotification.php │ │ └── SendUpdateSucceededNotification.php │ │ ├── SourceRepository.php │ │ ├── UpdaterFacade.php │ │ ├── UpdaterManager.php │ │ └── UpdaterServiceProvider.php ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ └── installed.php ├── devfactory │ └── minify │ │ ├── .travis.yml │ │ ├── spec │ │ └── Devfactory │ │ │ └── Minify │ │ │ └── Providers │ │ │ ├── JavaScriptSpec.php │ │ │ └── StyleSheetSpec.php │ │ └── src │ │ ├── Contracts │ │ └── MinifyInterface.php │ │ ├── Exceptions │ │ ├── CannotRemoveFileException.php │ │ ├── CannotSaveFileException.php │ │ ├── DirNotExistException.php │ │ ├── DirNotWritableException.php │ │ ├── FileNotExistException.php │ │ └── InvalidArgumentException.php │ │ ├── Facades │ │ └── MinifyFacade.php │ │ ├── Minify.php │ │ ├── MinifyServiceProvider.php │ │ ├── Providers │ │ ├── JavaScript.php │ │ └── StyleSheet.php │ │ └── config │ │ └── config.php ├── dnoegel │ └── php-xdg-base-dir │ │ └── src │ │ └── Xdg.php ├── doctrine │ ├── cache │ │ ├── .coveralls.yml │ │ ├── .travis.yml │ │ ├── build.properties │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Cache │ │ │ ├── ApcCache.php │ │ │ ├── ApcuCache.php │ │ │ ├── ArrayCache.php │ │ │ ├── Cache.php │ │ │ ├── CacheProvider.php │ │ │ ├── ChainCache.php │ │ │ ├── ClearableCache.php │ │ │ ├── CouchbaseCache.php │ │ │ ├── FileCache.php │ │ │ ├── FilesystemCache.php │ │ │ ├── FlushableCache.php │ │ │ ├── MemcacheCache.php │ │ │ ├── MemcachedCache.php │ │ │ ├── MongoDBCache.php │ │ │ ├── MultiGetCache.php │ │ │ ├── MultiPutCache.php │ │ │ ├── PhpFileCache.php │ │ │ ├── PredisCache.php │ │ │ ├── RedisCache.php │ │ │ ├── RiakCache.php │ │ │ ├── SQLite3Cache.php │ │ │ ├── Version.php │ │ │ ├── VoidCache.php │ │ │ ├── WinCacheCache.php │ │ │ ├── XcacheCache.php │ │ │ └── ZendDataCache.php │ ├── dbal │ │ ├── bin │ │ │ ├── doctrine-dbal │ │ │ └── doctrine-dbal.php │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── DBAL │ │ │ │ ├── Abstraction │ │ │ │ └── Result.php │ │ │ │ ├── Cache │ │ │ │ ├── ArrayStatement.php │ │ │ │ ├── CacheException.php │ │ │ │ ├── QueryCacheProfile.php │ │ │ │ └── ResultCacheStatement.php │ │ │ │ ├── ColumnCase.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── Connection.php │ │ │ │ ├── ConnectionException.php │ │ │ │ ├── Connections │ │ │ │ ├── MasterSlaveConnection.php │ │ │ │ └── PrimaryReadReplicaConnection.php │ │ │ │ ├── DBALException.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Driver │ │ │ │ ├── AbstractDB2Driver.php │ │ │ │ ├── AbstractDriverException.php │ │ │ │ ├── AbstractException.php │ │ │ │ ├── AbstractMySQLDriver.php │ │ │ │ ├── AbstractOracleDriver.php │ │ │ │ ├── AbstractOracleDriver │ │ │ │ │ └── EasyConnectString.php │ │ │ │ ├── AbstractPostgreSQLDriver.php │ │ │ │ ├── AbstractSQLAnywhereDriver.php │ │ │ │ ├── AbstractSQLServerDriver.php │ │ │ │ ├── AbstractSQLServerDriver │ │ │ │ │ └── Exception │ │ │ │ │ │ └── PortWithoutHost.php │ │ │ │ ├── AbstractSQLiteDriver.php │ │ │ │ ├── Connection.php │ │ │ │ ├── DriverException.php │ │ │ │ ├── DrizzlePDOMySql │ │ │ │ │ ├── Connection.php │ │ │ │ │ └── Driver.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionConverterDriver.php │ │ │ │ ├── FetchUtils.php │ │ │ │ ├── IBMDB2 │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── DB2Connection.php │ │ │ │ │ ├── DB2Driver.php │ │ │ │ │ ├── DB2Exception.php │ │ │ │ │ ├── DB2Statement.php │ │ │ │ │ ├── DataSourceName.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── CannotCopyStreamToStream.php │ │ │ │ │ │ ├── CannotCreateTemporaryFile.php │ │ │ │ │ │ ├── CannotWriteToTemporaryFile.php │ │ │ │ │ │ ├── ConnectionError.php │ │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ │ ├── PrepareFailed.php │ │ │ │ │ │ └── StatementError.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── Mysqli │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── ConnectionError.php │ │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ │ ├── FailedReadingStreamOffset.php │ │ │ │ │ │ ├── InvalidOption.php │ │ │ │ │ │ ├── StatementError.php │ │ │ │ │ │ └── UnknownType.php │ │ │ │ │ ├── MysqliConnection.php │ │ │ │ │ ├── MysqliException.php │ │ │ │ │ ├── MysqliStatement.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── OCI8 │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── NonTerminatedStringLiteral.php │ │ │ │ │ │ ├── SequenceDoesNotExist.php │ │ │ │ │ │ └── UnknownParameterIndex.php │ │ │ │ │ ├── OCI8Connection.php │ │ │ │ │ ├── OCI8Exception.php │ │ │ │ │ ├── OCI8Statement.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── PDO │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── MySQL │ │ │ │ │ │ └── Driver.php │ │ │ │ │ ├── OCI │ │ │ │ │ │ └── Driver.php │ │ │ │ │ ├── PgSQL │ │ │ │ │ │ └── Driver.php │ │ │ │ │ ├── SQLSrv │ │ │ │ │ │ ├── Connection.php │ │ │ │ │ │ ├── Driver.php │ │ │ │ │ │ └── Statement.php │ │ │ │ │ ├── SQLite │ │ │ │ │ │ └── Driver.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── PDOException.php │ │ │ │ ├── PDOIbm │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOMySql │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOOracle │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOPgSql │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOSqlite │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOSqlsrv │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── PingableConnection.php │ │ │ │ ├── Result.php │ │ │ │ ├── ResultStatement.php │ │ │ │ ├── SQLAnywhere │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── SQLAnywhereConnection.php │ │ │ │ │ ├── SQLAnywhereException.php │ │ │ │ │ └── SQLAnywhereStatement.php │ │ │ │ ├── SQLSrv │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── Error.php │ │ │ │ │ ├── LastInsertId.php │ │ │ │ │ ├── SQLSrvConnection.php │ │ │ │ │ ├── SQLSrvException.php │ │ │ │ │ ├── SQLSrvStatement.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── ServerInfoAwareConnection.php │ │ │ │ ├── Statement.php │ │ │ │ └── StatementIterator.php │ │ │ │ ├── DriverManager.php │ │ │ │ ├── Event │ │ │ │ ├── ConnectionEventArgs.php │ │ │ │ ├── Listeners │ │ │ │ │ ├── MysqlSessionInit.php │ │ │ │ │ ├── OracleSessionInit.php │ │ │ │ │ └── SQLSessionInit.php │ │ │ │ ├── SchemaAlterTableAddColumnEventArgs.php │ │ │ │ ├── SchemaAlterTableChangeColumnEventArgs.php │ │ │ │ ├── SchemaAlterTableEventArgs.php │ │ │ │ ├── SchemaAlterTableRemoveColumnEventArgs.php │ │ │ │ ├── SchemaAlterTableRenameColumnEventArgs.php │ │ │ │ ├── SchemaColumnDefinitionEventArgs.php │ │ │ │ ├── SchemaCreateTableColumnEventArgs.php │ │ │ │ ├── SchemaCreateTableEventArgs.php │ │ │ │ ├── SchemaDropTableEventArgs.php │ │ │ │ ├── SchemaEventArgs.php │ │ │ │ └── SchemaIndexDefinitionEventArgs.php │ │ │ │ ├── Events.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ ├── ConnectionException.php │ │ │ │ ├── ConnectionLost.php │ │ │ │ ├── ConstraintViolationException.php │ │ │ │ ├── DatabaseObjectExistsException.php │ │ │ │ ├── DatabaseObjectNotFoundException.php │ │ │ │ ├── DeadlockException.php │ │ │ │ ├── DriverException.php │ │ │ │ ├── ForeignKeyConstraintViolationException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidFieldNameException.php │ │ │ │ ├── LockWaitTimeoutException.php │ │ │ │ ├── NoKeyValue.php │ │ │ │ ├── NonUniqueFieldNameException.php │ │ │ │ ├── NotNullConstraintViolationException.php │ │ │ │ ├── ReadOnlyException.php │ │ │ │ ├── RetryableException.php │ │ │ │ ├── ServerException.php │ │ │ │ ├── SyntaxErrorException.php │ │ │ │ ├── TableExistsException.php │ │ │ │ ├── TableNotFoundException.php │ │ │ │ └── UniqueConstraintViolationException.php │ │ │ │ ├── FetchMode.php │ │ │ │ ├── Id │ │ │ │ ├── TableGenerator.php │ │ │ │ └── TableGeneratorSchemaVisitor.php │ │ │ │ ├── LockMode.php │ │ │ │ ├── Logging │ │ │ │ ├── DebugStack.php │ │ │ │ ├── EchoSQLLogger.php │ │ │ │ ├── LoggerChain.php │ │ │ │ └── SQLLogger.php │ │ │ │ ├── ParameterType.php │ │ │ │ ├── Platforms │ │ │ │ ├── AbstractPlatform.php │ │ │ │ ├── DB2Platform.php │ │ │ │ ├── DateIntervalUnit.php │ │ │ │ ├── DrizzlePlatform.php │ │ │ │ ├── Keywords │ │ │ │ │ ├── DB2Keywords.php │ │ │ │ │ ├── DrizzleKeywords.php │ │ │ │ │ ├── KeywordList.php │ │ │ │ │ ├── MariaDb102Keywords.php │ │ │ │ │ ├── MsSQLKeywords.php │ │ │ │ │ ├── MySQL57Keywords.php │ │ │ │ │ ├── MySQL80Keywords.php │ │ │ │ │ ├── MySQLKeywords.php │ │ │ │ │ ├── OracleKeywords.php │ │ │ │ │ ├── PostgreSQL100Keywords.php │ │ │ │ │ ├── PostgreSQL91Keywords.php │ │ │ │ │ ├── PostgreSQL92Keywords.php │ │ │ │ │ ├── PostgreSQL94Keywords.php │ │ │ │ │ ├── PostgreSQLKeywords.php │ │ │ │ │ ├── ReservedKeywordsValidator.php │ │ │ │ │ ├── SQLAnywhere11Keywords.php │ │ │ │ │ ├── SQLAnywhere12Keywords.php │ │ │ │ │ ├── SQLAnywhere16Keywords.php │ │ │ │ │ ├── SQLAnywhereKeywords.php │ │ │ │ │ ├── SQLServer2005Keywords.php │ │ │ │ │ ├── SQLServer2008Keywords.php │ │ │ │ │ ├── SQLServer2012Keywords.php │ │ │ │ │ ├── SQLServerKeywords.php │ │ │ │ │ └── SQLiteKeywords.php │ │ │ │ ├── MariaDb1027Platform.php │ │ │ │ ├── MySQL57Platform.php │ │ │ │ ├── MySQL80Platform.php │ │ │ │ ├── MySqlPlatform.php │ │ │ │ ├── OraclePlatform.php │ │ │ │ ├── PostgreSQL100Platform.php │ │ │ │ ├── PostgreSQL91Platform.php │ │ │ │ ├── PostgreSQL92Platform.php │ │ │ │ ├── PostgreSQL94Platform.php │ │ │ │ ├── SQLAnywhere11Platform.php │ │ │ │ ├── SQLAnywhere12Platform.php │ │ │ │ ├── SQLAnywhere16Platform.php │ │ │ │ ├── SQLAnywherePlatform.php │ │ │ │ ├── SQLAzurePlatform.php │ │ │ │ ├── SQLServer2005Platform.php │ │ │ │ ├── SQLServer2008Platform.php │ │ │ │ ├── SQLServer2012Platform.php │ │ │ │ ├── SQLServerPlatform.php │ │ │ │ ├── SqlitePlatform.php │ │ │ │ └── TrimMode.php │ │ │ │ ├── Portability │ │ │ │ ├── Connection.php │ │ │ │ ├── OptimizeFlags.php │ │ │ │ └── Statement.php │ │ │ │ ├── Query │ │ │ │ ├── Expression │ │ │ │ │ ├── CompositeExpression.php │ │ │ │ │ └── ExpressionBuilder.php │ │ │ │ ├── QueryBuilder.php │ │ │ │ └── QueryException.php │ │ │ │ ├── SQLParserUtils.php │ │ │ │ ├── SQLParserUtilsException.php │ │ │ │ ├── Schema │ │ │ │ ├── AbstractAsset.php │ │ │ │ ├── AbstractSchemaManager.php │ │ │ │ ├── Column.php │ │ │ │ ├── ColumnDiff.php │ │ │ │ ├── Comparator.php │ │ │ │ ├── Constraint.php │ │ │ │ ├── DB2SchemaManager.php │ │ │ │ ├── DrizzleSchemaManager.php │ │ │ │ ├── ForeignKeyConstraint.php │ │ │ │ ├── Identifier.php │ │ │ │ ├── Index.php │ │ │ │ ├── MySqlSchemaManager.php │ │ │ │ ├── OracleSchemaManager.php │ │ │ │ ├── SQLAnywhereSchemaManager.php │ │ │ │ ├── SQLServerSchemaManager.php │ │ │ │ ├── Schema.php │ │ │ │ ├── SchemaConfig.php │ │ │ │ ├── SchemaDiff.php │ │ │ │ ├── SchemaException.php │ │ │ │ ├── Sequence.php │ │ │ │ ├── SqliteSchemaManager.php │ │ │ │ ├── Synchronizer │ │ │ │ │ ├── AbstractSchemaSynchronizer.php │ │ │ │ │ ├── SchemaSynchronizer.php │ │ │ │ │ └── SingleDatabaseSynchronizer.php │ │ │ │ ├── Table.php │ │ │ │ ├── TableDiff.php │ │ │ │ ├── View.php │ │ │ │ └── Visitor │ │ │ │ │ ├── AbstractVisitor.php │ │ │ │ │ ├── CreateSchemaSqlCollector.php │ │ │ │ │ ├── DropSchemaSqlCollector.php │ │ │ │ │ ├── Graphviz.php │ │ │ │ │ ├── NamespaceVisitor.php │ │ │ │ │ ├── RemoveNamespacedAssets.php │ │ │ │ │ ├── SchemaDiffVisitor.php │ │ │ │ │ └── Visitor.php │ │ │ │ ├── Sharding │ │ │ │ ├── PoolingShardConnection.php │ │ │ │ ├── PoolingShardManager.php │ │ │ │ ├── SQLAzure │ │ │ │ │ ├── SQLAzureFederationsSynchronizer.php │ │ │ │ │ ├── SQLAzureShardManager.php │ │ │ │ │ └── Schema │ │ │ │ │ │ └── MultiTenantVisitor.php │ │ │ │ ├── ShardChoser │ │ │ │ │ ├── MultiTenantShardChoser.php │ │ │ │ │ └── ShardChoser.php │ │ │ │ ├── ShardManager.php │ │ │ │ └── ShardingException.php │ │ │ │ ├── Statement.php │ │ │ │ ├── Tools │ │ │ │ ├── Console │ │ │ │ │ ├── Command │ │ │ │ │ │ ├── ImportCommand.php │ │ │ │ │ │ ├── ReservedWordsCommand.php │ │ │ │ │ │ └── RunSqlCommand.php │ │ │ │ │ ├── ConnectionNotFound.php │ │ │ │ │ ├── ConnectionProvider.php │ │ │ │ │ ├── ConnectionProvider │ │ │ │ │ │ └── SingleConnectionProvider.php │ │ │ │ │ ├── ConsoleRunner.php │ │ │ │ │ └── Helper │ │ │ │ │ │ └── ConnectionHelper.php │ │ │ │ └── Dumper.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 │ │ │ │ ├── JsonArrayType.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 │ │ │ │ ├── Version.php │ │ │ │ └── VersionAwarePlatformDriver.php │ │ └── psalm.xml │ ├── deprecations │ │ └── src │ │ │ ├── Deprecation.php │ │ │ └── PHPUnit │ │ │ └── VerifyDeprecations.php │ ├── event-manager │ │ ├── psalm.xml │ │ └── src │ │ │ ├── EventArgs.php │ │ │ ├── EventManager.php │ │ │ └── EventSubscriber.php │ ├── inflector │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Inflector │ │ │ └── Inflector.php │ └── lexer │ │ └── lib │ │ └── Doctrine │ │ └── Common │ │ └── Lexer │ │ └── AbstractLexer.php ├── egulias │ └── email-validator │ │ └── EmailValidator │ │ ├── EmailLexer.php │ │ ├── EmailParser.php │ │ ├── EmailValidator.php │ │ ├── Exception │ │ ├── AtextAfterCFWS.php │ │ ├── CRLFAtTheEnd.php │ │ ├── CRLFX2.php │ │ ├── CRNoLF.php │ │ ├── CharNotAllowed.php │ │ ├── CommaInDomain.php │ │ ├── ConsecutiveAt.php │ │ ├── ConsecutiveDot.php │ │ ├── DomainHyphened.php │ │ ├── DotAtEnd.php │ │ ├── DotAtStart.php │ │ ├── ExpectingAT.php │ │ ├── ExpectingATEXT.php │ │ ├── ExpectingCTEXT.php │ │ ├── ExpectingDTEXT.php │ │ ├── ExpectingDomainLiteralClose.php │ │ ├── ExpectingQPair.php │ │ ├── InvalidEmail.php │ │ ├── NoDNSRecord.php │ │ ├── NoDomainPart.php │ │ ├── NoLocalPart.php │ │ ├── UnclosedComment.php │ │ ├── UnclosedQuotedString.php │ │ └── UnopenedComment.php │ │ ├── Parser │ │ ├── DomainPart.php │ │ ├── LocalPart.php │ │ └── Parser.php │ │ ├── Validation │ │ ├── DNSCheckValidation.php │ │ ├── EmailValidation.php │ │ ├── Error │ │ │ ├── RFCWarnings.php │ │ │ └── SpoofEmail.php │ │ ├── Exception │ │ │ └── EmptyValidationList.php │ │ ├── MultipleErrors.php │ │ ├── MultipleValidationWithAnd.php │ │ ├── NoRFCWarningsValidation.php │ │ ├── RFCValidation.php │ │ └── SpoofCheckValidation.php │ │ └── Warning │ │ ├── AddressLiteral.php │ │ ├── CFWSNearAt.php │ │ ├── CFWSWithFWS.php │ │ ├── Comment.php │ │ ├── DeprecatedComment.php │ │ ├── DomainLiteral.php │ │ ├── DomainTooLong.php │ │ ├── EmailTooLong.php │ │ ├── IPV6BadChar.php │ │ ├── IPV6ColonEnd.php │ │ ├── IPV6ColonStart.php │ │ ├── IPV6Deprecated.php │ │ ├── IPV6DoubleColon.php │ │ ├── IPV6GroupCount.php │ │ ├── IPV6MaxGroups.php │ │ ├── LabelTooLong.php │ │ ├── LocalTooLong.php │ │ ├── NoDNSMXRecord.php │ │ ├── ObsoleteDTEXT.php │ │ ├── QuotedPart.php │ │ ├── QuotedString.php │ │ ├── TLD.php │ │ └── Warning.php ├── enshrined │ └── svg-sanitize │ │ └── src │ │ ├── ElementReference │ │ ├── Resolver.php │ │ ├── Subject.php │ │ └── Usage.php │ │ ├── Exceptions │ │ └── NestingException.php │ │ ├── Helper.php │ │ ├── Sanitizer.php │ │ ├── data │ │ ├── AllowedAttributes.php │ │ ├── AllowedTags.php │ │ ├── AttributeInterface.php │ │ ├── TagInterface.php │ │ └── XPath.php │ │ └── svg-scanner.php ├── erusev │ └── parsedown │ │ └── Parsedown.php ├── ezyang │ └── htmlpurifier │ │ ├── CREDITS │ │ ├── INSTALL │ │ ├── INSTALL.fr.utf8 │ │ ├── NEWS │ │ ├── TODO │ │ ├── VERSION │ │ ├── WHATSNEW │ │ ├── WYSIWYG │ │ ├── extras │ │ ├── ConfigDoc │ │ │ └── HTMLXSLTProcessor.php │ │ ├── FSTools.php │ │ ├── FSTools │ │ │ └── File.php │ │ ├── HTMLPurifierExtras.auto.php │ │ ├── HTMLPurifierExtras.autoload-legacy.php │ │ ├── HTMLPurifierExtras.autoload.php │ │ ├── HTMLPurifierExtras.php │ │ └── README │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── Nofollow.php │ │ │ ├── SafeEmbed.php │ │ │ ├── SafeObject.php │ │ │ ├── SafeParam.php │ │ │ ├── ScriptRequired.php │ │ │ ├── TargetBlank.php │ │ │ ├── TargetNoopener.php │ │ │ ├── TargetNoreferrer.php │ │ │ └── Textarea.php │ │ │ ├── AttrTypes.php │ │ │ ├── Bootstrap.php │ │ │ ├── CSSDefinition.php │ │ │ ├── ChildDef.php │ │ │ ├── ChildDef │ │ │ ├── Chameleon.php │ │ │ ├── Custom.php │ │ │ ├── Empty.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 │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── classes │ │ │ │ └── en-x-test.php │ │ │ └── messages │ │ │ │ ├── en-x-test.php │ │ │ │ ├── en-x-testmini.php │ │ │ │ └── en.php │ │ │ ├── LanguageFactory.php │ │ │ ├── Lexer │ │ │ ├── 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 │ │ ├── maintenance │ │ ├── PH5P.patch │ │ ├── PH5P.php │ │ ├── add-vimline.php │ │ ├── common.php │ │ ├── compile-doxygen.sh │ │ ├── config-scanner.php │ │ ├── flush-definition-cache.php │ │ ├── flush.sh │ │ ├── generate-entity-file.php │ │ ├── generate-includes.php │ │ ├── generate-ph5p-patch.php │ │ ├── generate-schema-cache.php │ │ ├── generate-standalone.php │ │ ├── merge-library.php │ │ ├── old-extract-schema.php │ │ ├── old-remove-require-once.php │ │ ├── old-remove-schema-def.php │ │ ├── regenerate-docs.sh │ │ ├── remove-trailing-whitespace.php │ │ └── rename-config.php │ │ ├── package.php │ │ ├── phpdoc.ini │ │ ├── plugins │ │ └── phorum │ │ │ ├── Changelog │ │ │ ├── INSTALL │ │ │ ├── README │ │ │ ├── config.default.php │ │ │ ├── htmlpurifier.php │ │ │ ├── htmlpurifier │ │ │ └── README │ │ │ ├── init-config.php │ │ │ ├── migrate.bbcode.php │ │ │ ├── settings.php │ │ │ └── settings │ │ │ ├── form.php │ │ │ ├── migrate-sigs-form.php │ │ │ ├── migrate-sigs.php │ │ │ └── save.php │ │ ├── test-settings.sample.php │ │ ├── test-settings.travis.php │ │ └── update-for-release ├── fideloper │ └── proxy │ │ ├── config │ │ └── trustedproxy.php │ │ └── src │ │ ├── TrustProxies.php │ │ └── TrustedProxyServiceProvider.php ├── guzzlehttp │ ├── guzzle │ │ ├── Dockerfile │ │ └── src │ │ │ ├── ClientInterface.php │ │ │ ├── Cookie │ │ │ ├── CookieJarInterface.php │ │ │ ├── FileCookieJar.php │ │ │ ├── SessionCookieJar.php │ │ │ └── SetCookie.php │ │ │ ├── Exception │ │ │ ├── BadResponseException.php │ │ │ ├── ClientException.php │ │ │ ├── ConnectException.php │ │ │ ├── GuzzleException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── RequestException.php │ │ │ ├── SeekException.php │ │ │ ├── ServerException.php │ │ │ ├── TooManyRedirectsException.php │ │ │ └── TransferException.php │ │ │ ├── Handler │ │ │ ├── CurlFactory.php │ │ │ ├── CurlFactoryInterface.php │ │ │ ├── CurlHandler.php │ │ │ ├── EasyHandle.php │ │ │ ├── MockHandler.php │ │ │ └── Proxy.php │ │ │ ├── MessageFormatter.php │ │ │ ├── Pool.php │ │ │ ├── PrepareBodyMiddleware.php │ │ │ ├── RedirectMiddleware.php │ │ │ ├── RequestOptions.php │ │ │ ├── RetryMiddleware.php │ │ │ ├── TransferStats.php │ │ │ ├── UriTemplate.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ ├── promises │ │ └── src │ │ │ ├── AggregateException.php │ │ │ ├── CancellationException.php │ │ │ ├── Coroutine.php │ │ │ ├── Create.php │ │ │ ├── Each.php │ │ │ ├── EachPromise.php │ │ │ ├── Is.php │ │ │ ├── PromisorInterface.php │ │ │ ├── RejectionException.php │ │ │ ├── TaskQueue.php │ │ │ ├── TaskQueueInterface.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ └── psr7 │ │ └── src │ │ ├── AppendStream.php │ │ ├── BufferStream.php │ │ ├── CachingStream.php │ │ ├── DroppingStream.php │ │ ├── FnStream.php │ │ ├── Header.php │ │ ├── InflateStream.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 │ │ ├── UriComparator.php │ │ ├── UriNormalizer.php │ │ ├── UriResolver.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php ├── html2text │ └── html2text │ │ ├── .travis.yml │ │ └── src │ │ └── Html2Text.php ├── jakub-onderka │ ├── php-console-color │ │ ├── .travis.yml │ │ ├── example.php │ │ └── src │ │ │ ├── ConsoleColor.php │ │ │ └── InvalidStyleException.php │ └── php-console-highlighter │ │ ├── .travis.yml │ │ └── src │ │ └── Highlighter.php ├── javoscript │ └── laravel-macroable-models │ │ └── src │ │ ├── Facades │ │ └── MacroableModels.php │ │ └── MacroableModelsServiceProvider.php ├── laravel │ ├── framework │ │ └── src │ │ │ └── Illuminate │ │ │ ├── Auth │ │ │ ├── Access │ │ │ │ ├── AuthorizationException.php │ │ │ │ ├── HandlesAuthorization.php │ │ │ │ └── Response.php │ │ │ ├── AuthManager.php │ │ │ ├── AuthServiceProvider.php │ │ │ ├── Authenticatable.php │ │ │ ├── AuthenticationException.php │ │ │ ├── Console │ │ │ │ ├── AuthMakeCommand.php │ │ │ │ ├── ClearResetsCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── make │ │ │ │ │ ├── controllers │ │ │ │ │ └── HomeController.stub │ │ │ │ │ ├── routes.stub │ │ │ │ │ └── views │ │ │ │ │ ├── auth │ │ │ │ │ ├── login.stub │ │ │ │ │ ├── passwords │ │ │ │ │ │ ├── email.stub │ │ │ │ │ │ └── reset.stub │ │ │ │ │ └── register.stub │ │ │ │ │ ├── home.stub │ │ │ │ │ └── layouts │ │ │ │ │ └── app.stub │ │ │ ├── CreatesUserProviders.php │ │ │ ├── DatabaseUserProvider.php │ │ │ ├── EloquentUserProvider.php │ │ │ ├── Events │ │ │ │ ├── Attempting.php │ │ │ │ ├── Authenticated.php │ │ │ │ ├── Failed.php │ │ │ │ ├── Lockout.php │ │ │ │ ├── Login.php │ │ │ │ ├── Logout.php │ │ │ │ ├── PasswordReset.php │ │ │ │ └── Registered.php │ │ │ ├── GenericUser.php │ │ │ ├── GuardHelpers.php │ │ │ ├── Middleware │ │ │ │ ├── AuthenticateWithBasicAuth.php │ │ │ │ └── Authorize.php │ │ │ ├── Notifications │ │ │ │ └── ResetPassword.php │ │ │ ├── Passwords │ │ │ │ ├── CanResetPassword.php │ │ │ │ ├── DatabaseTokenRepository.php │ │ │ │ ├── PasswordBroker.php │ │ │ │ ├── PasswordBrokerManager.php │ │ │ │ ├── PasswordResetServiceProvider.php │ │ │ │ └── TokenRepositoryInterface.php │ │ │ ├── Recaller.php │ │ │ ├── RequestGuard.php │ │ │ └── TokenGuard.php │ │ │ ├── Broadcasting │ │ │ ├── BroadcastController.php │ │ │ ├── BroadcastEvent.php │ │ │ ├── BroadcastException.php │ │ │ ├── BroadcastServiceProvider.php │ │ │ ├── Broadcasters │ │ │ │ ├── LogBroadcaster.php │ │ │ │ ├── NullBroadcaster.php │ │ │ │ ├── PusherBroadcaster.php │ │ │ │ └── RedisBroadcaster.php │ │ │ ├── Channel.php │ │ │ ├── InteractsWithSockets.php │ │ │ ├── PendingBroadcast.php │ │ │ ├── PresenceChannel.php │ │ │ └── PrivateChannel.php │ │ │ ├── Bus │ │ │ ├── BusServiceProvider.php │ │ │ └── Queueable.php │ │ │ ├── Cache │ │ │ ├── ApcStore.php │ │ │ ├── ApcWrapper.php │ │ │ ├── ArrayStore.php │ │ │ ├── CacheManager.php │ │ │ ├── CacheServiceProvider.php │ │ │ ├── Console │ │ │ │ ├── CacheTableCommand.php │ │ │ │ ├── ForgetCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── cache.stub │ │ │ ├── DatabaseStore.php │ │ │ ├── Events │ │ │ │ ├── CacheEvent.php │ │ │ │ ├── CacheHit.php │ │ │ │ ├── CacheMissed.php │ │ │ │ ├── KeyForgotten.php │ │ │ │ └── KeyWritten.php │ │ │ ├── FileStore.php │ │ │ ├── Lock.php │ │ │ ├── MemcachedConnector.php │ │ │ ├── MemcachedLock.php │ │ │ ├── MemcachedStore.php │ │ │ ├── NullStore.php │ │ │ ├── RateLimiter.php │ │ │ ├── RedisLock.php │ │ │ ├── RedisStore.php │ │ │ ├── RedisTaggedCache.php │ │ │ ├── RetrievesMultipleKeys.php │ │ │ ├── TagSet.php │ │ │ ├── TaggableStore.php │ │ │ └── TaggedCache.php │ │ │ ├── Console │ │ │ ├── Command.php │ │ │ ├── ConfirmableTrait.php │ │ │ ├── DetectsApplicationNamespace.php │ │ │ ├── Events │ │ │ │ ├── ArtisanStarting.php │ │ │ │ ├── CommandFinished.php │ │ │ │ └── CommandStarting.php │ │ │ ├── GeneratorCommand.php │ │ │ ├── OutputStyle.php │ │ │ ├── Parser.php │ │ │ └── Scheduling │ │ │ │ ├── CacheMutex.php │ │ │ │ ├── CallbackEvent.php │ │ │ │ ├── CommandBuilder.php │ │ │ │ ├── Event.php │ │ │ │ ├── ManagesFrequencies.php │ │ │ │ ├── Mutex.php │ │ │ │ ├── Schedule.php │ │ │ │ ├── ScheduleFinishCommand.php │ │ │ │ └── ScheduleRunCommand.php │ │ │ ├── Container │ │ │ ├── ContextualBindingBuilder.php │ │ │ └── EntryNotFoundException.php │ │ │ ├── Contracts │ │ │ ├── Auth │ │ │ │ ├── Access │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ └── Gate.php │ │ │ │ ├── Authenticatable.php │ │ │ │ ├── CanResetPassword.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Guard.php │ │ │ │ ├── PasswordBroker.php │ │ │ │ ├── PasswordBrokerFactory.php │ │ │ │ ├── StatefulGuard.php │ │ │ │ ├── SupportsBasicAuth.php │ │ │ │ └── UserProvider.php │ │ │ ├── Broadcasting │ │ │ │ ├── Broadcaster.php │ │ │ │ ├── Factory.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 │ │ │ │ └── Kernel.php │ │ │ ├── Container │ │ │ │ ├── BindingResolutionException.php │ │ │ │ └── ContextualBindingBuilder.php │ │ │ ├── Cookie │ │ │ │ ├── Factory.php │ │ │ │ └── QueueingFactory.php │ │ │ ├── Database │ │ │ │ └── ModelIdentifier.php │ │ │ ├── Debug │ │ │ │ └── ExceptionHandler.php │ │ │ ├── Encryption │ │ │ │ ├── DecryptException.php │ │ │ │ ├── EncryptException.php │ │ │ │ └── Encrypter.php │ │ │ ├── Events │ │ │ │ └── Dispatcher.php │ │ │ ├── Filesystem │ │ │ │ ├── Cloud.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ └── Filesystem.php │ │ │ ├── Foundation │ │ │ │ └── Application.php │ │ │ ├── Hashing │ │ │ │ └── Hasher.php │ │ │ ├── Http │ │ │ │ └── Kernel.php │ │ │ ├── Logging │ │ │ │ └── Log.php │ │ │ ├── Mail │ │ │ │ ├── MailQueue.php │ │ │ │ ├── Mailable.php │ │ │ │ └── Mailer.php │ │ │ ├── Notifications │ │ │ │ ├── Dispatcher.php │ │ │ │ └── Factory.php │ │ │ ├── Pagination │ │ │ │ ├── LengthAwarePaginator.php │ │ │ │ └── Paginator.php │ │ │ ├── Pipeline │ │ │ │ ├── Hub.php │ │ │ │ └── Pipeline.php │ │ │ ├── Queue │ │ │ │ ├── EntityNotFoundException.php │ │ │ │ ├── EntityResolver.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Job.php │ │ │ │ ├── Monitor.php │ │ │ │ ├── Queue.php │ │ │ │ ├── QueueableCollection.php │ │ │ │ ├── QueueableEntity.php │ │ │ │ └── ShouldQueue.php │ │ │ ├── Redis │ │ │ │ ├── Factory.php │ │ │ │ └── LimiterTimeoutException.php │ │ │ ├── Routing │ │ │ │ ├── BindingRegistrar.php │ │ │ │ ├── Registrar.php │ │ │ │ ├── ResponseFactory.php │ │ │ │ ├── UrlGenerator.php │ │ │ │ └── UrlRoutable.php │ │ │ ├── Session │ │ │ │ └── Session.php │ │ │ ├── Support │ │ │ │ ├── Arrayable.php │ │ │ │ ├── Htmlable.php │ │ │ │ ├── Jsonable.php │ │ │ │ ├── MessageBag.php │ │ │ │ ├── MessageProvider.php │ │ │ │ ├── Renderable.php │ │ │ │ └── Responsable.php │ │ │ ├── Translation │ │ │ │ ├── Loader.php │ │ │ │ └── Translator.php │ │ │ ├── Validation │ │ │ │ ├── Factory.php │ │ │ │ ├── ImplicitRule.php │ │ │ │ ├── Rule.php │ │ │ │ ├── ValidatesWhenResolved.php │ │ │ │ └── Validator.php │ │ │ └── View │ │ │ │ ├── Engine.php │ │ │ │ ├── Factory.php │ │ │ │ └── View.php │ │ │ ├── Cookie │ │ │ ├── CookieJar.php │ │ │ ├── CookieServiceProvider.php │ │ │ └── Middleware │ │ │ │ └── AddQueuedCookiesToResponse.php │ │ │ ├── Database │ │ │ ├── Capsule │ │ │ │ └── Manager.php │ │ │ ├── Concerns │ │ │ │ ├── BuildsQueries.php │ │ │ │ └── ManagesTransactions.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 │ │ │ │ ├── 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 │ │ │ │ └── Seeds │ │ │ │ │ ├── SeedCommand.php │ │ │ │ │ ├── SeederMakeCommand.php │ │ │ │ │ └── stubs │ │ │ │ │ └── seeder.stub │ │ │ ├── DatabaseManager.php │ │ │ ├── DatabaseServiceProvider.php │ │ │ ├── DetectsDeadlocks.php │ │ │ ├── Eloquent │ │ │ │ ├── Collection.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── HasAttributes.php │ │ │ │ │ ├── HasEvents.php │ │ │ │ │ ├── HasRelationships.php │ │ │ │ │ ├── HasTimestamps.php │ │ │ │ │ └── HidesAttributes.php │ │ │ │ ├── FactoryBuilder.php │ │ │ │ ├── JsonEncodingException.php │ │ │ │ ├── MassAssignmentException.php │ │ │ │ ├── ModelNotFoundException.php │ │ │ │ ├── QueueEntityResolver.php │ │ │ │ ├── RelationNotFoundException.php │ │ │ │ ├── Relations │ │ │ │ │ ├── BelongsTo.php │ │ │ │ │ ├── BelongsToMany.php │ │ │ │ │ ├── Concerns │ │ │ │ │ │ ├── InteractsWithPivotTable.php │ │ │ │ │ │ └── SupportsDefaultModels.php │ │ │ │ │ ├── HasMany.php │ │ │ │ │ ├── HasManyThrough.php │ │ │ │ │ ├── HasOne.php │ │ │ │ │ ├── HasOneOrMany.php │ │ │ │ │ ├── MorphMany.php │ │ │ │ │ ├── MorphOne.php │ │ │ │ │ ├── MorphOneOrMany.php │ │ │ │ │ ├── MorphPivot.php │ │ │ │ │ ├── MorphTo.php │ │ │ │ │ ├── MorphToMany.php │ │ │ │ │ └── Pivot.php │ │ │ │ ├── Scope.php │ │ │ │ ├── SoftDeletes.php │ │ │ │ └── SoftDeletingScope.php │ │ │ ├── Events │ │ │ │ ├── ConnectionEvent.php │ │ │ │ ├── QueryExecuted.php │ │ │ │ ├── StatementPrepared.php │ │ │ │ ├── TransactionBeginning.php │ │ │ │ ├── TransactionCommitted.php │ │ │ │ └── TransactionRolledBack.php │ │ │ ├── Grammar.php │ │ │ ├── MigrationServiceProvider.php │ │ │ ├── Migrations │ │ │ │ ├── DatabaseMigrationRepository.php │ │ │ │ ├── Migration.php │ │ │ │ ├── MigrationCreator.php │ │ │ │ ├── MigrationRepositoryInterface.php │ │ │ │ ├── Migrator.php │ │ │ │ └── stubs │ │ │ │ │ ├── blank.stub │ │ │ │ │ ├── create.stub │ │ │ │ │ └── update.stub │ │ │ ├── MySqlConnection.php │ │ │ ├── PostgresConnection.php │ │ │ ├── Query │ │ │ │ ├── Expression.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── JoinClause.php │ │ │ │ ├── JsonExpression.php │ │ │ │ └── Processors │ │ │ │ │ ├── MySqlProcessor.php │ │ │ │ │ ├── PostgresProcessor.php │ │ │ │ │ ├── Processor.php │ │ │ │ │ ├── SQLiteProcessor.php │ │ │ │ │ └── SqlServerProcessor.php │ │ │ ├── QueryException.php │ │ │ ├── SQLiteConnection.php │ │ │ ├── Schema │ │ │ │ ├── Grammars │ │ │ │ │ ├── ChangeColumn.php │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── RenameColumn.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── MySqlBuilder.php │ │ │ │ ├── PostgresBuilder.php │ │ │ │ ├── SQLiteBuilder.php │ │ │ │ └── SqlServerBuilder.php │ │ │ ├── Seeder.php │ │ │ └── SqlServerConnection.php │ │ │ ├── Encryption │ │ │ ├── Encrypter.php │ │ │ └── EncryptionServiceProvider.php │ │ │ ├── Events │ │ │ ├── CallQueuedListener.php │ │ │ └── EventServiceProvider.php │ │ │ ├── Filesystem │ │ │ ├── Cache.php │ │ │ ├── FilesystemAdapter.php │ │ │ ├── FilesystemManager.php │ │ │ └── FilesystemServiceProvider.php │ │ │ ├── Foundation │ │ │ ├── AliasLoader.php │ │ │ ├── Auth │ │ │ │ ├── Access │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ └── AuthorizesRequests.php │ │ │ │ ├── AuthenticatesUsers.php │ │ │ │ ├── RedirectsUsers.php │ │ │ │ ├── RegistersUsers.php │ │ │ │ ├── ResetsPasswords.php │ │ │ │ ├── SendsPasswordResetEmails.php │ │ │ │ ├── ThrottlesLogins.php │ │ │ │ └── User.php │ │ │ ├── Bootstrap │ │ │ │ ├── BootProviders.php │ │ │ │ ├── LoadConfiguration.php │ │ │ │ ├── LoadEnvironmentVariables.php │ │ │ │ ├── RegisterFacades.php │ │ │ │ ├── RegisterProviders.php │ │ │ │ └── SetRequestForConsole.php │ │ │ ├── Bus │ │ │ │ ├── Dispatchable.php │ │ │ │ ├── DispatchesJobs.php │ │ │ │ ├── PendingChain.php │ │ │ │ └── PendingDispatch.php │ │ │ ├── ComposerScripts.php │ │ │ ├── Console │ │ │ │ ├── AppNameCommand.php │ │ │ │ ├── ClearCompiledCommand.php │ │ │ │ ├── ClosureCommand.php │ │ │ │ ├── ConfigCacheCommand.php │ │ │ │ ├── ConfigClearCommand.php │ │ │ │ ├── ConsoleMakeCommand.php │ │ │ │ ├── DownCommand.php │ │ │ │ ├── EnvironmentCommand.php │ │ │ │ ├── EventGenerateCommand.php │ │ │ │ ├── EventMakeCommand.php │ │ │ │ ├── ExceptionMakeCommand.php │ │ │ │ ├── JobMakeCommand.php │ │ │ │ ├── Kernel.php │ │ │ │ ├── KeyGenerateCommand.php │ │ │ │ ├── ListenerMakeCommand.php │ │ │ │ ├── MailMakeCommand.php │ │ │ │ ├── ModelMakeCommand.php │ │ │ │ ├── NotificationMakeCommand.php │ │ │ │ ├── OptimizeCommand.php │ │ │ │ ├── PackageDiscoverCommand.php │ │ │ │ ├── PolicyMakeCommand.php │ │ │ │ ├── PresetCommand.php │ │ │ │ ├── Presets │ │ │ │ │ ├── Bootstrap.php │ │ │ │ │ ├── None.php │ │ │ │ │ ├── Preset.php │ │ │ │ │ ├── React.php │ │ │ │ │ ├── Vue.php │ │ │ │ │ ├── bootstrap-stubs │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── app.scss │ │ │ │ │ ├── none-stubs │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── react-stubs │ │ │ │ │ │ ├── Example.js │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ └── webpack.mix.js │ │ │ │ │ └── vue-stubs │ │ │ │ │ │ ├── ExampleComponent.vue │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ └── webpack.mix.js │ │ │ │ ├── ProviderMakeCommand.php │ │ │ │ ├── QueuedCommand.php │ │ │ │ ├── RequestMakeCommand.php │ │ │ │ ├── ResourceMakeCommand.php │ │ │ │ ├── RouteCacheCommand.php │ │ │ │ ├── RouteClearCommand.php │ │ │ │ ├── RouteListCommand.php │ │ │ │ ├── RuleMakeCommand.php │ │ │ │ ├── ServeCommand.php │ │ │ │ ├── StorageLinkCommand.php │ │ │ │ ├── TestMakeCommand.php │ │ │ │ ├── UpCommand.php │ │ │ │ ├── VendorPublishCommand.php │ │ │ │ ├── ViewClearCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── console.stub │ │ │ │ │ ├── event-handler-queued.stub │ │ │ │ │ ├── event-handler.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 │ │ │ │ │ ├── markdown-mail.stub │ │ │ │ │ ├── markdown-notification.stub │ │ │ │ │ ├── markdown.stub │ │ │ │ │ ├── model.stub │ │ │ │ │ ├── notification.stub │ │ │ │ │ ├── pivot.model.stub │ │ │ │ │ ├── policy.plain.stub │ │ │ │ │ ├── policy.stub │ │ │ │ │ ├── provider.stub │ │ │ │ │ ├── request.stub │ │ │ │ │ ├── resource-collection.stub │ │ │ │ │ ├── resource.stub │ │ │ │ │ ├── routes.stub │ │ │ │ │ ├── rule.stub │ │ │ │ │ ├── test.stub │ │ │ │ │ └── unit-test.stub │ │ │ ├── EnvironmentDetector.php │ │ │ ├── Events │ │ │ │ ├── Dispatchable.php │ │ │ │ └── LocaleUpdated.php │ │ │ ├── Exceptions │ │ │ │ ├── Handler.php │ │ │ │ └── views │ │ │ │ │ ├── 404.blade.php │ │ │ │ │ ├── 419.blade.php │ │ │ │ │ ├── 429.blade.php │ │ │ │ │ ├── 500.blade.php │ │ │ │ │ ├── 503.blade.php │ │ │ │ │ └── layout.blade.php │ │ │ ├── Http │ │ │ │ ├── Events │ │ │ │ │ └── RequestHandled.php │ │ │ │ ├── Exceptions │ │ │ │ │ └── MaintenanceModeException.php │ │ │ │ ├── FormRequest.php │ │ │ │ ├── Kernel.php │ │ │ │ └── Middleware │ │ │ │ │ ├── CheckForMaintenanceMode.php │ │ │ │ │ ├── ConvertEmptyStringsToNull.php │ │ │ │ │ ├── TransformsRequest.php │ │ │ │ │ ├── TrimStrings.php │ │ │ │ │ └── ValidatePostSize.php │ │ │ ├── Inspiring.php │ │ │ ├── Providers │ │ │ │ ├── ArtisanServiceProvider.php │ │ │ │ ├── ComposerServiceProvider.php │ │ │ │ ├── ConsoleSupportServiceProvider.php │ │ │ │ ├── FormRequestServiceProvider.php │ │ │ │ └── FoundationServiceProvider.php │ │ │ ├── Support │ │ │ │ └── Providers │ │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ │ ├── EventServiceProvider.php │ │ │ │ │ └── RouteServiceProvider.php │ │ │ ├── Testing │ │ │ │ ├── Concerns │ │ │ │ │ ├── InteractsWithAuthentication.php │ │ │ │ │ ├── InteractsWithConsole.php │ │ │ │ │ ├── InteractsWithContainer.php │ │ │ │ │ ├── InteractsWithDatabase.php │ │ │ │ │ ├── InteractsWithExceptionHandling.php │ │ │ │ │ ├── InteractsWithRedis.php │ │ │ │ │ ├── InteractsWithSession.php │ │ │ │ │ ├── MakesHttpRequests.php │ │ │ │ │ └── MocksApplicationServices.php │ │ │ │ ├── Constraints │ │ │ │ │ ├── HasInDatabase.php │ │ │ │ │ └── SoftDeletedInDatabase.php │ │ │ │ ├── DatabaseMigrations.php │ │ │ │ ├── DatabaseTransactions.php │ │ │ │ ├── HttpException.php │ │ │ │ ├── RefreshDatabase.php │ │ │ │ ├── RefreshDatabaseState.php │ │ │ │ ├── TestResponse.php │ │ │ │ ├── WithFaker.php │ │ │ │ ├── WithoutEvents.php │ │ │ │ └── WithoutMiddleware.php │ │ │ ├── helpers.php │ │ │ └── stubs │ │ │ │ └── facade.stub │ │ │ ├── Hashing │ │ │ ├── BcryptHasher.php │ │ │ └── HashServiceProvider.php │ │ │ ├── Http │ │ │ ├── Concerns │ │ │ │ ├── InteractsWithContentTypes.php │ │ │ │ ├── InteractsWithFlashData.php │ │ │ │ └── InteractsWithInput.php │ │ │ ├── Exceptions │ │ │ │ ├── HttpResponseException.php │ │ │ │ └── PostTooLargeException.php │ │ │ ├── File.php │ │ │ ├── FileHelpers.php │ │ │ ├── JsonResponse.php │ │ │ ├── Middleware │ │ │ │ ├── CheckResponseForModifications.php │ │ │ │ └── FrameGuard.php │ │ │ ├── Resources │ │ │ │ ├── CollectsResources.php │ │ │ │ ├── ConditionallyLoadsAttributes.php │ │ │ │ ├── DelegatesToResource.php │ │ │ │ ├── Json │ │ │ │ │ ├── AnonymousResourceCollection.php │ │ │ │ │ ├── PaginatedResourceResponse.php │ │ │ │ │ ├── Resource.php │ │ │ │ │ ├── ResourceCollection.php │ │ │ │ │ └── ResourceResponse.php │ │ │ │ ├── MergeValue.php │ │ │ │ ├── MissingValue.php │ │ │ │ └── PotentiallyMissing.php │ │ │ ├── Response.php │ │ │ ├── ResponseTrait.php │ │ │ ├── Testing │ │ │ │ ├── File.php │ │ │ │ ├── FileFactory.php │ │ │ │ └── MimeType.php │ │ │ └── UploadedFile.php │ │ │ ├── Log │ │ │ ├── Events │ │ │ │ └── MessageLogged.php │ │ │ └── LogServiceProvider.php │ │ │ ├── Mail │ │ │ ├── Events │ │ │ │ ├── MessageSending.php │ │ │ │ └── MessageSent.php │ │ │ ├── MailServiceProvider.php │ │ │ ├── Mailable.php │ │ │ ├── Markdown.php │ │ │ ├── Message.php │ │ │ ├── PendingMail.php │ │ │ ├── SendQueuedMailable.php │ │ │ ├── Transport │ │ │ │ ├── ArrayTransport.php │ │ │ │ ├── LogTransport.php │ │ │ │ ├── MailgunTransport.php │ │ │ │ ├── MandrillTransport.php │ │ │ │ ├── SesTransport.php │ │ │ │ ├── SparkPostTransport.php │ │ │ │ └── Transport.php │ │ │ └── resources │ │ │ │ └── views │ │ │ │ ├── html │ │ │ │ ├── button.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ ├── message.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── promotion.blade.php │ │ │ │ ├── promotion │ │ │ │ │ └── button.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ ├── table.blade.php │ │ │ │ └── themes │ │ │ │ │ └── default.css │ │ │ │ └── markdown │ │ │ │ ├── button.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ ├── message.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── promotion.blade.php │ │ │ │ ├── promotion │ │ │ │ └── button.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ └── table.blade.php │ │ │ ├── Notifications │ │ │ ├── Action.php │ │ │ ├── AnonymousNotifiable.php │ │ │ ├── Channels │ │ │ │ ├── BroadcastChannel.php │ │ │ │ ├── DatabaseChannel.php │ │ │ │ ├── MailChannel.php │ │ │ │ ├── NexmoSmsChannel.php │ │ │ │ └── SlackWebhookChannel.php │ │ │ ├── Console │ │ │ │ ├── NotificationTableCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── notifications.stub │ │ │ ├── DatabaseNotification.php │ │ │ ├── DatabaseNotificationCollection.php │ │ │ ├── Events │ │ │ │ ├── BroadcastNotificationCreated.php │ │ │ │ ├── NotificationFailed.php │ │ │ │ ├── NotificationSending.php │ │ │ │ └── NotificationSent.php │ │ │ ├── HasDatabaseNotifications.php │ │ │ ├── Messages │ │ │ │ ├── BroadcastMessage.php │ │ │ │ ├── DatabaseMessage.php │ │ │ │ ├── MailMessage.php │ │ │ │ ├── NexmoMessage.php │ │ │ │ ├── SimpleMessage.php │ │ │ │ ├── SlackAttachment.php │ │ │ │ ├── SlackAttachmentField.php │ │ │ │ └── SlackMessage.php │ │ │ ├── Notifiable.php │ │ │ ├── Notification.php │ │ │ ├── NotificationServiceProvider.php │ │ │ └── resources │ │ │ │ └── views │ │ │ │ └── email.blade.php │ │ │ ├── Pagination │ │ │ ├── PaginationServiceProvider.php │ │ │ ├── UrlWindow.php │ │ │ └── resources │ │ │ │ └── views │ │ │ │ ├── bootstrap-4.blade.php │ │ │ │ ├── default.blade.php │ │ │ │ ├── semantic-ui.blade.php │ │ │ │ ├── simple-bootstrap-4.blade.php │ │ │ │ └── simple-default.blade.php │ │ │ ├── Pipeline │ │ │ ├── Hub.php │ │ │ └── PipelineServiceProvider.php │ │ │ ├── Queue │ │ │ ├── BeanstalkdQueue.php │ │ │ ├── CallQueuedHandler.php │ │ │ ├── Capsule │ │ │ │ └── Manager.php │ │ │ ├── Connectors │ │ │ │ ├── BeanstalkdConnector.php │ │ │ │ ├── ConnectorInterface.php │ │ │ │ ├── DatabaseConnector.php │ │ │ │ ├── NullConnector.php │ │ │ │ ├── RedisConnector.php │ │ │ │ ├── SqsConnector.php │ │ │ │ └── SyncConnector.php │ │ │ ├── Console │ │ │ │ ├── FailedTableCommand.php │ │ │ │ ├── FlushFailedCommand.php │ │ │ │ ├── ForgetFailedCommand.php │ │ │ │ ├── ListFailedCommand.php │ │ │ │ ├── ListenCommand.php │ │ │ │ ├── RestartCommand.php │ │ │ │ ├── RetryCommand.php │ │ │ │ ├── TableCommand.php │ │ │ │ ├── WorkCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── failed_jobs.stub │ │ │ │ │ └── jobs.stub │ │ │ ├── DatabaseQueue.php │ │ │ ├── Events │ │ │ │ ├── JobExceptionOccurred.php │ │ │ │ ├── JobFailed.php │ │ │ │ ├── JobProcessed.php │ │ │ │ ├── JobProcessing.php │ │ │ │ ├── Looping.php │ │ │ │ └── WorkerStopping.php │ │ │ ├── Failed │ │ │ │ ├── DatabaseFailedJobProvider.php │ │ │ │ ├── FailedJobProviderInterface.php │ │ │ │ └── NullFailedJobProvider.php │ │ │ ├── FailingJob.php │ │ │ ├── InteractsWithQueue.php │ │ │ ├── InvalidPayloadException.php │ │ │ ├── Jobs │ │ │ │ ├── BeanstalkdJob.php │ │ │ │ ├── DatabaseJob.php │ │ │ │ ├── DatabaseJobRecord.php │ │ │ │ ├── Job.php │ │ │ │ ├── JobName.php │ │ │ │ ├── RedisJob.php │ │ │ │ ├── SqsJob.php │ │ │ │ └── SyncJob.php │ │ │ ├── ListenerOptions.php │ │ │ ├── LuaScripts.php │ │ │ ├── ManuallyFailedException.php │ │ │ ├── MaxAttemptsExceededException.php │ │ │ ├── NullQueue.php │ │ │ ├── Queue.php │ │ │ ├── QueueManager.php │ │ │ ├── QueueServiceProvider.php │ │ │ ├── RedisQueue.php │ │ │ ├── SerializesAndRestoresModelIdentifiers.php │ │ │ ├── SerializesModels.php │ │ │ ├── SqsQueue.php │ │ │ ├── SyncQueue.php │ │ │ ├── Worker.php │ │ │ └── WorkerOptions.php │ │ │ ├── Redis │ │ │ ├── Connections │ │ │ │ ├── Connection.php │ │ │ │ ├── PhpRedisClusterConnection.php │ │ │ │ ├── PhpRedisConnection.php │ │ │ │ ├── PredisClusterConnection.php │ │ │ │ └── PredisConnection.php │ │ │ ├── Connectors │ │ │ │ ├── PhpRedisConnector.php │ │ │ │ └── PredisConnector.php │ │ │ ├── Limiters │ │ │ │ ├── ConcurrencyLimiter.php │ │ │ │ ├── ConcurrencyLimiterBuilder.php │ │ │ │ ├── DurationLimiter.php │ │ │ │ └── DurationLimiterBuilder.php │ │ │ ├── RedisManager.php │ │ │ └── RedisServiceProvider.php │ │ │ ├── Routing │ │ │ ├── Console │ │ │ │ ├── ControllerMakeCommand.php │ │ │ │ ├── MiddlewareMakeCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── controller.model.stub │ │ │ │ │ ├── controller.nested.stub │ │ │ │ │ ├── controller.plain.stub │ │ │ │ │ ├── controller.stub │ │ │ │ │ └── middleware.stub │ │ │ ├── Contracts │ │ │ │ └── ControllerDispatcher.php │ │ │ ├── ControllerDispatcher.php │ │ │ ├── ControllerMiddlewareOptions.php │ │ │ ├── Events │ │ │ │ └── RouteMatched.php │ │ │ ├── Exceptions │ │ │ │ └── UrlGenerationException.php │ │ │ ├── ImplicitRouteBinding.php │ │ │ ├── Matching │ │ │ │ ├── HostValidator.php │ │ │ │ ├── MethodValidator.php │ │ │ │ ├── SchemeValidator.php │ │ │ │ ├── UriValidator.php │ │ │ │ └── ValidatorInterface.php │ │ │ ├── Middleware │ │ │ │ ├── SubstituteBindings.php │ │ │ │ ├── ThrottleRequests.php │ │ │ │ └── ThrottleRequestsWithRedis.php │ │ │ ├── MiddlewareNameResolver.php │ │ │ ├── PendingResourceRegistration.php │ │ │ ├── Pipeline.php │ │ │ ├── RedirectController.php │ │ │ ├── Redirector.php │ │ │ ├── ResourceRegistrar.php │ │ │ ├── ResponseFactory.php │ │ │ ├── Route.php │ │ │ ├── RouteAction.php │ │ │ ├── RouteBinding.php │ │ │ ├── RouteCompiler.php │ │ │ ├── RouteGroup.php │ │ │ ├── RouteParameterBinder.php │ │ │ ├── RouteRegistrar.php │ │ │ ├── RouteUrlGenerator.php │ │ │ ├── RoutingServiceProvider.php │ │ │ ├── SortedMiddleware.php │ │ │ └── ViewController.php │ │ │ ├── Session │ │ │ ├── CacheBasedSessionHandler.php │ │ │ ├── Console │ │ │ │ ├── SessionTableCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── database.stub │ │ │ ├── CookieSessionHandler.php │ │ │ ├── DatabaseSessionHandler.php │ │ │ ├── EncryptedStore.php │ │ │ ├── ExistenceAwareInterface.php │ │ │ ├── Middleware │ │ │ │ └── AuthenticateSession.php │ │ │ ├── NullSessionHandler.php │ │ │ ├── SessionManager.php │ │ │ ├── SessionServiceProvider.php │ │ │ ├── Store.php │ │ │ └── TokenMismatchException.php │ │ │ ├── Support │ │ │ ├── AggregateServiceProvider.php │ │ │ ├── Composer.php │ │ │ ├── Debug │ │ │ │ ├── Dumper.php │ │ │ │ └── HtmlDumper.php │ │ │ ├── Facades │ │ │ │ ├── App.php │ │ │ │ ├── Artisan.php │ │ │ │ ├── Auth.php │ │ │ │ ├── Blade.php │ │ │ │ ├── Broadcast.php │ │ │ │ ├── Bus.php │ │ │ │ ├── Cache.php │ │ │ │ ├── Config.php │ │ │ │ ├── Cookie.php │ │ │ │ ├── Crypt.php │ │ │ │ ├── DB.php │ │ │ │ ├── Event.php │ │ │ │ ├── Facade.php │ │ │ │ ├── File.php │ │ │ │ ├── Gate.php │ │ │ │ ├── Hash.php │ │ │ │ ├── Input.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Log.php │ │ │ │ ├── Mail.php │ │ │ │ ├── Notification.php │ │ │ │ ├── Password.php │ │ │ │ ├── Queue.php │ │ │ │ ├── Redirect.php │ │ │ │ ├── Redis.php │ │ │ │ ├── Request.php │ │ │ │ ├── Response.php │ │ │ │ ├── Route.php │ │ │ │ ├── Schema.php │ │ │ │ ├── Session.php │ │ │ │ ├── Storage.php │ │ │ │ ├── URL.php │ │ │ │ ├── Validator.php │ │ │ │ └── View.php │ │ │ ├── HigherOrderCollectionProxy.php │ │ │ ├── HigherOrderTapProxy.php │ │ │ ├── HtmlString.php │ │ │ ├── InteractsWithTime.php │ │ │ ├── Manager.php │ │ │ ├── NamespacedItemResolver.php │ │ │ ├── Pluralizer.php │ │ │ ├── ProcessUtils.php │ │ │ ├── ServiceProvider.php │ │ │ ├── Testing │ │ │ │ └── Fakes │ │ │ │ │ ├── BusFake.php │ │ │ │ │ ├── EventFake.php │ │ │ │ │ ├── MailFake.php │ │ │ │ │ ├── NotificationFake.php │ │ │ │ │ ├── PendingMailFake.php │ │ │ │ │ └── QueueFake.php │ │ │ ├── Traits │ │ │ │ ├── CapsuleManagerTrait.php │ │ │ │ └── Macroable.php │ │ │ └── helpers.php │ │ │ ├── Translation │ │ │ ├── ArrayLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── MessageSelector.php │ │ │ ├── TranslationServiceProvider.php │ │ │ └── Translator.php │ │ │ ├── Validation │ │ │ ├── ClosureValidationRule.php │ │ │ ├── Concerns │ │ │ │ └── ReplacesAttributes.php │ │ │ ├── DatabasePresenceVerifier.php │ │ │ ├── PresenceVerifierInterface.php │ │ │ ├── Rule.php │ │ │ ├── Rules │ │ │ │ ├── DatabaseRule.php │ │ │ │ ├── Dimensions.php │ │ │ │ ├── Exists.php │ │ │ │ ├── In.php │ │ │ │ ├── NotIn.php │ │ │ │ └── Unique.php │ │ │ ├── UnauthorizedException.php │ │ │ ├── ValidatesWhenResolvedTrait.php │ │ │ ├── ValidationData.php │ │ │ ├── ValidationException.php │ │ │ ├── ValidationServiceProvider.php │ │ │ └── Validator.php │ │ │ └── View │ │ │ ├── Compilers │ │ │ ├── BladeCompiler.php │ │ │ ├── CompilerInterface.php │ │ │ └── Concerns │ │ │ │ ├── CompilesAuthorizations.php │ │ │ │ ├── CompilesComments.php │ │ │ │ ├── CompilesComponents.php │ │ │ │ ├── CompilesConditionals.php │ │ │ │ ├── CompilesEchos.php │ │ │ │ ├── CompilesIncludes.php │ │ │ │ ├── CompilesInjections.php │ │ │ │ ├── CompilesJson.php │ │ │ │ ├── CompilesLoops.php │ │ │ │ ├── CompilesRawPhp.php │ │ │ │ ├── CompilesStacks.php │ │ │ │ └── CompilesTranslations.php │ │ │ ├── Concerns │ │ │ ├── ManagesComponents.php │ │ │ ├── ManagesEvents.php │ │ │ ├── ManagesLoops.php │ │ │ ├── ManagesStacks.php │ │ │ └── ManagesTranslations.php │ │ │ ├── Engines │ │ │ ├── CompilerEngine.php │ │ │ ├── Engine.php │ │ │ ├── EngineResolver.php │ │ │ ├── FileEngine.php │ │ │ └── PhpEngine.php │ │ │ ├── Factory.php │ │ │ ├── Middleware │ │ │ └── ShareErrorsFromSession.php │ │ │ ├── ViewFinderInterface.php │ │ │ ├── ViewName.php │ │ │ └── ViewServiceProvider.php │ └── tinker │ │ ├── config │ │ └── tinker.php │ │ └── src │ │ ├── ClassAliasAutoloader.php │ │ ├── Console │ │ └── TinkerCommand.php │ │ ├── TinkerCaster.php │ │ └── TinkerServiceProvider.php ├── league │ ├── flysystem │ │ └── src │ │ │ ├── Adapter │ │ │ ├── AbstractAdapter.php │ │ │ ├── AbstractFtpAdapter.php │ │ │ ├── CanOverwriteFiles.php │ │ │ ├── Ftp.php │ │ │ ├── Ftpd.php │ │ │ ├── Local.php │ │ │ ├── NullAdapter.php │ │ │ ├── Polyfill │ │ │ │ ├── NotSupportingVisibilityTrait.php │ │ │ │ ├── StreamedCopyTrait.php │ │ │ │ ├── StreamedReadingTrait.php │ │ │ │ ├── StreamedTrait.php │ │ │ │ └── StreamedWritingTrait.php │ │ │ └── SynologyFtp.php │ │ │ ├── AdapterInterface.php │ │ │ ├── Config.php │ │ │ ├── ConfigAwareTrait.php │ │ │ ├── ConnectionErrorException.php │ │ │ ├── ConnectionRuntimeException.php │ │ │ ├── CorruptedPathDetected.php │ │ │ ├── Directory.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── FileExistsException.php │ │ │ ├── FilesystemException.php │ │ │ ├── FilesystemNotFoundException.php │ │ │ ├── Handler.php │ │ │ ├── InvalidRootException.php │ │ │ ├── MountManager.php │ │ │ ├── NotSupportedException.php │ │ │ ├── Plugin │ │ │ ├── AbstractPlugin.php │ │ │ ├── EmptyDir.php │ │ │ ├── ForcedCopy.php │ │ │ ├── ForcedRename.php │ │ │ ├── GetWithMetadata.php │ │ │ ├── ListFiles.php │ │ │ ├── ListPaths.php │ │ │ ├── ListWith.php │ │ │ ├── PluggableTrait.php │ │ │ └── PluginNotFoundException.php │ │ │ ├── PluginInterface.php │ │ │ ├── ReadInterface.php │ │ │ ├── RootViolationException.php │ │ │ ├── SafeStorage.php │ │ │ ├── UnreadableFileException.php │ │ │ ├── Util.php │ │ │ └── Util │ │ │ ├── ContentListingFormatter.php │ │ │ ├── MimeType.php │ │ │ └── StreamHasher.php │ └── mime-type-detection │ │ └── src │ │ ├── EmptyExtensionToMimeTypeMap.php │ │ ├── ExtensionLookup.php │ │ ├── ExtensionMimeTypeDetector.php │ │ ├── ExtensionToMimeTypeMap.php │ │ ├── FinfoMimeTypeDetector.php │ │ ├── GeneratedExtensionToMimeTypeMap.php │ │ ├── MimeTypeDetector.php │ │ └── OverridingExtensionToMimeTypeMap.php ├── lord │ └── laroute │ │ ├── .travis.yml │ │ ├── config │ │ └── laroute.php │ │ ├── gruntfile.js │ │ ├── karma.js │ │ ├── public │ │ ├── .gitkeep │ │ └── js │ │ │ ├── .gitkeep │ │ │ └── laroute.js │ │ └── src │ │ ├── Compilers │ │ ├── CompilerInterface.php │ │ └── TemplateCompiler.php │ │ ├── Console │ │ └── Commands │ │ │ └── LarouteGeneratorCommand.php │ │ ├── Generators │ │ ├── GeneratorInterface.php │ │ └── TemplateGenerator.php │ │ ├── LarouteServiceProvider.php │ │ ├── Routes │ │ └── Exceptions │ │ │ └── ZeroRoutesException.php │ │ └── templates │ │ ├── laroute.js │ │ └── laroute.min.js ├── mews │ └── purifier │ │ ├── .scrutinizer.yml │ │ ├── config │ │ └── purifier.php │ │ └── src │ │ ├── Facades │ │ └── Purifier.php │ │ ├── PurifierServiceProvider.php │ │ └── helpers.php ├── monolog │ └── monolog │ │ └── src │ │ └── Monolog │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DeduplicationHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticSearchHandler.php │ │ ├── ErrorLogHandler.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 │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── HipChatHandler.php │ │ ├── IFTTTHandler.php │ │ ├── InsightOpsHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NullHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── ProcessableHandlerInterface.php │ │ ├── ProcessableHandlerTrait.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RavenHandler.php │ │ ├── RedisHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── Slack │ │ │ └── SlackRecord.php │ │ ├── SlackHandler.php │ │ ├── SlackWebhookHandler.php │ │ ├── SlackbotHandler.php │ │ ├── SocketHandler.php │ │ ├── StreamHandler.php │ │ ├── SwiftMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TestHandler.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── GitProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── MercurialProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── ProcessorInterface.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ ├── Registry.php │ │ ├── ResettableInterface.php │ │ ├── SignalHandler.php │ │ └── Utils.php ├── mtdowling │ └── cron-expression │ │ └── src │ │ └── Cron │ │ ├── AbstractField.php │ │ ├── DayOfMonthField.php │ │ ├── DayOfWeekField.php │ │ ├── FieldFactory.php │ │ ├── FieldInterface.php │ │ ├── HoursField.php │ │ ├── MinutesField.php │ │ ├── MonthField.php │ │ └── YearField.php ├── natxet │ └── cssmin │ │ └── README ├── nesbot │ └── carbon │ │ └── src │ │ ├── Carbon │ │ ├── CarbonInterval.php │ │ ├── CarbonPeriod.php │ │ ├── Exceptions │ │ │ └── InvalidDateException.php │ │ ├── Lang │ │ │ ├── af.php │ │ │ ├── ar.php │ │ │ ├── ar_Shakl.php │ │ │ ├── az.php │ │ │ ├── bg.php │ │ │ ├── bn.php │ │ │ ├── bs_BA.php │ │ │ ├── ca.php │ │ │ ├── cs.php │ │ │ ├── cy.php │ │ │ ├── da.php │ │ │ ├── de.php │ │ │ ├── dv_MV.php │ │ │ ├── el.php │ │ │ ├── en.php │ │ │ ├── eo.php │ │ │ ├── es.php │ │ │ ├── et.php │ │ │ ├── eu.php │ │ │ ├── fa.php │ │ │ ├── fi.php │ │ │ ├── fo.php │ │ │ ├── fr.php │ │ │ ├── gl.php │ │ │ ├── gu.php │ │ │ ├── he.php │ │ │ ├── hi.php │ │ │ ├── hr.php │ │ │ ├── hu.php │ │ │ ├── hy.php │ │ │ ├── id.php │ │ │ ├── is.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── ka.php │ │ │ ├── kk.php │ │ │ ├── km.php │ │ │ ├── ko.php │ │ │ ├── lt.php │ │ │ ├── lv.php │ │ │ ├── mk.php │ │ │ ├── mn.php │ │ │ ├── ms.php │ │ │ ├── my.php │ │ │ ├── ne.php │ │ │ ├── nl.php │ │ │ ├── no.php │ │ │ ├── oc.php │ │ │ ├── pl.php │ │ │ ├── ps.php │ │ │ ├── pt.php │ │ │ ├── pt_BR.php │ │ │ ├── pt_PT.php │ │ │ ├── ro.php │ │ │ ├── ru.php │ │ │ ├── sh.php │ │ │ ├── sk.php │ │ │ ├── sl.php │ │ │ ├── sq.php │ │ │ ├── sr.php │ │ │ ├── sr_Cyrl.php │ │ │ ├── sr_Cyrl_ME.php │ │ │ ├── sr_Latn_ME.php │ │ │ ├── sr_ME.php │ │ │ ├── sv.php │ │ │ ├── sw.php │ │ │ ├── th.php │ │ │ ├── tr.php │ │ │ ├── uk.php │ │ │ ├── ur.php │ │ │ ├── uz.php │ │ │ ├── vi.php │ │ │ ├── zh.php │ │ │ └── zh_TW.php │ │ └── Laravel │ │ │ └── ServiceProvider.php │ │ └── JsonSerializable.php ├── nikic │ └── php-parser │ │ ├── bin │ │ └── php-parse │ │ └── 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 ├── nwidart │ └── laravel-modules │ │ ├── config │ │ └── config.php │ │ └── src │ │ ├── Collection.php │ │ ├── Commands │ │ ├── CommandMakeCommand.php │ │ ├── ControllerMakeCommand.php │ │ ├── DisableCommand.php │ │ ├── DumpCommand.php │ │ ├── EnableCommand.php │ │ ├── EventMakeCommand.php │ │ ├── FactoryMakeCommand.php │ │ ├── GeneratorCommand.php │ │ ├── InstallCommand.php │ │ ├── JobMakeCommand.php │ │ ├── ListCommand.php │ │ ├── ListenerMakeCommand.php │ │ ├── MailMakeCommand.php │ │ ├── MiddlewareMakeCommand.php │ │ ├── MigrateCommand.php │ │ ├── MigrateRefreshCommand.php │ │ ├── MigrateResetCommand.php │ │ ├── MigrateRollbackCommand.php │ │ ├── MigrateStatusCommand.php │ │ ├── MigrationMakeCommand.php │ │ ├── ModelMakeCommand.php │ │ ├── ModuleMakeCommand.php │ │ ├── NotificationMakeCommand.php │ │ ├── PolicyMakeCommand.php │ │ ├── ProviderMakeCommand.php │ │ ├── PublishCommand.php │ │ ├── PublishConfigurationCommand.php │ │ ├── PublishMigrationCommand.php │ │ ├── PublishTranslationCommand.php │ │ ├── RequestMakeCommand.php │ │ ├── ResourceMakeCommand.php │ │ ├── RouteProviderMakeCommand.php │ │ ├── RuleMakeCommand.php │ │ ├── SeedCommand.php │ │ ├── SeedMakeCommand.php │ │ ├── SetupCommand.php │ │ ├── TestMakeCommand.php │ │ ├── UnUseCommand.php │ │ ├── UpdateCommand.php │ │ ├── UseCommand.php │ │ └── stubs │ │ │ ├── command.stub │ │ │ ├── composer.stub │ │ │ ├── controller-plain.stub │ │ │ ├── controller.stub │ │ │ ├── event.stub │ │ │ ├── factory.stub │ │ │ ├── job-queued.stub │ │ │ ├── job.stub │ │ │ ├── json.stub │ │ │ ├── listener-duck.stub │ │ │ ├── listener-queued-duck.stub │ │ │ ├── listener-queued.stub │ │ │ ├── listener.stub │ │ │ ├── mail.stub │ │ │ ├── middleware.stub │ │ │ ├── migration │ │ │ ├── add.stub │ │ │ ├── create.stub │ │ │ ├── delete.stub │ │ │ ├── drop.stub │ │ │ └── plain.stub │ │ │ ├── model.stub │ │ │ ├── notification.stub │ │ │ ├── policy.plain.stub │ │ │ ├── provider.stub │ │ │ ├── request.stub │ │ │ ├── resource-collection.stub │ │ │ ├── resource.stub │ │ │ ├── route-provider.stub │ │ │ ├── routes.stub │ │ │ ├── rule.stub │ │ │ ├── scaffold │ │ │ ├── config.stub │ │ │ └── provider.stub │ │ │ ├── seeder.stub │ │ │ ├── start.stub │ │ │ ├── unit-test.stub │ │ │ └── views │ │ │ ├── index.stub │ │ │ └── master.stub │ │ ├── Contracts │ │ ├── PublisherInterface.php │ │ ├── RepositoryInterface.php │ │ └── RunableInterface.php │ │ ├── Exceptions │ │ ├── FileAlreadyExistException.php │ │ ├── InvalidAssetPath.php │ │ ├── InvalidJsonException.php │ │ └── ModuleNotFoundException.php │ │ ├── Facades │ │ └── Module.php │ │ ├── Generators │ │ ├── FileGenerator.php │ │ ├── Generator.php │ │ └── ModuleGenerator.php │ │ ├── Laravel │ │ ├── Module.php │ │ └── Repository.php │ │ ├── LaravelModulesServiceProvider.php │ │ ├── Lumen │ │ ├── Module.php │ │ └── Repository.php │ │ ├── LumenModulesServiceProvider.php │ │ ├── Migrations │ │ └── Migrator.php │ │ ├── ModulesServiceProvider.php │ │ ├── Process │ │ ├── Installer.php │ │ ├── Runner.php │ │ └── Updater.php │ │ ├── Providers │ │ ├── BootstrapServiceProvider.php │ │ ├── ConsoleServiceProvider.php │ │ └── ContractsServiceProvider.php │ │ ├── Publishing │ │ ├── AssetPublisher.php │ │ ├── LangPublisher.php │ │ ├── MigrationPublisher.php │ │ └── Publisher.php │ │ ├── Routing │ │ └── Controller.php │ │ ├── Support │ │ ├── Config │ │ │ ├── GenerateConfigReader.php │ │ │ └── GeneratorPath.php │ │ ├── Migrations │ │ │ ├── NameParser.php │ │ │ └── SchemaParser.php │ │ └── Stub.php │ │ ├── Traits │ │ ├── CanClearModulesCache.php │ │ ├── MigrationLoaderTrait.php │ │ └── ModuleCommandTrait.php │ │ └── helpers.php ├── paragonie │ └── random_compat │ │ ├── build-phar.sh │ │ ├── dist │ │ ├── random_compat.phar.pubkey │ │ └── random_compat.phar.pubkey.asc │ │ ├── lib │ │ └── random.php │ │ ├── other │ │ └── build_phar.php │ │ ├── psalm-autoload.php │ │ └── psalm.xml ├── patchwork │ └── utf8 │ │ ├── .travis.yml │ │ ├── appveyor.yml │ │ └── src │ │ ├── Normalizer.php │ │ └── Patchwork │ │ ├── PHP │ │ └── Shim │ │ │ ├── Iconv.php │ │ │ ├── Intl.php │ │ │ ├── Mbstring.php │ │ │ ├── Normalizer.php │ │ │ ├── Xml.php │ │ │ ├── charset │ │ │ ├── from.big5.ser │ │ │ ├── from.cp037.ser │ │ │ ├── from.cp1006.ser │ │ │ ├── from.cp1026.ser │ │ │ ├── from.cp424.ser │ │ │ ├── from.cp437.ser │ │ │ ├── from.cp500.ser │ │ │ ├── from.cp737.ser │ │ │ ├── from.cp775.ser │ │ │ ├── from.cp850.ser │ │ │ ├── from.cp852.ser │ │ │ ├── from.cp855.ser │ │ │ ├── from.cp856.ser │ │ │ ├── from.cp857.ser │ │ │ ├── from.cp860.ser │ │ │ ├── from.cp861.ser │ │ │ ├── from.cp862.ser │ │ │ ├── from.cp863.ser │ │ │ ├── from.cp864.ser │ │ │ ├── from.cp865.ser │ │ │ ├── from.cp866.ser │ │ │ ├── from.cp869.ser │ │ │ ├── from.cp874.ser │ │ │ ├── from.cp875.ser │ │ │ ├── from.cp932.ser │ │ │ ├── from.cp936.ser │ │ │ ├── from.cp949.ser │ │ │ ├── from.cp950.ser │ │ │ ├── from.gsm0338.ser │ │ │ ├── from.iso-8859-1.ser │ │ │ ├── from.iso-8859-10.ser │ │ │ ├── from.iso-8859-11.ser │ │ │ ├── from.iso-8859-13.ser │ │ │ ├── from.iso-8859-14.ser │ │ │ ├── from.iso-8859-15.ser │ │ │ ├── from.iso-8859-16.ser │ │ │ ├── from.iso-8859-2.ser │ │ │ ├── from.iso-8859-3.ser │ │ │ ├── from.iso-8859-4.ser │ │ │ ├── from.iso-8859-5.ser │ │ │ ├── from.iso-8859-6.ser │ │ │ ├── from.iso-8859-7.ser │ │ │ ├── from.iso-8859-8.ser │ │ │ ├── from.iso-8859-9.ser │ │ │ ├── from.koi8-r.ser │ │ │ ├── from.koi8-u.ser │ │ │ ├── from.mazovia.ser │ │ │ ├── from.nextstep.ser │ │ │ ├── from.stdenc.ser │ │ │ ├── from.symbol.ser │ │ │ ├── from.turkish.ser │ │ │ ├── from.us-ascii-quotes.ser │ │ │ ├── from.us-ascii.ser │ │ │ ├── from.windows-1250.ser │ │ │ ├── from.windows-1251.ser │ │ │ ├── from.windows-1252.ser │ │ │ ├── from.windows-1253.ser │ │ │ ├── from.windows-1254.ser │ │ │ ├── from.windows-1255.ser │ │ │ ├── from.windows-1256.ser │ │ │ ├── from.windows-1257.ser │ │ │ ├── from.windows-1258.ser │ │ │ ├── from.x-mac-ce.ser │ │ │ ├── from.x-mac-cyrillic.ser │ │ │ ├── from.x-mac-greek.ser │ │ │ ├── from.x-mac-icelandic.ser │ │ │ ├── from.x-mac-roman.ser │ │ │ ├── from.zdingbat.ser │ │ │ ├── to.gsm0338.ser │ │ │ ├── to.mazovia.ser │ │ │ ├── to.stdenc.ser │ │ │ ├── to.symbol.ser │ │ │ ├── to.zdingbat.ser │ │ │ └── translit.ser │ │ │ └── unidata │ │ │ ├── canonicalComposition.ser │ │ │ ├── canonicalDecomposition.ser │ │ │ ├── combiningClass.ser │ │ │ ├── compatibilityDecomposition.ser │ │ │ ├── lowerCase.ser │ │ │ └── upperCase.ser │ │ ├── TurkishUtf8.php │ │ ├── Utf8.php │ │ └── Utf8 │ │ ├── BestFit.php │ │ ├── Bootup.php │ │ ├── Bootup │ │ ├── iconv.php │ │ ├── intl.php │ │ ├── mbstring.php │ │ └── utf8_encode.php │ │ ├── WindowsStreamWrapper.php │ │ └── data │ │ ├── caseFolding_full.ser │ │ ├── to.bestfit1250.ser │ │ ├── to.bestfit1251.ser │ │ ├── to.bestfit1252.ser │ │ ├── to.bestfit1253.ser │ │ ├── to.bestfit1254.ser │ │ ├── to.bestfit1255.ser │ │ ├── to.bestfit1256.ser │ │ ├── to.bestfit1257.ser │ │ ├── to.bestfit1258.ser │ │ ├── to.bestfit874.ser │ │ ├── to.bestfit932.ser │ │ ├── to.bestfit936.ser │ │ ├── to.bestfit949.ser │ │ ├── to.bestfit950.ser │ │ └── translit_extra.ser ├── psr │ ├── container │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── http-message │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ ├── log │ │ └── Psr │ │ │ └── Log │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ ├── NullLogger.php │ │ │ └── Test │ │ │ └── LoggerInterfaceTest.php │ └── simple-cache │ │ └── src │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php ├── psy │ └── psysh │ │ ├── .phan │ │ └── config.php │ │ ├── .styleci.yml │ │ ├── .travis.yml │ │ ├── bin │ │ ├── build-stub │ │ └── psysh │ │ └── src │ │ ├── CodeCleaner │ │ ├── AbstractClassPass.php │ │ ├── AssignThisVariablePass.php │ │ ├── CallTimePassByReferencePass.php │ │ ├── CalledClassPass.php │ │ ├── CodeCleanerPass.php │ │ ├── ExitPass.php │ │ ├── FinalClassPass.php │ │ ├── FunctionContextPass.php │ │ ├── FunctionReturnInWriteContextPass.php │ │ ├── ImplicitReturnPass.php │ │ ├── InstanceOfPass.php │ │ ├── LeavePsyshAlonePass.php │ │ ├── LegacyEmptyPass.php │ │ ├── ListPass.php │ │ ├── LoopContextPass.php │ │ ├── MagicConstantsPass.php │ │ ├── NamespaceAwarePass.php │ │ ├── NamespacePass.php │ │ ├── NoReturnValue.php │ │ ├── PassableByReferencePass.php │ │ ├── RequirePass.php │ │ ├── StrictTypesPass.php │ │ ├── UseStatementPass.php │ │ ├── ValidClassNamePass.php │ │ ├── ValidConstantPass.php │ │ ├── ValidConstructorPass.php │ │ └── ValidFunctionNamePass.php │ │ ├── Command │ │ ├── BufferCommand.php │ │ ├── ClearCommand.php │ │ ├── DocCommand.php │ │ ├── DumpCommand.php │ │ ├── EditCommand.php │ │ ├── ExitCommand.php │ │ ├── HelpCommand.php │ │ ├── HistoryCommand.php │ │ ├── ListCommand │ │ │ ├── GlobalVariableEnumerator.php │ │ │ ├── InterfaceEnumerator.php │ │ │ ├── MethodEnumerator.php │ │ │ ├── PropertyEnumerator.php │ │ │ ├── TraitEnumerator.php │ │ │ └── VariableEnumerator.php │ │ ├── ParseCommand.php │ │ ├── PsyVersionCommand.php │ │ ├── ReflectingCommand.php │ │ ├── ShowCommand.php │ │ ├── SudoCommand.php │ │ ├── ThrowUpCommand.php │ │ ├── TimeitCommand.php │ │ ├── TraceCommand.php │ │ ├── WhereamiCommand.php │ │ └── WtfCommand.php │ │ ├── ConfigPaths.php │ │ ├── Configuration.php │ │ ├── ConsoleColorFactory.php │ │ ├── Context.php │ │ ├── ContextAware.php │ │ ├── Exception │ │ ├── DeprecatedException.php │ │ ├── Exception.php │ │ ├── FatalErrorException.php │ │ ├── ParseErrorException.php │ │ ├── RuntimeException.php │ │ ├── ThrowUpException.php │ │ └── TypeErrorException.php │ │ ├── ExecutionClosure.php │ │ ├── ExecutionLoop.php │ │ ├── ExecutionLoop │ │ ├── AbstractListener.php │ │ ├── Listener.php │ │ ├── ProcessForker.php │ │ └── RunkitReloader.php │ │ ├── ExecutionLoopClosure.php │ │ ├── Formatter │ │ ├── CodeFormatter.php │ │ ├── DocblockFormatter.php │ │ ├── Formatter.php │ │ └── SignatureFormatter.php │ │ ├── Input │ │ ├── CodeArgument.php │ │ └── SilentInput.php │ │ ├── Output │ │ ├── OutputPager.php │ │ ├── PassthruPager.php │ │ └── ProcOutputPager.php │ │ ├── ParserFactory.php │ │ ├── Readline │ │ ├── GNUReadline.php │ │ ├── HoaConsole.php │ │ ├── Libedit.php │ │ ├── Readline.php │ │ └── Transient.php │ │ ├── Reflection │ │ ├── ReflectionClassConstant.php │ │ ├── ReflectionConstant.php │ │ ├── ReflectionConstant_.php │ │ ├── ReflectionLanguageConstruct.php │ │ └── ReflectionLanguageConstructParameter.php │ │ ├── Sudo.php │ │ ├── Sudo │ │ └── SudoVisitor.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 │ │ ├── Presenter.php │ │ └── PresenterAware.php │ │ ├── VersionUpdater │ │ ├── Checker.php │ │ ├── GitHubChecker.php │ │ ├── IntervalChecker.php │ │ └── NoopChecker.php │ │ └── functions.php ├── rachidlaasri │ └── laravel-installer │ │ └── src │ │ ├── Config │ │ └── installer.php │ │ ├── Controllers │ │ ├── DatabaseController.php │ │ ├── PermissionsController.php │ │ ├── RequirementsController.php │ │ ├── UpdateController.php │ │ └── WelcomeController.php │ │ ├── Events │ │ └── LaravelInstallerFinished.php │ │ ├── Helpers │ │ ├── MigrationsHelper.php │ │ └── functions.php │ │ ├── Lang │ │ ├── ar │ │ │ └── installer_messages.php │ │ ├── de │ │ │ └── installer_messages.php │ │ ├── en │ │ │ └── installer_messages.php │ │ ├── es │ │ │ └── installer_messages.php │ │ ├── et │ │ │ └── installer_messages.php │ │ ├── fa │ │ │ └── installer_messages.php │ │ ├── fr │ │ │ └── installer_messages.php │ │ ├── gr │ │ │ └── installer_messages.php │ │ ├── id │ │ │ └── installer_messages.php │ │ ├── it │ │ │ └── installer_messages.php │ │ ├── nl │ │ │ └── installer_messages.php │ │ ├── pl │ │ │ └── installer_messages.php │ │ ├── pt-br │ │ │ └── installer_messages.php │ │ ├── pt │ │ │ └── installer_messages.php │ │ ├── ro │ │ │ └── installer_messages.php │ │ ├── ru │ │ │ └── installer_messages.php │ │ ├── tr │ │ │ └── installer_messages.php │ │ ├── zh-CN │ │ │ └── installer_messages.php │ │ └── zh-TW │ │ │ └── installer_messages.php │ │ ├── Middleware │ │ └── canUpdate.php │ │ ├── Routes │ │ └── web.php │ │ ├── Views │ │ ├── environment-classic.blade.php │ │ ├── environment-wizard.blade.php │ │ ├── environment.blade.php │ │ ├── finished.blade.php │ │ ├── layouts │ │ │ ├── master-update.blade.php │ │ │ └── master.blade.php │ │ ├── permissions.blade.php │ │ ├── requirements.blade.php │ │ ├── update │ │ │ ├── finished.blade.php │ │ │ ├── overview.blade.php │ │ │ └── welcome.blade.php │ │ └── welcome.blade.php │ │ └── assets │ │ ├── css │ │ ├── sass │ │ │ ├── _variables.sass │ │ │ └── style.sass │ │ ├── scss │ │ │ ├── _variables.scss │ │ │ ├── font-awesome │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ │ └── style.scss │ │ ├── style.css │ │ ├── style.css.map │ │ ├── style.min.css │ │ └── style.min.css.map │ │ └── fonts │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ └── ionicons.woff ├── ralouphie │ └── getallheaders │ │ └── src │ │ └── getallheaders.php ├── ramsey │ └── uuid │ │ └── src │ │ ├── BinaryUtils.php │ │ ├── Builder │ │ ├── DefaultUuidBuilder.php │ │ ├── DegradedUuidBuilder.php │ │ └── UuidBuilderInterface.php │ │ ├── Codec │ │ ├── CodecInterface.php │ │ ├── GuidStringCodec.php │ │ ├── OrderedTimeCodec.php │ │ ├── StringCodec.php │ │ ├── TimestampFirstCombCodec.php │ │ └── TimestampLastCombCodec.php │ │ ├── Converter │ │ ├── Number │ │ │ ├── BigNumberConverter.php │ │ │ └── DegradedNumberConverter.php │ │ ├── NumberConverterInterface.php │ │ ├── Time │ │ │ ├── BigNumberTimeConverter.php │ │ │ ├── DegradedTimeConverter.php │ │ │ └── PhpTimeConverter.php │ │ └── TimeConverterInterface.php │ │ ├── DegradedUuid.php │ │ ├── Exception │ │ ├── InvalidUuidStringException.php │ │ ├── UnsatisfiedDependencyException.php │ │ └── UnsupportedOperationException.php │ │ ├── FeatureSet.php │ │ ├── Generator │ │ ├── CombGenerator.php │ │ ├── DefaultTimeGenerator.php │ │ ├── MtRandGenerator.php │ │ ├── OpenSslGenerator.php │ │ ├── PeclUuidRandomGenerator.php │ │ ├── PeclUuidTimeGenerator.php │ │ ├── RandomBytesGenerator.php │ │ ├── RandomGeneratorFactory.php │ │ ├── RandomGeneratorInterface.php │ │ ├── RandomLibAdapter.php │ │ ├── SodiumRandomGenerator.php │ │ ├── TimeGeneratorFactory.php │ │ └── TimeGeneratorInterface.php │ │ ├── Provider │ │ ├── Node │ │ │ ├── FallbackNodeProvider.php │ │ │ ├── RandomNodeProvider.php │ │ │ └── SystemNodeProvider.php │ │ ├── NodeProviderInterface.php │ │ ├── Time │ │ │ ├── FixedTimeProvider.php │ │ │ └── SystemTimeProvider.php │ │ └── TimeProviderInterface.php │ │ ├── UuidFactoryInterface.php │ │ ├── UuidInterface.php │ │ └── functions.php ├── rap2hpoutre │ └── laravel-log-viewer │ │ ├── .travis.yml │ │ └── src │ │ ├── Rap2hpoutre │ │ └── LaravelLogViewer │ │ │ ├── LaravelLogViewerServiceProvider.php │ │ │ ├── Level.php │ │ │ └── Pattern.php │ │ ├── config │ │ └── logviewer.php │ │ └── views │ │ └── log.blade.php ├── spatie │ ├── laravel-activitylog │ │ ├── .styleci.yml │ │ ├── config │ │ │ └── activitylog.php │ │ ├── migrations │ │ │ └── create_activity_log_table.php.stub │ │ └── src │ │ │ ├── ActivityLogger.php │ │ │ ├── ActivitylogServiceProvider.php │ │ │ ├── CleanActivitylogCommand.php │ │ │ ├── Exceptions │ │ │ ├── CouldNotLogActivity.php │ │ │ ├── CouldNotLogChanges.php │ │ │ └── InvalidConfiguration.php │ │ │ ├── Models │ │ │ └── Activity.php │ │ │ ├── Traits │ │ │ ├── CausesActivity.php │ │ │ ├── DetectsChanges.php │ │ │ ├── HasActivity.php │ │ │ └── LogsActivity.php │ │ │ └── helpers.php │ └── string │ │ └── src │ │ ├── Exceptions │ │ ├── ErrorCreatingStringException.php │ │ ├── UnknownFunctionException.php │ │ └── UnsetOffsetException.php │ │ ├── Integrations │ │ └── Underscore.php │ │ └── string_functions.php ├── swiftmailer │ └── swiftmailer │ │ ├── .travis.yml │ │ ├── CHANGES │ │ ├── README │ │ ├── doc │ │ ├── headers.rst │ │ ├── index.rst │ │ ├── introduction.rst │ │ ├── japanese.rst │ │ ├── messages.rst │ │ ├── plugins.rst │ │ └── sending.rst │ │ └── lib │ │ ├── classes │ │ ├── Swift.php │ │ └── Swift │ │ │ ├── AddressEncoder.php │ │ │ ├── AddressEncoder │ │ │ ├── IdnAddressEncoder.php │ │ │ └── Utf8AddressEncoder.php │ │ │ ├── AddressEncoderException.php │ │ │ ├── ByteStream │ │ │ ├── AbstractFilterableInputStream.php │ │ │ ├── ArrayByteStream.php │ │ │ ├── FileByteStream.php │ │ │ └── TemporaryFileByteStream.php │ │ │ ├── CharacterReader.php │ │ │ ├── CharacterReader │ │ │ ├── GenericFixedWidthReader.php │ │ │ ├── UsAsciiReader.php │ │ │ └── Utf8Reader.php │ │ │ ├── CharacterReaderFactory.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ ├── CharacterStream.php │ │ │ ├── CharacterStream │ │ │ ├── ArrayCharacterStream.php │ │ │ └── NgCharacterStream.php │ │ │ ├── ConfigurableSpool.php │ │ │ ├── DependencyContainer.php │ │ │ ├── DependencyException.php │ │ │ ├── Encoder.php │ │ │ ├── Encoder │ │ │ ├── Base64Encoder.php │ │ │ └── Rfc2231Encoder.php │ │ │ ├── Events │ │ │ ├── CommandEvent.php │ │ │ ├── CommandListener.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventListener.php │ │ │ ├── EventObject.php │ │ │ ├── ResponseEvent.php │ │ │ ├── ResponseListener.php │ │ │ ├── SendEvent.php │ │ │ ├── SendListener.php │ │ │ ├── SimpleEventDispatcher.php │ │ │ ├── TransportChangeEvent.php │ │ │ ├── TransportChangeListener.php │ │ │ ├── TransportExceptionEvent.php │ │ │ └── TransportExceptionListener.php │ │ │ ├── FailoverTransport.php │ │ │ ├── FileSpool.php │ │ │ ├── FileStream.php │ │ │ ├── Filterable.php │ │ │ ├── IdGenerator.php │ │ │ ├── Image.php │ │ │ ├── InputByteStream.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCache.php │ │ │ ├── KeyCacheInputStream.php │ │ │ └── NullKeyCache.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── Mailer.php │ │ │ ├── Mailer │ │ │ ├── ArrayRecipientIterator.php │ │ │ └── RecipientIterator.php │ │ │ ├── MemorySpool.php │ │ │ ├── Mime │ │ │ ├── Attachment.php │ │ │ ├── CharsetObserver.php │ │ │ ├── ContentEncoder.php │ │ │ ├── ContentEncoder │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ ├── NullContentEncoder.php │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ └── RawContentEncoder.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── EncodingObserver.php │ │ │ ├── Header.php │ │ │ ├── HeaderEncoder.php │ │ │ ├── HeaderEncoder │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ └── QpHeaderEncoder.php │ │ │ ├── Headers │ │ │ │ ├── DateHeader.php │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ ├── PathHeader.php │ │ │ │ └── UnstructuredHeader.php │ │ │ ├── IdGenerator.php │ │ │ ├── SimpleMessage.php │ │ │ └── SimpleMimeEntity.php │ │ │ ├── NullTransport.php │ │ │ ├── OutputByteStream.php │ │ │ ├── Plugins │ │ │ ├── AntiFloodPlugin.php │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ ├── Decorator │ │ │ │ └── Replacements.php │ │ │ ├── DecoratorPlugin.php │ │ │ ├── ImpersonatePlugin.php │ │ │ ├── Logger.php │ │ │ ├── LoggerPlugin.php │ │ │ ├── Loggers │ │ │ │ ├── ArrayLogger.php │ │ │ │ └── EchoLogger.php │ │ │ ├── MessageLogger.php │ │ │ ├── Pop │ │ │ │ ├── Pop3Connection.php │ │ │ │ └── Pop3Exception.php │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ ├── RedirectingPlugin.php │ │ │ ├── Reporter.php │ │ │ ├── ReporterPlugin.php │ │ │ ├── Reporters │ │ │ │ ├── HitReporter.php │ │ │ │ └── HtmlReporter.php │ │ │ ├── Sleeper.php │ │ │ ├── ThrottlerPlugin.php │ │ │ └── Timer.php │ │ │ ├── Preferences.php │ │ │ ├── ReplacementFilterFactory.php │ │ │ ├── RfcComplianceException.php │ │ │ ├── Signer.php │ │ │ ├── Signers │ │ │ ├── BodySigner.php │ │ │ ├── DKIMSigner.php │ │ │ ├── DomainKeySigner.php │ │ │ ├── HeaderSigner.php │ │ │ ├── OpenDKIMSigner.php │ │ │ └── SMimeSigner.php │ │ │ ├── Spool.php │ │ │ ├── SpoolTransport.php │ │ │ ├── StreamFilter.php │ │ │ ├── StreamFilters │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ ├── StringReplacementFilter.php │ │ │ └── StringReplacementFilterFactory.php │ │ │ ├── Transport.php │ │ │ └── Transport │ │ │ ├── Esmtp │ │ │ ├── Auth │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ └── XOAuth2Authenticator.php │ │ │ ├── Authenticator.php │ │ │ ├── EightBitMimeHandler.php │ │ │ └── SmtpUtf8Handler.php │ │ │ ├── EsmtpHandler.php │ │ │ ├── FailoverTransport.php │ │ │ ├── IoBuffer.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── NullTransport.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SmtpAgent.php │ │ │ └── SpoolTransport.php │ │ ├── dependency_maps │ │ ├── cache_deps.php │ │ ├── message_deps.php │ │ ├── mime_deps.php │ │ └── transport_deps.php │ │ ├── mime_types.php │ │ ├── preferences.php │ │ ├── swift_required.php │ │ └── swiftmailer_generate_mimes_config.php ├── symfony │ ├── console │ │ ├── Command │ │ │ ├── HelpCommand.php │ │ │ ├── ListCommand.php │ │ │ └── LockableTrait.php │ │ ├── CommandLoader │ │ │ ├── CommandLoaderInterface.php │ │ │ ├── ContainerCommandLoader.php │ │ │ └── FactoryCommandLoader.php │ │ ├── ConsoleEvents.php │ │ ├── DependencyInjection │ │ │ └── AddConsoleCommandPass.php │ │ ├── Descriptor │ │ │ ├── ApplicationDescription.php │ │ │ ├── Descriptor.php │ │ │ ├── DescriptorInterface.php │ │ │ ├── JsonDescriptor.php │ │ │ ├── MarkdownDescriptor.php │ │ │ └── XmlDescriptor.php │ │ ├── Event │ │ │ ├── ConsoleCommandEvent.php │ │ │ ├── ConsoleErrorEvent.php │ │ │ ├── ConsoleEvent.php │ │ │ ├── ConsoleExceptionEvent.php │ │ │ └── ConsoleTerminateEvent.php │ │ ├── EventListener │ │ │ └── ErrorListener.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidOptionException.php │ │ │ ├── LogicException.php │ │ │ └── RuntimeException.php │ │ ├── Formatter │ │ │ ├── OutputFormatter.php │ │ │ ├── OutputFormatterInterface.php │ │ │ ├── OutputFormatterStyle.php │ │ │ └── OutputFormatterStyleInterface.php │ │ ├── Helper │ │ │ ├── DebugFormatterHelper.php │ │ │ ├── DescriptorHelper.php │ │ │ ├── FormatterHelper.php │ │ │ ├── InputAwareHelper.php │ │ │ ├── ProgressBar.php │ │ │ ├── ProgressIndicator.php │ │ │ ├── QuestionHelper.php │ │ │ ├── SymfonyQuestionHelper.php │ │ │ ├── TableCell.php │ │ │ ├── TableSeparator.php │ │ │ └── TableStyle.php │ │ ├── Input │ │ │ ├── InputArgument.php │ │ │ ├── InputAwareInterface.php │ │ │ ├── InputDefinition.php │ │ │ ├── InputInterface.php │ │ │ ├── InputOption.php │ │ │ └── StreamableInputInterface.php │ │ ├── Logger │ │ │ └── ConsoleLogger.php │ │ ├── Output │ │ │ ├── BufferedOutput.php │ │ │ ├── ConsoleOutput.php │ │ │ ├── ConsoleOutputInterface.php │ │ │ ├── NullOutput.php │ │ │ └── OutputInterface.php │ │ ├── Question │ │ │ ├── ChoiceQuestion.php │ │ │ └── ConfirmationQuestion.php │ │ ├── Resources │ │ │ └── bin │ │ │ │ └── hiddeninput.exe │ │ ├── Style │ │ │ ├── OutputStyle.php │ │ │ ├── StyleInterface.php │ │ │ └── SymfonyStyle.php │ │ ├── Terminal.php │ │ ├── Tester │ │ │ ├── ApplicationTester.php │ │ │ └── CommandTester.php │ │ └── Tests │ │ │ ├── ApplicationTest.php │ │ │ ├── Command │ │ │ ├── CommandTest.php │ │ │ ├── HelpCommandTest.php │ │ │ ├── ListCommandTest.php │ │ │ └── LockableTraitTest.php │ │ │ ├── CommandLoader │ │ │ ├── ContainerCommandLoaderTest.php │ │ │ └── FactoryCommandLoaderTest.php │ │ │ ├── DependencyInjection │ │ │ └── AddConsoleCommandPassTest.php │ │ │ ├── Descriptor │ │ │ ├── AbstractDescriptorTest.php │ │ │ ├── ApplicationDescriptionTest.php │ │ │ ├── JsonDescriptorTest.php │ │ │ ├── MarkdownDescriptorTest.php │ │ │ ├── ObjectsProvider.php │ │ │ ├── TextDescriptorTest.php │ │ │ └── XmlDescriptorTest.php │ │ │ ├── EventListener │ │ │ └── ErrorListenerTest.php │ │ │ ├── Fixtures │ │ │ ├── BarBucCommand.php │ │ │ ├── DescriptorApplication1.php │ │ │ ├── DescriptorApplication2.php │ │ │ ├── DescriptorApplicationMbString.php │ │ │ ├── DescriptorCommand1.php │ │ │ ├── DescriptorCommand2.php │ │ │ ├── DescriptorCommand3.php │ │ │ ├── DescriptorCommand4.php │ │ │ ├── DescriptorCommandMbString.php │ │ │ ├── DummyOutput.php │ │ │ ├── Foo1Command.php │ │ │ ├── Foo2Command.php │ │ │ ├── Foo3Command.php │ │ │ ├── Foo4Command.php │ │ │ ├── Foo5Command.php │ │ │ ├── Foo6Command.php │ │ │ ├── FooCommand.php │ │ │ ├── FooHiddenCommand.php │ │ │ ├── FooLock2Command.php │ │ │ ├── FooLockCommand.php │ │ │ ├── FooOptCommand.php │ │ │ ├── FooSameCaseLowercaseCommand.php │ │ │ ├── FooSameCaseUppercaseCommand.php │ │ │ ├── FooSubnamespaced1Command.php │ │ │ ├── FooSubnamespaced2Command.php │ │ │ ├── FoobarCommand.php │ │ │ ├── Style │ │ │ │ └── SymfonyStyle │ │ │ │ │ └── command │ │ │ │ │ ├── command_0.php │ │ │ │ │ ├── command_1.php │ │ │ │ │ ├── command_10.php │ │ │ │ │ ├── command_11.php │ │ │ │ │ ├── command_12.php │ │ │ │ │ ├── command_13.php │ │ │ │ │ ├── command_14.php │ │ │ │ │ ├── command_15.php │ │ │ │ │ ├── command_16.php │ │ │ │ │ ├── command_17.php │ │ │ │ │ ├── command_2.php │ │ │ │ │ ├── command_3.php │ │ │ │ │ ├── command_4.php │ │ │ │ │ ├── command_5.php │ │ │ │ │ ├── command_6.php │ │ │ │ │ ├── command_7.php │ │ │ │ │ ├── command_8.php │ │ │ │ │ ├── command_9.php │ │ │ │ │ └── interactive_command_1.php │ │ │ ├── TestAmbiguousCommandRegistering.php │ │ │ ├── TestAmbiguousCommandRegistering2.php │ │ │ ├── TestCommand.php │ │ │ ├── application_1.json │ │ │ ├── application_1.xml │ │ │ ├── application_2.json │ │ │ ├── application_2.xml │ │ │ ├── command_1.json │ │ │ ├── command_1.xml │ │ │ ├── command_2.json │ │ │ ├── command_2.xml │ │ │ ├── input_argument_1.json │ │ │ ├── input_argument_1.xml │ │ │ ├── input_argument_2.json │ │ │ ├── input_argument_2.xml │ │ │ ├── input_argument_3.json │ │ │ ├── input_argument_3.xml │ │ │ ├── input_argument_4.json │ │ │ ├── input_argument_4.xml │ │ │ ├── input_argument_with_default_inf_value.json │ │ │ ├── input_argument_with_default_inf_value.xml │ │ │ ├── input_argument_with_style.json │ │ │ ├── input_argument_with_style.xml │ │ │ ├── input_definition_1.json │ │ │ ├── input_definition_1.xml │ │ │ ├── input_definition_2.json │ │ │ ├── input_definition_2.xml │ │ │ ├── input_definition_3.json │ │ │ ├── input_definition_3.xml │ │ │ ├── input_definition_4.json │ │ │ ├── input_definition_4.xml │ │ │ ├── input_option_1.json │ │ │ ├── input_option_1.xml │ │ │ ├── input_option_2.json │ │ │ ├── input_option_2.xml │ │ │ ├── input_option_3.json │ │ │ ├── input_option_3.xml │ │ │ ├── input_option_4.json │ │ │ ├── input_option_4.xml │ │ │ ├── input_option_5.json │ │ │ ├── input_option_5.xml │ │ │ ├── input_option_6.json │ │ │ ├── input_option_6.xml │ │ │ ├── input_option_with_default_inf_value.json │ │ │ ├── input_option_with_default_inf_value.xml │ │ │ ├── input_option_with_style.json │ │ │ ├── input_option_with_style.xml │ │ │ ├── input_option_with_style_array.json │ │ │ └── input_option_with_style_array.xml │ │ │ ├── Formatter │ │ │ ├── OutputFormatterStyleStackTest.php │ │ │ ├── OutputFormatterStyleTest.php │ │ │ └── OutputFormatterTest.php │ │ │ ├── Helper │ │ │ ├── AbstractQuestionHelperTest.php │ │ │ ├── FormatterHelperTest.php │ │ │ ├── HelperSetTest.php │ │ │ ├── HelperTest.php │ │ │ ├── ProcessHelperTest.php │ │ │ ├── ProgressBarTest.php │ │ │ ├── ProgressIndicatorTest.php │ │ │ ├── QuestionHelperTest.php │ │ │ ├── SymfonyQuestionHelperTest.php │ │ │ ├── TableStyleTest.php │ │ │ └── TableTest.php │ │ │ ├── Input │ │ │ ├── ArgvInputTest.php │ │ │ ├── ArrayInputTest.php │ │ │ ├── InputArgumentTest.php │ │ │ ├── InputDefinitionTest.php │ │ │ ├── InputOptionTest.php │ │ │ ├── InputTest.php │ │ │ └── StringInputTest.php │ │ │ ├── Logger │ │ │ └── ConsoleLoggerTest.php │ │ │ ├── Output │ │ │ ├── ConsoleOutputTest.php │ │ │ ├── NullOutputTest.php │ │ │ ├── OutputTest.php │ │ │ └── StreamOutputTest.php │ │ │ ├── Question │ │ │ ├── ChoiceQuestionTest.php │ │ │ └── ConfirmationQuestionTest.php │ │ │ ├── Style │ │ │ └── SymfonyStyleTest.php │ │ │ ├── TerminalTest.php │ │ │ └── Tester │ │ │ ├── ApplicationTesterTest.php │ │ │ └── CommandTesterTest.php │ ├── css-selector │ │ ├── CssSelectorConverter.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── ExpressionErrorException.php │ │ │ ├── InternalErrorException.php │ │ │ ├── ParseException.php │ │ │ └── SyntaxErrorException.php │ │ ├── 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 │ │ ├── Tests │ │ │ ├── CssSelectorConverterTest.php │ │ │ ├── Node │ │ │ │ ├── AbstractNodeTest.php │ │ │ │ ├── AttributeNodeTest.php │ │ │ │ ├── ClassNodeTest.php │ │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ │ ├── ElementNodeTest.php │ │ │ │ ├── FunctionNodeTest.php │ │ │ │ ├── HashNodeTest.php │ │ │ │ ├── NegationNodeTest.php │ │ │ │ ├── PseudoNodeTest.php │ │ │ │ ├── SelectorNodeTest.php │ │ │ │ └── SpecificityTest.php │ │ │ ├── Parser │ │ │ │ ├── Handler │ │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ │ ├── HashHandlerTest.php │ │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ │ ├── StringHandlerTest.php │ │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ │ ├── ParserTest.php │ │ │ │ ├── ReaderTest.php │ │ │ │ ├── Shortcut │ │ │ │ │ ├── ClassParserTest.php │ │ │ │ │ ├── ElementParserTest.php │ │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ │ └── HashParserTest.php │ │ │ │ └── TokenStreamTest.php │ │ │ └── XPath │ │ │ │ ├── Fixtures │ │ │ │ ├── ids.html │ │ │ │ ├── lang.xml │ │ │ │ └── shakespear.html │ │ │ │ └── TranslatorTest.php │ │ └── XPath │ │ │ ├── Extension │ │ │ ├── AbstractExtension.php │ │ │ ├── AttributeMatchingExtension.php │ │ │ ├── CombinationExtension.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── FunctionExtension.php │ │ │ ├── HtmlExtension.php │ │ │ └── PseudoClassExtension.php │ │ │ ├── Translator.php │ │ │ ├── TranslatorInterface.php │ │ │ └── XPathExpr.php │ ├── debug │ │ ├── BufferingLogger.php │ │ ├── Debug.php │ │ ├── DebugClassLoader.php │ │ ├── ErrorHandler.php │ │ ├── Exception │ │ │ ├── ClassNotFoundException.php │ │ │ ├── ContextErrorException.php │ │ │ ├── FatalThrowableError.php │ │ │ ├── FlattenException.php │ │ │ ├── OutOfMemoryException.php │ │ │ ├── SilencedErrorContext.php │ │ │ ├── UndefinedFunctionException.php │ │ │ └── UndefinedMethodException.php │ │ ├── FatalErrorHandler │ │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ │ ├── FatalErrorHandlerInterface.php │ │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ │ └── UndefinedMethodFatalErrorHandler.php │ │ ├── Resources │ │ │ └── ext │ │ │ │ ├── config.m4 │ │ │ │ ├── config.w32 │ │ │ │ ├── php_symfony_debug.h │ │ │ │ └── symfony_debug.c │ │ └── Tests │ │ │ ├── DebugClassLoaderTest.php │ │ │ ├── ErrorHandlerTest.php │ │ │ ├── Exception │ │ │ └── FlattenExceptionTest.php │ │ │ ├── ExceptionHandlerTest.php │ │ │ ├── FatalErrorHandler │ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ │ │ ├── Fixtures │ │ │ ├── AnnotatedClass.php │ │ │ ├── ClassAlias.php │ │ │ ├── DeprecatedClass.php │ │ │ ├── DeprecatedInterface.php │ │ │ ├── ExtendedFinalMethod.php │ │ │ ├── FinalClass.php │ │ │ ├── FinalMethod.php │ │ │ ├── FinalMethod2Trait.php │ │ │ ├── InternalClass.php │ │ │ ├── InternalInterface.php │ │ │ ├── InternalTrait.php │ │ │ ├── InternalTrait2.php │ │ │ ├── NonDeprecatedInterface.php │ │ │ ├── PEARClass.php │ │ │ ├── Throwing.php │ │ │ ├── ToStringThrower.php │ │ │ ├── TraitWithInternalMethod.php │ │ │ ├── casemismatch.php │ │ │ ├── notPsr0Bis.php │ │ │ ├── psr4 │ │ │ │ └── Psr4CaseMismatch.php │ │ │ └── reallyNotPsr0.php │ │ │ ├── Fixtures2 │ │ │ └── RequiredTwice.php │ │ │ ├── HeaderMock.php │ │ │ ├── MockExceptionHandler.php │ │ │ └── phpt │ │ │ ├── debug_class_loader.phpt │ │ │ ├── decorate_exception_hander.phpt │ │ │ ├── exception_rethrown.phpt │ │ │ └── fatal_with_nested_handlers.phpt │ ├── event-dispatcher │ │ ├── ContainerAwareEventDispatcher.php │ │ ├── Debug │ │ │ ├── TraceableEventDispatcher.php │ │ │ ├── TraceableEventDispatcherInterface.php │ │ │ └── WrappedListener.php │ │ ├── DependencyInjection │ │ │ └── RegisterListenersPass.php │ │ ├── Event.php │ │ ├── EventDispatcher.php │ │ ├── EventDispatcherInterface.php │ │ ├── EventSubscriberInterface.php │ │ ├── GenericEvent.php │ │ ├── ImmutableEventDispatcher.php │ │ └── Tests │ │ │ ├── AbstractEventDispatcherTest.php │ │ │ ├── ContainerAwareEventDispatcherTest.php │ │ │ ├── Debug │ │ │ └── TraceableEventDispatcherTest.php │ │ │ ├── DependencyInjection │ │ │ └── RegisterListenersPassTest.php │ │ │ ├── EventDispatcherTest.php │ │ │ ├── EventTest.php │ │ │ ├── GenericEventTest.php │ │ │ └── ImmutableEventDispatcherTest.php │ ├── finder │ │ ├── Comparator │ │ │ ├── Comparator.php │ │ │ ├── DateComparator.php │ │ │ └── NumberComparator.php │ │ ├── Exception │ │ │ ├── AccessDeniedException.php │ │ │ └── ExceptionInterface.php │ │ ├── Glob.php │ │ ├── Iterator │ │ │ ├── CustomFilterIterator.php │ │ │ ├── FilecontentFilterIterator.php │ │ │ ├── MultiplePcreFilterIterator.php │ │ │ └── SizeRangeFilterIterator.php │ │ ├── SplFileInfo.php │ │ └── Tests │ │ │ ├── Comparator │ │ │ ├── ComparatorTest.php │ │ │ ├── DateComparatorTest.php │ │ │ └── NumberComparatorTest.php │ │ │ ├── FinderTest.php │ │ │ ├── Fixtures │ │ │ ├── .dot │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ │ ├── C │ │ │ │ │ │ └── abc.dat │ │ │ │ │ └── ab.dat │ │ │ │ └── a.dat │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── B │ │ │ │ │ ├── C │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── ab.dat.copy │ │ │ │ │ └── a.dat.copy │ │ │ ├── one │ │ │ │ ├── .dot │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ └── r+e.gex[c]a(r)s │ │ │ │ └── dir │ │ │ │ └── bar.dat │ │ │ ├── GlobTest.php │ │ │ └── Iterator │ │ │ ├── CustomFilterIteratorTest.php │ │ │ ├── DateRangeFilterIteratorTest.php │ │ │ ├── DepthRangeFilterIteratorTest.php │ │ │ ├── ExcludeDirectoryFilterIteratorTest.php │ │ │ ├── FileTypeFilterIteratorTest.php │ │ │ ├── FilecontentFilterIteratorTest.php │ │ │ ├── FilenameFilterIteratorTest.php │ │ │ ├── FilterIteratorTest.php │ │ │ ├── Iterator.php │ │ │ ├── IteratorTestCase.php │ │ │ ├── MockFileListIterator.php │ │ │ ├── MockSplFileInfo.php │ │ │ ├── MultiplePcreFilterIteratorTest.php │ │ │ ├── PathFilterIteratorTest.php │ │ │ ├── RealIteratorTestCase.php │ │ │ ├── RecursiveDirectoryIteratorTest.php │ │ │ ├── SizeRangeFilterIteratorTest.php │ │ │ └── SortableIteratorTest.php │ ├── http-foundation │ │ ├── AcceptHeaderItem.php │ │ ├── ApacheRequest.php │ │ ├── BinaryFileResponse.php │ │ ├── Exception │ │ │ ├── ConflictingHeadersException.php │ │ │ ├── RequestExceptionInterface.php │ │ │ └── SuspiciousOperationException.php │ │ ├── ExpressionRequestMatcher.php │ │ ├── File │ │ │ ├── Exception │ │ │ │ ├── AccessDeniedException.php │ │ │ │ ├── FileException.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ └── UploadException.php │ │ │ ├── File.php │ │ │ ├── MimeType │ │ │ │ ├── ExtensionGuesser.php │ │ │ │ ├── ExtensionGuesserInterface.php │ │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ │ ├── MimeTypeGuesser.php │ │ │ │ └── MimeTypeGuesserInterface.php │ │ │ ├── Stream.php │ │ │ └── UploadedFile.php │ │ ├── IpUtils.php │ │ ├── JsonResponse.php │ │ ├── RedirectResponse.php │ │ ├── RequestMatcher.php │ │ ├── RequestMatcherInterface.php │ │ ├── RequestStack.php │ │ ├── ServerBag.php │ │ ├── Session │ │ │ ├── Attribute │ │ │ │ ├── AttributeBag.php │ │ │ │ ├── AttributeBagInterface.php │ │ │ │ └── NamespacedAttributeBag.php │ │ │ ├── Flash │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ ├── FlashBag.php │ │ │ │ └── FlashBagInterface.php │ │ │ ├── Session.php │ │ │ ├── SessionBagInterface.php │ │ │ ├── SessionBagProxy.php │ │ │ ├── SessionInterface.php │ │ │ └── Storage │ │ │ │ ├── Handler │ │ │ │ ├── AbstractSessionHandler.php │ │ │ │ ├── MemcacheSessionHandler.php │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ ├── NativeSessionHandler.php │ │ │ │ ├── NullSessionHandler.php │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ ├── StrictSessionHandler.php │ │ │ │ └── WriteCheckSessionHandler.php │ │ │ │ ├── MetadataBag.php │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ ├── Proxy │ │ │ │ ├── AbstractProxy.php │ │ │ │ ├── NativeProxy.php │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ └── SessionStorageInterface.php │ │ └── Tests │ │ │ ├── AcceptHeaderItemTest.php │ │ │ ├── AcceptHeaderTest.php │ │ │ ├── ApacheRequestTest.php │ │ │ ├── BinaryFileResponseTest.php │ │ │ ├── CookieTest.php │ │ │ ├── ExpressionRequestMatcherTest.php │ │ │ ├── File │ │ │ ├── FakeFile.php │ │ │ ├── FileTest.php │ │ │ ├── Fixtures │ │ │ │ ├── .unknownextension │ │ │ │ ├── directory │ │ │ │ │ └── .empty │ │ │ │ └── other-file.example │ │ │ ├── MimeType │ │ │ │ └── MimeTypeTest.php │ │ │ └── UploadedFileTest.php │ │ │ ├── FileBagTest.php │ │ │ ├── Fixtures │ │ │ └── response-functional │ │ │ │ ├── common.inc │ │ │ │ ├── cookie_max_age.expected │ │ │ │ ├── cookie_max_age.php │ │ │ │ ├── cookie_raw_urlencode.expected │ │ │ │ ├── cookie_raw_urlencode.php │ │ │ │ ├── cookie_samesite_lax.expected │ │ │ │ ├── cookie_samesite_lax.php │ │ │ │ ├── cookie_samesite_strict.expected │ │ │ │ ├── cookie_samesite_strict.php │ │ │ │ ├── cookie_urlencode.expected │ │ │ │ ├── cookie_urlencode.php │ │ │ │ ├── invalid_cookie_name.expected │ │ │ │ └── invalid_cookie_name.php │ │ │ ├── HeaderBagTest.php │ │ │ ├── IpUtilsTest.php │ │ │ ├── JsonResponseTest.php │ │ │ ├── ParameterBagTest.php │ │ │ ├── RedirectResponseTest.php │ │ │ ├── RequestMatcherTest.php │ │ │ ├── RequestStackTest.php │ │ │ ├── RequestTest.php │ │ │ ├── ResponseFunctionalTest.php │ │ │ ├── ResponseHeaderBagTest.php │ │ │ ├── ResponseTest.php │ │ │ ├── ResponseTestCase.php │ │ │ ├── ServerBagTest.php │ │ │ ├── Session │ │ │ ├── Attribute │ │ │ │ ├── AttributeBagTest.php │ │ │ │ └── NamespacedAttributeBagTest.php │ │ │ ├── Flash │ │ │ │ ├── AutoExpireFlashBagTest.php │ │ │ │ └── FlashBagTest.php │ │ │ ├── SessionTest.php │ │ │ └── Storage │ │ │ │ ├── Handler │ │ │ │ ├── AbstractSessionHandlerTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── common.inc │ │ │ │ │ ├── empty_destroys.expected │ │ │ │ │ ├── empty_destroys.php │ │ │ │ │ ├── read_only.expected │ │ │ │ │ ├── read_only.php │ │ │ │ │ ├── regenerate.expected │ │ │ │ │ ├── regenerate.php │ │ │ │ │ ├── storage.expected │ │ │ │ │ ├── storage.php │ │ │ │ │ ├── with_cookie.expected │ │ │ │ │ ├── with_cookie.php │ │ │ │ │ ├── with_cookie_and_session.expected │ │ │ │ │ └── with_cookie_and_session.php │ │ │ │ ├── MemcacheSessionHandlerTest.php │ │ │ │ ├── MemcachedSessionHandlerTest.php │ │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ │ ├── NativeSessionHandlerTest.php │ │ │ │ ├── NullSessionHandlerTest.php │ │ │ │ ├── PdoSessionHandlerTest.php │ │ │ │ ├── StrictSessionHandlerTest.php │ │ │ │ └── WriteCheckSessionHandlerTest.php │ │ │ │ ├── MetadataBagTest.php │ │ │ │ ├── MockArraySessionStorageTest.php │ │ │ │ ├── MockFileSessionStorageTest.php │ │ │ │ ├── NativeSessionStorageTest.php │ │ │ │ ├── PhpBridgeSessionStorageTest.php │ │ │ │ └── Proxy │ │ │ │ ├── AbstractProxyTest.php │ │ │ │ ├── NativeProxyTest.php │ │ │ │ └── SessionHandlerProxyTest.php │ │ │ ├── StreamedResponseTest.php │ │ │ └── schema │ │ │ ├── http-status-codes.rng │ │ │ └── iana-registry.rng │ ├── http-kernel │ │ ├── Bundle │ │ │ ├── Bundle.php │ │ │ └── BundleInterface.php │ │ ├── CacheClearer │ │ │ ├── CacheClearerInterface.php │ │ │ ├── ChainCacheClearer.php │ │ │ └── Psr6CacheClearer.php │ │ ├── CacheWarmer │ │ │ ├── CacheWarmer.php │ │ │ ├── CacheWarmerAggregate.php │ │ │ ├── CacheWarmerInterface.php │ │ │ └── WarmableInterface.php │ │ ├── Client.php │ │ ├── Config │ │ │ ├── EnvParametersResource.php │ │ │ └── FileLocator.php │ │ ├── Controller │ │ │ ├── ArgumentResolver.php │ │ │ ├── ArgumentResolver │ │ │ │ ├── DefaultValueResolver.php │ │ │ │ ├── RequestAttributeValueResolver.php │ │ │ │ ├── RequestValueResolver.php │ │ │ │ ├── ServiceValueResolver.php │ │ │ │ ├── SessionValueResolver.php │ │ │ │ └── VariadicValueResolver.php │ │ │ ├── ArgumentResolverInterface.php │ │ │ ├── ArgumentValueResolverInterface.php │ │ │ ├── ContainerControllerResolver.php │ │ │ ├── ControllerReference.php │ │ │ ├── ControllerResolver.php │ │ │ ├── ControllerResolverInterface.php │ │ │ ├── TraceableArgumentResolver.php │ │ │ └── TraceableControllerResolver.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 │ │ │ └── Util │ │ │ │ └── ValueExporter.php │ │ ├── Debug │ │ │ ├── FileLinkFormatter.php │ │ │ └── TraceableEventDispatcher.php │ │ ├── DependencyInjection │ │ │ ├── AddAnnotatedClassesToCachePass.php │ │ │ ├── AddClassesToCachePass.php │ │ │ ├── ConfigurableExtension.php │ │ │ ├── ControllerArgumentValueResolverPass.php │ │ │ ├── Extension.php │ │ │ ├── FragmentRendererPass.php │ │ │ ├── LazyLoadingFragmentHandler.php │ │ │ ├── LoggerPass.php │ │ │ ├── MergeExtensionConfigurationPass.php │ │ │ ├── RegisterControllerArgumentLocatorsPass.php │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPass.php │ │ │ ├── ResettableServicePass.php │ │ │ └── ServicesResetter.php │ │ ├── Event │ │ │ ├── FilterControllerArgumentsEvent.php │ │ │ ├── FilterControllerEvent.php │ │ │ ├── FilterResponseEvent.php │ │ │ ├── FinishRequestEvent.php │ │ │ ├── GetResponseEvent.php │ │ │ ├── GetResponseForControllerResultEvent.php │ │ │ ├── GetResponseForExceptionEvent.php │ │ │ ├── KernelEvent.php │ │ │ └── PostResponseEvent.php │ │ ├── EventListener │ │ │ ├── AbstractSessionListener.php │ │ │ ├── AbstractTestSessionListener.php │ │ │ ├── AddRequestFormatsListener.php │ │ │ ├── DebugHandlersListener.php │ │ │ ├── DumpListener.php │ │ │ ├── ExceptionListener.php │ │ │ ├── FragmentListener.php │ │ │ ├── LocaleListener.php │ │ │ ├── ProfilerListener.php │ │ │ ├── ResponseListener.php │ │ │ ├── RouterListener.php │ │ │ ├── SaveSessionListener.php │ │ │ ├── SessionListener.php │ │ │ ├── StreamedResponseListener.php │ │ │ ├── SurrogateListener.php │ │ │ ├── TestSessionListener.php │ │ │ ├── TranslatorListener.php │ │ │ └── ValidateRequestListener.php │ │ ├── Exception │ │ │ ├── BadRequestHttpException.php │ │ │ ├── ConflictHttpException.php │ │ │ ├── GoneHttpException.php │ │ │ ├── HttpExceptionInterface.php │ │ │ ├── LengthRequiredHttpException.php │ │ │ ├── NotAcceptableHttpException.php │ │ │ ├── PreconditionFailedHttpException.php │ │ │ ├── PreconditionRequiredHttpException.php │ │ │ ├── TooManyRequestsHttpException.php │ │ │ ├── UnprocessableEntityHttpException.php │ │ │ └── UnsupportedMediaTypeHttpException.php │ │ ├── Fragment │ │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ │ ├── EsiFragmentRenderer.php │ │ │ ├── FragmentHandler.php │ │ │ ├── FragmentRendererInterface.php │ │ │ ├── HIncludeFragmentRenderer.php │ │ │ ├── InlineFragmentRenderer.php │ │ │ ├── RoutableFragmentRenderer.php │ │ │ └── SsiFragmentRenderer.php │ │ ├── HttpCache │ │ │ ├── AbstractSurrogate.php │ │ │ ├── Esi.php │ │ │ ├── HttpCache.php │ │ │ ├── ResponseCacheStrategy.php │ │ │ ├── ResponseCacheStrategyInterface.php │ │ │ ├── Ssi.php │ │ │ ├── StoreInterface.php │ │ │ ├── SubRequestHandler.php │ │ │ └── SurrogateInterface.php │ │ ├── HttpKernel.php │ │ ├── HttpKernelInterface.php │ │ ├── Kernel.php │ │ ├── KernelEvents.php │ │ ├── KernelInterface.php │ │ ├── Log │ │ │ ├── DebugLoggerInterface.php │ │ │ └── Logger.php │ │ ├── Profiler │ │ │ ├── FileProfilerStorage.php │ │ │ ├── Profile.php │ │ │ ├── Profiler.php │ │ │ └── ProfilerStorageInterface.php │ │ ├── RebootableInterface.php │ │ ├── Resources │ │ │ └── welcome.html.php │ │ ├── TerminableInterface.php │ │ └── Tests │ │ │ ├── Bundle │ │ │ └── BundleTest.php │ │ │ ├── CacheClearer │ │ │ ├── ChainCacheClearerTest.php │ │ │ └── Psr6CacheClearerTest.php │ │ │ ├── CacheWarmer │ │ │ ├── CacheWarmerAggregateTest.php │ │ │ └── CacheWarmerTest.php │ │ │ ├── ClientTest.php │ │ │ ├── Config │ │ │ ├── EnvParametersResourceTest.php │ │ │ └── FileLocatorTest.php │ │ │ ├── Controller │ │ │ ├── ArgumentResolver │ │ │ │ └── ServiceValueResolverTest.php │ │ │ ├── ArgumentResolverTest.php │ │ │ ├── ContainerControllerResolverTest.php │ │ │ └── ControllerResolverTest.php │ │ │ ├── ControllerMetadata │ │ │ ├── ArgumentMetadataFactoryTest.php │ │ │ └── ArgumentMetadataTest.php │ │ │ ├── DataCollector │ │ │ ├── ConfigDataCollectorTest.php │ │ │ ├── DataCollectorTest.php │ │ │ ├── DumpDataCollectorTest.php │ │ │ ├── ExceptionDataCollectorTest.php │ │ │ ├── LoggerDataCollectorTest.php │ │ │ ├── MemoryDataCollectorTest.php │ │ │ ├── RequestDataCollectorTest.php │ │ │ ├── TimeDataCollectorTest.php │ │ │ └── Util │ │ │ │ └── ValueExporterTest.php │ │ │ ├── Debug │ │ │ ├── FileLinkFormatterTest.php │ │ │ └── TraceableEventDispatcherTest.php │ │ │ ├── DependencyInjection │ │ │ ├── AddAnnotatedClassesToCachePassTest.php │ │ │ ├── ControllerArgumentValueResolverPassTest.php │ │ │ ├── FragmentRendererPassTest.php │ │ │ ├── LazyLoadingFragmentHandlerTest.php │ │ │ ├── LoggerPassTest.php │ │ │ ├── MergeExtensionConfigurationPassTest.php │ │ │ ├── RegisterControllerArgumentLocatorsPassTest.php │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPassTest.php │ │ │ ├── ResettableServicePassTest.php │ │ │ └── ServicesResetterTest.php │ │ │ ├── Event │ │ │ ├── FilterControllerArgumentsEventTest.php │ │ │ └── GetResponseForExceptionEventTest.php │ │ │ ├── EventListener │ │ │ ├── AddRequestFormatsListenerTest.php │ │ │ ├── DebugHandlersListenerTest.php │ │ │ ├── DumpListenerTest.php │ │ │ ├── ExceptionListenerTest.php │ │ │ ├── FragmentListenerTest.php │ │ │ ├── LocaleListenerTest.php │ │ │ ├── ProfilerListenerTest.php │ │ │ ├── ResponseListenerTest.php │ │ │ ├── RouterListenerTest.php │ │ │ ├── SaveSessionListenerTest.php │ │ │ ├── SessionListenerTest.php │ │ │ ├── SurrogateListenerTest.php │ │ │ ├── TestSessionListenerTest.php │ │ │ ├── TranslatorListenerTest.php │ │ │ └── ValidateRequestListenerTest.php │ │ │ ├── Exception │ │ │ ├── AccessDeniedHttpExceptionTest.php │ │ │ ├── BadRequestHttpExceptionTest.php │ │ │ ├── ConflictHttpExceptionTest.php │ │ │ ├── GoneHttpExceptionTest.php │ │ │ ├── HttpExceptionTest.php │ │ │ ├── LengthRequiredHttpExceptionTest.php │ │ │ ├── MethodNotAllowedHttpExceptionTest.php │ │ │ ├── NotAcceptableHttpExceptionTest.php │ │ │ ├── NotFoundHttpExceptionTest.php │ │ │ ├── PreconditionFailedHttpExceptionTest.php │ │ │ ├── PreconditionRequiredHttpExceptionTest.php │ │ │ ├── ServiceUnavailableHttpExceptionTest.php │ │ │ ├── TooManyRequestsHttpExceptionTest.php │ │ │ ├── UnauthorizedHttpExceptionTest.php │ │ │ ├── UnprocessableEntityHttpExceptionTest.php │ │ │ └── UnsupportedMediaTypeHttpExceptionTest.php │ │ │ ├── Fixtures │ │ │ ├── 123 │ │ │ │ └── Kernel123.php │ │ │ ├── ClearableService.php │ │ │ ├── Controller │ │ │ │ ├── BasicTypesController.php │ │ │ │ ├── ExtendingRequest.php │ │ │ │ ├── ExtendingSession.php │ │ │ │ ├── NullableController.php │ │ │ │ └── VariadicController.php │ │ │ ├── DataCollector │ │ │ │ └── CloneVarDataCollector.php │ │ │ ├── ExtensionAbsentBundle │ │ │ │ └── ExtensionAbsentBundle.php │ │ │ ├── ExtensionLoadedBundle │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ExtensionLoadedExtension.php │ │ │ │ └── ExtensionLoadedBundle.php │ │ │ ├── ExtensionNotValidBundle │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ExtensionNotValidExtension.php │ │ │ │ └── ExtensionNotValidBundle.php │ │ │ ├── ExtensionPresentBundle │ │ │ │ ├── Command │ │ │ │ │ ├── BarCommand.php │ │ │ │ │ └── FooCommand.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ExtensionPresentExtension.php │ │ │ │ └── ExtensionPresentBundle.php │ │ │ ├── KernelForOverrideName.php │ │ │ ├── KernelForTest.php │ │ │ ├── KernelWithoutBundles.php │ │ │ ├── ResettableService.php │ │ │ ├── TestClient.php │ │ │ └── TestEventDispatcher.php │ │ │ ├── Fragment │ │ │ ├── EsiFragmentRendererTest.php │ │ │ ├── FragmentHandlerTest.php │ │ │ ├── HIncludeFragmentRendererTest.php │ │ │ ├── InlineFragmentRendererTest.php │ │ │ ├── RoutableFragmentRendererTest.php │ │ │ └── SsiFragmentRendererTest.php │ │ │ ├── HttpCache │ │ │ ├── EsiTest.php │ │ │ ├── HttpCacheTest.php │ │ │ ├── HttpCacheTestCase.php │ │ │ ├── ResponseCacheStrategyTest.php │ │ │ ├── SsiTest.php │ │ │ ├── StoreTest.php │ │ │ ├── SubRequestHandlerTest.php │ │ │ ├── TestHttpKernel.php │ │ │ └── TestMultipleHttpKernel.php │ │ │ ├── HttpKernelTest.php │ │ │ ├── KernelTest.php │ │ │ ├── Log │ │ │ └── LoggerTest.php │ │ │ ├── Logger.php │ │ │ ├── Profiler │ │ │ ├── FileProfilerStorageTest.php │ │ │ └── ProfilerTest.php │ │ │ ├── TestHttpKernel.php │ │ │ └── UriSignerTest.php │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ └── bootstrap.php │ ├── polyfill-intl-idn │ │ ├── Idn.php │ │ ├── Info.php │ │ ├── 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 │ ├── polyfill-intl-normalizer │ │ ├── Normalizer.php │ │ ├── Resources │ │ │ ├── stubs │ │ │ │ └── Normalizer.php │ │ │ └── unidata │ │ │ │ ├── canonicalComposition.php │ │ │ │ ├── canonicalDecomposition.php │ │ │ │ ├── combiningClass.php │ │ │ │ └── compatibilityDecomposition.php │ │ ├── bootstrap.php │ │ └── bootstrap80.php │ ├── polyfill-mbstring │ │ ├── Mbstring.php │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ └── bootstrap80.php │ ├── polyfill-php70 │ │ ├── Php70.php │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── ArithmeticError.php │ │ │ │ ├── AssertionError.php │ │ │ │ ├── DivisionByZeroError.php │ │ │ │ ├── Error.php │ │ │ │ ├── ParseError.php │ │ │ │ ├── SessionUpdateTimestampHandlerInterface.php │ │ │ │ └── TypeError.php │ │ └── bootstrap.php │ ├── process │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── ProcessFailedException.php │ │ │ ├── ProcessTimedOutException.php │ │ │ └── RuntimeException.php │ │ ├── ExecutableFinder.php │ │ ├── InputStream.php │ │ ├── PhpExecutableFinder.php │ │ ├── PhpProcess.php │ │ ├── Pipes │ │ │ ├── AbstractPipes.php │ │ │ ├── PipesInterface.php │ │ │ ├── UnixPipes.php │ │ │ └── WindowsPipes.php │ │ ├── ProcessBuilder.php │ │ ├── ProcessUtils.php │ │ └── Tests │ │ │ ├── ExecutableFinderTest.php │ │ │ ├── NonStopableProcess.php │ │ │ ├── PhpExecutableFinderTest.php │ │ │ ├── PhpProcessTest.php │ │ │ ├── PipeStdinInStdoutStdErrStreamSelect.php │ │ │ ├── ProcessBuilderTest.php │ │ │ ├── ProcessFailedExceptionTest.php │ │ │ ├── ProcessTest.php │ │ │ ├── ProcessUtilsTest.php │ │ │ └── SignalListener.php │ ├── routing │ │ ├── Annotation │ │ │ └── Route.php │ │ ├── DependencyInjection │ │ │ └── RoutingResolverPass.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidParameterException.php │ │ │ ├── MethodNotAllowedException.php │ │ │ ├── MissingMandatoryParametersException.php │ │ │ ├── NoConfigurationException.php │ │ │ ├── ResourceNotFoundException.php │ │ │ └── RouteNotFoundException.php │ │ ├── Generator │ │ │ ├── ConfigurableRequirementsInterface.php │ │ │ ├── Dumper │ │ │ │ ├── GeneratorDumper.php │ │ │ │ ├── GeneratorDumperInterface.php │ │ │ │ └── PhpGeneratorDumper.php │ │ │ ├── UrlGenerator.php │ │ │ └── UrlGeneratorInterface.php │ │ ├── Loader │ │ │ ├── AnnotationClassLoader.php │ │ │ ├── AnnotationDirectoryLoader.php │ │ │ ├── AnnotationFileLoader.php │ │ │ ├── ClosureLoader.php │ │ │ ├── Configurator │ │ │ │ ├── CollectionConfigurator.php │ │ │ │ ├── ImportConfigurator.php │ │ │ │ ├── RouteConfigurator.php │ │ │ │ ├── RoutingConfigurator.php │ │ │ │ └── Traits │ │ │ │ │ ├── AddTrait.php │ │ │ │ │ └── RouteTrait.php │ │ │ ├── DependencyInjection │ │ │ │ └── ServiceRouterLoader.php │ │ │ ├── DirectoryLoader.php │ │ │ ├── GlobFileLoader.php │ │ │ ├── ObjectRouteLoader.php │ │ │ ├── PhpFileLoader.php │ │ │ ├── XmlFileLoader.php │ │ │ ├── YamlFileLoader.php │ │ │ └── schema │ │ │ │ └── routing │ │ │ │ └── routing-1.0.xsd │ │ ├── Matcher │ │ │ ├── Dumper │ │ │ │ ├── DumperCollection.php │ │ │ │ ├── DumperRoute.php │ │ │ │ ├── MatcherDumper.php │ │ │ │ ├── MatcherDumperInterface.php │ │ │ │ ├── PhpMatcherDumper.php │ │ │ │ └── StaticPrefixCollection.php │ │ │ ├── RedirectableUrlMatcher.php │ │ │ ├── RedirectableUrlMatcherInterface.php │ │ │ ├── RequestMatcherInterface.php │ │ │ ├── TraceableUrlMatcher.php │ │ │ ├── UrlMatcher.php │ │ │ └── UrlMatcherInterface.php │ │ ├── RequestContext.php │ │ ├── RequestContextAwareInterface.php │ │ ├── RouteCollection.php │ │ ├── RouteCollectionBuilder.php │ │ ├── RouteCompiler.php │ │ ├── RouteCompilerInterface.php │ │ ├── Router.php │ │ ├── RouterInterface.php │ │ └── Tests │ │ │ ├── Annotation │ │ │ └── RouteTest.php │ │ │ ├── CompiledRouteTest.php │ │ │ ├── DependencyInjection │ │ │ └── RoutingResolverPassTest.php │ │ │ ├── Fixtures │ │ │ ├── AnnotatedClasses │ │ │ │ ├── AbstractClass.php │ │ │ │ ├── BarClass.php │ │ │ │ ├── BazClass.php │ │ │ │ ├── FooClass.php │ │ │ │ └── FooTrait.php │ │ │ ├── CustomCompiledRoute.php │ │ │ ├── CustomRouteCompiler.php │ │ │ ├── CustomXmlFileLoader.php │ │ │ ├── OtherAnnotatedClasses │ │ │ │ ├── AnonymousClassInTrait.php │ │ │ │ ├── NoStartTagClass.php │ │ │ │ └── VariadicClass.php │ │ │ ├── RedirectableUrlMatcher.php │ │ │ ├── annotated.php │ │ │ ├── bad_format.yml │ │ │ ├── bar.xml │ │ │ ├── controller │ │ │ │ ├── import__controller.xml │ │ │ │ ├── import__controller.yml │ │ │ │ ├── import_controller.xml │ │ │ │ ├── import_controller.yml │ │ │ │ ├── import_override_defaults.xml │ │ │ │ ├── import_override_defaults.yml │ │ │ │ ├── override_defaults.xml │ │ │ │ ├── override_defaults.yml │ │ │ │ ├── routing.xml │ │ │ │ └── routing.yml │ │ │ ├── directory │ │ │ │ ├── recurse │ │ │ │ │ ├── routes1.yml │ │ │ │ │ └── routes2.yml │ │ │ │ └── routes3.yml │ │ │ ├── directory_import │ │ │ │ └── import.yml │ │ │ ├── dumper │ │ │ │ ├── url_matcher0.php │ │ │ │ ├── url_matcher1.php │ │ │ │ ├── url_matcher2.php │ │ │ │ ├── url_matcher3.php │ │ │ │ ├── url_matcher4.php │ │ │ │ ├── url_matcher5.php │ │ │ │ ├── url_matcher6.php │ │ │ │ └── url_matcher7.php │ │ │ ├── empty.yml │ │ │ ├── file_resource.yml │ │ │ ├── foo.xml │ │ │ ├── foo1.xml │ │ │ ├── glob │ │ │ │ ├── bar.xml │ │ │ │ ├── bar.yml │ │ │ │ ├── baz.xml │ │ │ │ ├── baz.yml │ │ │ │ ├── import_multiple.xml │ │ │ │ ├── import_multiple.yml │ │ │ │ ├── import_single.xml │ │ │ │ ├── import_single.yml │ │ │ │ ├── php_dsl.php │ │ │ │ ├── php_dsl_bar.php │ │ │ │ └── php_dsl_baz.php │ │ │ ├── incomplete.yml │ │ │ ├── list_defaults.xml │ │ │ ├── list_in_list_defaults.xml │ │ │ ├── list_in_map_defaults.xml │ │ │ ├── list_null_values.xml │ │ │ ├── map_defaults.xml │ │ │ ├── map_in_list_defaults.xml │ │ │ ├── map_in_map_defaults.xml │ │ │ ├── map_null_values.xml │ │ │ ├── missing_id.xml │ │ │ ├── missing_path.xml │ │ │ ├── namespaceprefix.xml │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ ├── nonesense_type_without_resource.yml │ │ │ ├── nonvalid.xml │ │ │ ├── nonvalid.yml │ │ │ ├── nonvalid2.yml │ │ │ ├── nonvalidkeys.yml │ │ │ ├── nonvalidnode.xml │ │ │ ├── nonvalidroute.xml │ │ │ ├── null_values.xml │ │ │ ├── php_dsl.php │ │ │ ├── php_dsl_sub.php │ │ │ ├── scalar_defaults.xml │ │ │ ├── special_route_name.yml │ │ │ ├── validpattern.php │ │ │ ├── validpattern.xml │ │ │ ├── validpattern.yml │ │ │ ├── validresource.php │ │ │ ├── validresource.xml │ │ │ ├── validresource.yml │ │ │ ├── with_define_path_variable.php │ │ │ └── withdoctype.xml │ │ │ ├── Generator │ │ │ ├── Dumper │ │ │ │ └── PhpGeneratorDumperTest.php │ │ │ └── UrlGeneratorTest.php │ │ │ ├── Loader │ │ │ ├── AbstractAnnotationLoaderTest.php │ │ │ ├── AnnotationClassLoaderTest.php │ │ │ ├── AnnotationDirectoryLoaderTest.php │ │ │ ├── AnnotationFileLoaderTest.php │ │ │ ├── ClosureLoaderTest.php │ │ │ ├── DirectoryLoaderTest.php │ │ │ ├── GlobFileLoaderTest.php │ │ │ ├── ObjectRouteLoaderTest.php │ │ │ ├── PhpFileLoaderTest.php │ │ │ ├── XmlFileLoaderTest.php │ │ │ └── YamlFileLoaderTest.php │ │ │ ├── Matcher │ │ │ ├── DumpedRedirectableUrlMatcherTest.php │ │ │ ├── DumpedUrlMatcherTest.php │ │ │ ├── Dumper │ │ │ │ ├── DumperCollectionTest.php │ │ │ │ ├── PhpMatcherDumperTest.php │ │ │ │ └── StaticPrefixCollectionTest.php │ │ │ ├── RedirectableUrlMatcherTest.php │ │ │ ├── TraceableUrlMatcherTest.php │ │ │ └── UrlMatcherTest.php │ │ │ ├── RequestContextTest.php │ │ │ ├── RouteCollectionBuilderTest.php │ │ │ ├── RouteCollectionTest.php │ │ │ ├── RouteCompilerTest.php │ │ │ ├── RouteTest.php │ │ │ └── RouterTest.php │ ├── translation │ │ ├── Catalogue │ │ │ ├── AbstractOperation.php │ │ │ ├── MergeOperation.php │ │ │ ├── OperationInterface.php │ │ │ └── TargetOperation.php │ │ ├── Command │ │ │ └── XliffLintCommand.php │ │ ├── DataCollector │ │ │ └── TranslationDataCollector.php │ │ ├── DataCollectorTranslator.php │ │ ├── DependencyInjection │ │ │ ├── TranslationDumperPass.php │ │ │ ├── TranslationExtractorPass.php │ │ │ └── TranslatorPass.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 │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidResourceException.php │ │ │ ├── LogicException.php │ │ │ ├── NotFoundResourceException.php │ │ │ └── RuntimeException.php │ │ ├── Extractor │ │ │ ├── AbstractFileExtractor.php │ │ │ ├── ChainExtractor.php │ │ │ ├── ExtractorInterface.php │ │ │ ├── PhpExtractor.php │ │ │ └── PhpStringTokenParser.php │ │ ├── Formatter │ │ │ ├── ChoiceMessageFormatterInterface.php │ │ │ └── MessageFormatterInterface.php │ │ ├── IdentityTranslator.php │ │ ├── Interval.php │ │ ├── Loader │ │ │ ├── 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 │ │ │ └── schema │ │ │ │ └── dic │ │ │ │ └── xliff-core │ │ │ │ ├── xliff-core-1.2-strict.xsd │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ └── xml.xsd │ │ ├── LoggingTranslator.php │ │ ├── MessageCatalogue.php │ │ ├── MessageCatalogueInterface.php │ │ ├── MessageSelector.php │ │ ├── MetadataAwareInterface.php │ │ ├── PluralizationRules.php │ │ ├── Reader │ │ │ ├── TranslationReader.php │ │ │ └── TranslationReaderInterface.php │ │ ├── Resources │ │ │ └── schemas │ │ │ │ └── xliff-core-1.2-strict.xsd │ │ ├── Tests │ │ │ ├── Catalogue │ │ │ │ ├── AbstractOperationTest.php │ │ │ │ ├── MergeOperationTest.php │ │ │ │ └── TargetOperationTest.php │ │ │ ├── DataCollector │ │ │ │ └── TranslationDataCollectorTest.php │ │ │ ├── DataCollectorTranslatorTest.php │ │ │ ├── DependencyInjection │ │ │ │ ├── TranslationDumperPassTest.php │ │ │ │ ├── TranslationExtractorPassTest.php │ │ │ │ └── TranslationPassTest.php │ │ │ ├── Dumper │ │ │ │ ├── CsvFileDumperTest.php │ │ │ │ ├── FileDumperTest.php │ │ │ │ ├── IcuResFileDumperTest.php │ │ │ │ ├── IniFileDumperTest.php │ │ │ │ ├── JsonFileDumperTest.php │ │ │ │ ├── MoFileDumperTest.php │ │ │ │ ├── PhpFileDumperTest.php │ │ │ │ ├── PoFileDumperTest.php │ │ │ │ ├── QtFileDumperTest.php │ │ │ │ ├── XliffFileDumperTest.php │ │ │ │ └── YamlFileDumperTest.php │ │ │ ├── Extractor │ │ │ │ └── PhpExtractorTest.php │ │ │ ├── Formatter │ │ │ │ └── MessageFormatterTest.php │ │ │ ├── IdentityTranslatorTest.php │ │ │ ├── IntervalTest.php │ │ │ ├── Loader │ │ │ │ ├── CsvFileLoaderTest.php │ │ │ │ ├── IcuDatFileLoaderTest.php │ │ │ │ ├── IcuResFileLoaderTest.php │ │ │ │ ├── IniFileLoaderTest.php │ │ │ │ ├── JsonFileLoaderTest.php │ │ │ │ ├── LocalizedTestCase.php │ │ │ │ ├── MoFileLoaderTest.php │ │ │ │ ├── PhpFileLoaderTest.php │ │ │ │ ├── PoFileLoaderTest.php │ │ │ │ ├── QtFileLoaderTest.php │ │ │ │ ├── XliffFileLoaderTest.php │ │ │ │ └── YamlFileLoaderTest.php │ │ │ ├── LoggingTranslatorTest.php │ │ │ ├── MessageCatalogueTest.php │ │ │ ├── MessageSelectorTest.php │ │ │ ├── PluralizationRulesTest.php │ │ │ ├── TranslatorCacheTest.php │ │ │ ├── TranslatorTest.php │ │ │ ├── Util │ │ │ │ └── ArrayConverterTest.php │ │ │ ├── Writer │ │ │ │ └── TranslationWriterTest.php │ │ │ └── fixtures │ │ │ │ ├── empty-translation.mo │ │ │ │ ├── empty-translation.po │ │ │ │ ├── empty.csv │ │ │ │ ├── empty.ini │ │ │ │ ├── empty.json │ │ │ │ ├── empty.mo │ │ │ │ ├── empty.po │ │ │ │ ├── empty.xlf │ │ │ │ ├── empty.yml │ │ │ │ ├── encoding.xlf │ │ │ │ ├── escaped-id-plurals.po │ │ │ │ ├── escaped-id.po │ │ │ │ ├── extractor │ │ │ │ ├── resource.format.engine │ │ │ │ ├── this.is.a.template.format.engine │ │ │ │ └── translation.html.php │ │ │ │ ├── fuzzy-translations.po │ │ │ │ ├── invalid-xml-resources.xlf │ │ │ │ ├── malformed.json │ │ │ │ ├── messages.yml │ │ │ │ ├── messages_linear.yml │ │ │ │ ├── non-valid.xlf │ │ │ │ ├── non-valid.yml │ │ │ │ ├── plurals.mo │ │ │ │ ├── plurals.po │ │ │ │ ├── resname.xlf │ │ │ │ ├── resourcebundle │ │ │ │ ├── corrupted │ │ │ │ │ └── resources.dat │ │ │ │ ├── dat │ │ │ │ │ ├── en.res │ │ │ │ │ ├── fr.res │ │ │ │ │ └── resources.dat │ │ │ │ └── res │ │ │ │ │ └── en.res │ │ │ │ ├── resources-2.0-clean.xlf │ │ │ │ ├── resources-2.0-multi-segment-unit.xlf │ │ │ │ ├── resources-2.0.xlf │ │ │ │ ├── resources-clean.xlf │ │ │ │ ├── resources-notes-meta.xlf │ │ │ │ ├── resources-target-attributes.xlf │ │ │ │ ├── resources-tool-info.xlf │ │ │ │ ├── resources.csv │ │ │ │ ├── resources.dump.json │ │ │ │ ├── resources.ini │ │ │ │ ├── resources.json │ │ │ │ ├── resources.mo │ │ │ │ ├── resources.php │ │ │ │ ├── resources.po │ │ │ │ ├── resources.ts │ │ │ │ ├── resources.xlf │ │ │ │ ├── resources.yml │ │ │ │ ├── valid.csv │ │ │ │ ├── with-attributes.xlf │ │ │ │ ├── withdoctype.xlf │ │ │ │ └── withnote.xlf │ │ ├── TranslatorBagInterface.php │ │ ├── TranslatorInterface.php │ │ ├── Util │ │ │ └── ArrayConverter.php │ │ └── Writer │ │ │ ├── TranslationWriter.php │ │ │ └── TranslationWriterInterface.php │ └── var-dumper │ │ ├── Caster │ │ ├── AmqpCaster.php │ │ ├── ArgsStub.php │ │ ├── Caster.php │ │ ├── ClassStub.php │ │ ├── ConstStub.php │ │ ├── CutArrayStub.php │ │ ├── CutStub.php │ │ ├── DOMCaster.php │ │ ├── DateCaster.php │ │ ├── DoctrineCaster.php │ │ ├── EnumStub.php │ │ ├── ExceptionCaster.php │ │ ├── FrameStub.php │ │ ├── LinkStub.php │ │ ├── MongoCaster.php │ │ ├── PdoCaster.php │ │ ├── PgSqlCaster.php │ │ ├── RedisCaster.php │ │ ├── ReflectionCaster.php │ │ ├── ResourceCaster.php │ │ ├── SplCaster.php │ │ ├── StubCaster.php │ │ ├── SymfonyCaster.php │ │ ├── TraceStub.php │ │ ├── XmlReaderCaster.php │ │ └── XmlResourceCaster.php │ │ ├── Cloner │ │ ├── ClonerInterface.php │ │ ├── Cursor.php │ │ ├── DumperInterface.php │ │ └── VarCloner.php │ │ ├── Dumper │ │ ├── AbstractDumper.php │ │ ├── CliDumper.php │ │ └── DataDumperInterface.php │ │ ├── Exception │ │ └── ThrowingCasterException.php │ │ ├── Resources │ │ └── functions │ │ │ └── dump.php │ │ ├── Test │ │ └── VarDumperTestTrait.php │ │ ├── Tests │ │ ├── Caster │ │ │ ├── CasterTest.php │ │ │ ├── DateCasterTest.php │ │ │ ├── ExceptionCasterTest.php │ │ │ ├── PdoCasterTest.php │ │ │ ├── RedisCasterTest.php │ │ │ ├── ReflectionCasterTest.php │ │ │ ├── SplCasterTest.php │ │ │ ├── StubCasterTest.php │ │ │ └── XmlReaderCasterTest.php │ │ ├── Cloner │ │ │ ├── DataTest.php │ │ │ └── VarClonerTest.php │ │ ├── Dumper │ │ │ ├── CliDumperTest.php │ │ │ ├── FunctionsTest.php │ │ │ └── HtmlDumperTest.php │ │ ├── Fixtures │ │ │ ├── FooInterface.php │ │ │ ├── GeneratorDemo.php │ │ │ ├── NotLoadableClass.php │ │ │ ├── Twig.php │ │ │ ├── dumb-var.php │ │ │ └── xml_reader.xml │ │ └── Test │ │ │ └── VarDumperTestTraitTest.php │ │ └── VarDumper.php ├── tedivm │ └── jshrink │ │ └── src │ │ └── JShrink │ │ └── Minifier.php ├── tijsverkoyen │ └── css-to-inline-styles │ │ └── src │ │ ├── Css │ │ ├── Processor.php │ │ ├── Property │ │ │ ├── Processor.php │ │ │ └── Property.php │ │ └── Rule │ │ │ ├── Processor.php │ │ │ └── Rule.php │ │ └── CssToInlineStyles.php ├── tormjens │ └── eventy │ │ ├── .travis.yml │ │ └── src │ │ ├── EventBladeServiceProvider.php │ │ ├── EventServiceProvider.php │ │ ├── Events.php │ │ └── Facades │ │ └── Events.php ├── vlucas │ └── phpdotenv │ │ └── src │ │ ├── Dotenv.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidCallbackException.php │ │ ├── InvalidFileException.php │ │ ├── InvalidPathException.php │ │ └── ValidationException.php │ │ └── Validator.php ├── watson │ └── rememberable │ │ └── src │ │ ├── Query │ │ └── Builder.php │ │ └── Rememberable.php └── webklex │ └── php-imap │ ├── .travis.yml │ ├── _config.yml │ └── src │ ├── Address.php │ ├── Attribute.php │ ├── Connection │ └── Protocols │ │ ├── Protocol.php │ │ └── ProtocolInterface.php │ ├── Events │ ├── Event.php │ ├── FlagDeletedEvent.php │ ├── FlagNewEvent.php │ ├── FolderDeletedEvent.php │ ├── FolderMovedEvent.php │ ├── FolderNewEvent.php │ ├── MessageCopiedEvent.php │ ├── MessageDeletedEvent.php │ ├── MessageMovedEvent.php │ ├── MessageNewEvent.php │ └── MessageRestoredEvent.php │ ├── Exceptions │ ├── AuthFailedException.php │ ├── ConnectionFailedException.php │ ├── EventNotFoundException.php │ ├── FolderFetchingException.php │ ├── GetMessagesFailedException.php │ ├── InvalidMessageDateException.php │ ├── InvalidWhereQueryCriteriaException.php │ ├── MaskNotFoundException.php │ ├── MessageContentFetchingException.php │ ├── MessageFlagException.php │ ├── MessageHeaderFetchingException.php │ ├── MessageNotFoundException.php │ ├── MessageSearchValidationException.php │ ├── MethodNotFoundException.php │ ├── MethodNotSupportedException.php │ ├── NotSupportedCapabilityException.php │ ├── ProtocolNotSupportedException.php │ └── RuntimeException.php │ ├── IMAP.php │ ├── Support │ ├── AttachmentCollection.php │ ├── FlagCollection.php │ ├── FolderCollection.php │ ├── Masks │ │ ├── AttachmentMask.php │ │ ├── Mask.php │ │ └── MessageMask.php │ ├── MessageCollection.php │ └── PaginatedCollection.php │ ├── Traits │ └── HasEvents.php │ └── config │ └── imap.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/.env.example -------------------------------------------------------------------------------- /.env.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/.env.travis -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitcommit: -------------------------------------------------------------------------------- 1 | 28e2d659db742540723b7d6cea7f0261cfe34bf1 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/.github/workflows/lint-php.yml -------------------------------------------------------------------------------- /.github/workflows/test-pgsql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/.github/workflows/test-pgsql.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/.htaccess -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/LICENSE -------------------------------------------------------------------------------- /Modules/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/Modules/.gitkeep -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/ActivityLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/ActivityLog.php -------------------------------------------------------------------------------- /app/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Attachment.php -------------------------------------------------------------------------------- /app/Channels/RealtimeBroadcastChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Channels/RealtimeBroadcastChannel.php -------------------------------------------------------------------------------- /app/Console/Commands/AfterAppUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/AfterAppUpdate.php -------------------------------------------------------------------------------- /app/Console/Commands/Build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/Build.php -------------------------------------------------------------------------------- /app/Console/Commands/CheckConvViewers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/CheckConvViewers.php -------------------------------------------------------------------------------- /app/Console/Commands/CleanSendLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/CleanSendLog.php -------------------------------------------------------------------------------- /app/Console/Commands/CleanTmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/CleanTmp.php -------------------------------------------------------------------------------- /app/Console/Commands/ClearCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/ClearCache.php -------------------------------------------------------------------------------- /app/Console/Commands/CreateUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/CreateUser.php -------------------------------------------------------------------------------- /app/Console/Commands/FetchEmails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/FetchEmails.php -------------------------------------------------------------------------------- /app/Console/Commands/FetchMonitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/FetchMonitor.php -------------------------------------------------------------------------------- /app/Console/Commands/GenerateVars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/GenerateVars.php -------------------------------------------------------------------------------- /app/Console/Commands/LogoutUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/LogoutUsers.php -------------------------------------------------------------------------------- /app/Console/Commands/LogsMonitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/LogsMonitor.php -------------------------------------------------------------------------------- /app/Console/Commands/ModuleBuild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/ModuleBuild.php -------------------------------------------------------------------------------- /app/Console/Commands/ModuleInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/ModuleInstall.php -------------------------------------------------------------------------------- /app/Console/Commands/ModuleLaroute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/ModuleLaroute.php -------------------------------------------------------------------------------- /app/Console/Commands/ModuleUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/ModuleUpdate.php -------------------------------------------------------------------------------- /app/Console/Commands/ParseEml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/ParseEml.php -------------------------------------------------------------------------------- /app/Console/Commands/SendMonitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/SendMonitor.php -------------------------------------------------------------------------------- /app/Console/Commands/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Commands/Update.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Conversation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Conversation.php -------------------------------------------------------------------------------- /app/ConversationFolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/ConversationFolder.php -------------------------------------------------------------------------------- /app/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Customer.php -------------------------------------------------------------------------------- /app/CustomerChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/CustomerChannel.php -------------------------------------------------------------------------------- /app/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Email.php -------------------------------------------------------------------------------- /app/Events/ConversationStatusChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/ConversationStatusChanged.php -------------------------------------------------------------------------------- /app/Events/ConversationUserChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/ConversationUserChanged.php -------------------------------------------------------------------------------- /app/Events/CustomerReplied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/CustomerReplied.php -------------------------------------------------------------------------------- /app/Events/RealtimeChat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/RealtimeChat.php -------------------------------------------------------------------------------- /app/Events/RealtimeConvNewThread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/RealtimeConvNewThread.php -------------------------------------------------------------------------------- /app/Events/RealtimeConvView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/RealtimeConvView.php -------------------------------------------------------------------------------- /app/Events/RealtimeConvViewFinish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/RealtimeConvViewFinish.php -------------------------------------------------------------------------------- /app/Events/RealtimeMailboxNewThread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/RealtimeMailboxNewThread.php -------------------------------------------------------------------------------- /app/Events/UserAddedNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/UserAddedNote.php -------------------------------------------------------------------------------- /app/Events/UserCreatedConversation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/UserCreatedConversation.php -------------------------------------------------------------------------------- /app/Events/UserCreatedThreadDraft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/UserCreatedThreadDraft.php -------------------------------------------------------------------------------- /app/Events/UserDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/UserDeleted.php -------------------------------------------------------------------------------- /app/Events/UserReplied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Events/UserReplied.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/FailedJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/FailedJob.php -------------------------------------------------------------------------------- /app/Folder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Folder.php -------------------------------------------------------------------------------- /app/Follower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Follower.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/OpenController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Controllers/OpenController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SecureController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Controllers/SecureController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SystemController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Controllers/SystemController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Controllers/UsersController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/CheckRole.php -------------------------------------------------------------------------------- /app/Http/Middleware/CustomHandle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/CustomHandle.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/FrameGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/FrameGuard.php -------------------------------------------------------------------------------- /app/Http/Middleware/HttpsRedirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/HttpsRedirect.php -------------------------------------------------------------------------------- /app/Http/Middleware/Localize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/Localize.php -------------------------------------------------------------------------------- /app/Http/Middleware/LogoutIfDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/LogoutIfDeleted.php -------------------------------------------------------------------------------- /app/Http/Middleware/ResponseHeaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/ResponseHeaders.php -------------------------------------------------------------------------------- /app/Http/Middleware/TerminateHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/TerminateHandler.php -------------------------------------------------------------------------------- /app/Http/Middleware/TokenAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/TokenAuth.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Job.php -------------------------------------------------------------------------------- /app/Jobs/RestartQueueWorker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Jobs/RestartQueueWorker.php -------------------------------------------------------------------------------- /app/Jobs/SendAlert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Jobs/SendAlert.php -------------------------------------------------------------------------------- /app/Jobs/SendAutoReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Jobs/SendAutoReply.php -------------------------------------------------------------------------------- /app/Jobs/SendEmailReplyError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Jobs/SendEmailReplyError.php -------------------------------------------------------------------------------- /app/Jobs/SendNotificationToUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Jobs/SendNotificationToUsers.php -------------------------------------------------------------------------------- /app/Jobs/SendReplyToCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Jobs/SendReplyToCustomer.php -------------------------------------------------------------------------------- /app/Jobs/TriggerAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Jobs/TriggerAction.php -------------------------------------------------------------------------------- /app/Jobs/UpdateFolderCounters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Jobs/UpdateFolderCounters.php -------------------------------------------------------------------------------- /app/Listeners/ActivateUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/ActivateUser.php -------------------------------------------------------------------------------- /app/Listeners/LogFailedLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/LogFailedLogin.php -------------------------------------------------------------------------------- /app/Listeners/LogLockout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/LogLockout.php -------------------------------------------------------------------------------- /app/Listeners/LogPasswordReset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/LogPasswordReset.php -------------------------------------------------------------------------------- /app/Listeners/LogRegisteredUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/LogRegisteredUser.php -------------------------------------------------------------------------------- /app/Listeners/LogSuccessfulLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/LogSuccessfulLogin.php -------------------------------------------------------------------------------- /app/Listeners/LogSuccessfulLogout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/LogSuccessfulLogout.php -------------------------------------------------------------------------------- /app/Listeners/LogUserDeletion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/LogUserDeletion.php -------------------------------------------------------------------------------- /app/Listeners/ProcessSwiftMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/ProcessSwiftMessage.php -------------------------------------------------------------------------------- /app/Listeners/RefreshConversations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/RefreshConversations.php -------------------------------------------------------------------------------- /app/Listeners/RememberUserLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/RememberUserLocale.php -------------------------------------------------------------------------------- /app/Listeners/RestartSwiftMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/RestartSwiftMailer.php -------------------------------------------------------------------------------- /app/Listeners/SendAutoReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/SendAutoReply.php -------------------------------------------------------------------------------- /app/Listeners/SendNotificationToUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/SendNotificationToUsers.php -------------------------------------------------------------------------------- /app/Listeners/SendPasswordChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/SendPasswordChanged.php -------------------------------------------------------------------------------- /app/Listeners/SendReplyToCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/SendReplyToCustomer.php -------------------------------------------------------------------------------- /app/Listeners/UpdateMailboxCounters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Listeners/UpdateMailboxCounters.php -------------------------------------------------------------------------------- /app/Mail/Alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Mail/Alert.php -------------------------------------------------------------------------------- /app/Mail/AutoReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Mail/AutoReply.php -------------------------------------------------------------------------------- /app/Mail/PasswordChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Mail/PasswordChanged.php -------------------------------------------------------------------------------- /app/Mail/ReplyToCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Mail/ReplyToCustomer.php -------------------------------------------------------------------------------- /app/Mail/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Mail/Test.php -------------------------------------------------------------------------------- /app/Mail/UserEmailReplyError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Mail/UserEmailReplyError.php -------------------------------------------------------------------------------- /app/Mail/UserInvite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Mail/UserInvite.php -------------------------------------------------------------------------------- /app/Mail/UserNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Mail/UserNotification.php -------------------------------------------------------------------------------- /app/Mailbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Mailbox.php -------------------------------------------------------------------------------- /app/MailboxUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/MailboxUser.php -------------------------------------------------------------------------------- /app/Misc/ConversationActionButtons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Misc/ConversationActionButtons.php -------------------------------------------------------------------------------- /app/Misc/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Misc/Functions.php -------------------------------------------------------------------------------- /app/Misc/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Misc/Helper.php -------------------------------------------------------------------------------- /app/Misc/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Misc/Mail.php -------------------------------------------------------------------------------- /app/Misc/SwiftGetSmtpQueueId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Misc/SwiftGetSmtpQueueId.php -------------------------------------------------------------------------------- /app/Misc/WpApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Misc/WpApi.php -------------------------------------------------------------------------------- /app/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Module.php -------------------------------------------------------------------------------- /app/Notifications/WebsiteNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Notifications/WebsiteNotification.php -------------------------------------------------------------------------------- /app/Observers/AttachmentObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Observers/AttachmentObserver.php -------------------------------------------------------------------------------- /app/Observers/ConversationObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Observers/ConversationObserver.php -------------------------------------------------------------------------------- /app/Observers/CustomerObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Observers/CustomerObserver.php -------------------------------------------------------------------------------- /app/Observers/EmailObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Observers/EmailObserver.php -------------------------------------------------------------------------------- /app/Observers/FollowerObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Observers/FollowerObserver.php -------------------------------------------------------------------------------- /app/Observers/MailboxObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Observers/MailboxObserver.php -------------------------------------------------------------------------------- /app/Observers/SendLogObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Observers/SendLogObserver.php -------------------------------------------------------------------------------- /app/Observers/ThreadObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Observers/ThreadObserver.php -------------------------------------------------------------------------------- /app/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Observers/UserObserver.php -------------------------------------------------------------------------------- /app/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Option.php -------------------------------------------------------------------------------- /app/Policies/ConversationPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Policies/ConversationPolicy.php -------------------------------------------------------------------------------- /app/Policies/FolderPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Policies/FolderPolicy.php -------------------------------------------------------------------------------- /app/Policies/MailboxPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Policies/MailboxPolicy.php -------------------------------------------------------------------------------- /app/Policies/ThreadPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Policies/ThreadPolicy.php -------------------------------------------------------------------------------- /app/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Policies/UserPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/PolycastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Providers/PolycastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/SendLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/SendLog.php -------------------------------------------------------------------------------- /app/Sendmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Sendmail.php -------------------------------------------------------------------------------- /app/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Subscription.php -------------------------------------------------------------------------------- /app/Thread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/Thread.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/composer.lock -------------------------------------------------------------------------------- /config/activitylog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/activitylog.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/imap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/imap.php -------------------------------------------------------------------------------- /config/installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/installer.php -------------------------------------------------------------------------------- /config/laroute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/laroute.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/minify.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/minify.config.php -------------------------------------------------------------------------------- /config/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/modules.php -------------------------------------------------------------------------------- /config/purifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/purifier.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/self-update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/self-update.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/session.php -------------------------------------------------------------------------------- /config/subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/subscriptions.php -------------------------------------------------------------------------------- /config/translation-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/translation-manager.php -------------------------------------------------------------------------------- /config/trustedproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/trustedproxy.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/CustomerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/database/factories/CustomerFactory.php -------------------------------------------------------------------------------- /database/factories/EmailFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/database/factories/EmailFactory.php -------------------------------------------------------------------------------- /database/factories/FolderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/database/factories/FolderFactory.php -------------------------------------------------------------------------------- /database/factories/MailboxFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/database/factories/MailboxFactory.php -------------------------------------------------------------------------------- /database/factories/ThreadFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/database/factories/ThreadFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeds/CustomersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/database/seeds/CustomersTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/MailboxesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/database/seeds/MailboxesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/database/seeds/UsersTableSeeder.php -------------------------------------------------------------------------------- /overrides/filp/whoops/src/Whoops/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/filp/whoops/src/Whoops/Run.php -------------------------------------------------------------------------------- /overrides/guzzlehttp/psr7/src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/guzzlehttp/psr7/src/Uri.php -------------------------------------------------------------------------------- /overrides/mews/purifier/src/Purifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/mews/purifier/src/Purifier.php -------------------------------------------------------------------------------- /overrides/natxet/cssmin/src/CssMin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/natxet/cssmin/src/CssMin.php -------------------------------------------------------------------------------- /overrides/nwidart/laravel-modules/src/Commands/stubs/scaffold/config.stub: -------------------------------------------------------------------------------- 1 | '$STUDLY_NAME$' 5 | ]; 6 | -------------------------------------------------------------------------------- /overrides/psy/psysh/src/CodeCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/psy/psysh/src/CodeCleaner.php -------------------------------------------------------------------------------- /overrides/psy/psysh/src/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/psy/psysh/src/Shell.php -------------------------------------------------------------------------------- /overrides/psy/psysh/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/psy/psysh/src/functions.php -------------------------------------------------------------------------------- /overrides/ramsey/uuid/src/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/ramsey/uuid/src/Uuid.php -------------------------------------------------------------------------------- /overrides/ramsey/uuid/src/UuidFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/ramsey/uuid/src/UuidFactory.php -------------------------------------------------------------------------------- /overrides/spatie/string/src/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/spatie/string/src/Str.php -------------------------------------------------------------------------------- /overrides/symfony/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/symfony/console/Application.php -------------------------------------------------------------------------------- /overrides/symfony/console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/symfony/console/Input/Input.php -------------------------------------------------------------------------------- /overrides/symfony/finder/Finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/symfony/finder/Finder.php -------------------------------------------------------------------------------- /overrides/symfony/process/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/symfony/process/Process.php -------------------------------------------------------------------------------- /overrides/symfony/routing/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/symfony/routing/Route.php -------------------------------------------------------------------------------- /overrides/tormjens/eventy/src/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/tormjens/eventy/src/Action.php -------------------------------------------------------------------------------- /overrides/tormjens/eventy/src/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/tormjens/eventy/src/Event.php -------------------------------------------------------------------------------- /overrides/tormjens/eventy/src/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/tormjens/eventy/src/Filter.php -------------------------------------------------------------------------------- /overrides/vlucas/phpdotenv/src/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/vlucas/phpdotenv/src/Loader.php -------------------------------------------------------------------------------- /overrides/webklex/php-imap/src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/webklex/php-imap/src/Client.php -------------------------------------------------------------------------------- /overrides/webklex/php-imap/src/Folder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/webklex/php-imap/src/Folder.php -------------------------------------------------------------------------------- /overrides/webklex/php-imap/src/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/webklex/php-imap/src/Header.php -------------------------------------------------------------------------------- /overrides/webklex/php-imap/src/Part.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/overrides/webklex/php-imap/src/Part.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/android-chrome-256x256.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/css/bootstrap-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/css/bootstrap-rtl.css -------------------------------------------------------------------------------- /public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/css/bootstrap.css -------------------------------------------------------------------------------- /public/css/builds/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/css/builds/.htaccess -------------------------------------------------------------------------------- /public/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/css/fonts.css -------------------------------------------------------------------------------- /public/css/magic-check.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/css/magic-check.css -------------------------------------------------------------------------------- /public/css/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/css/select2/select2.css -------------------------------------------------------------------------------- /public/css/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/css/select2/select2.min.css -------------------------------------------------------------------------------- /public/css/style-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/css/style-rtl.css -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/css/style.css -------------------------------------------------------------------------------- /public/favicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/favicon.gif -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/fonts/yekan/Yekan.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/fonts/yekan/Yekan.eot -------------------------------------------------------------------------------- /public/fonts/yekan/Yekan.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/fonts/yekan/Yekan.otf -------------------------------------------------------------------------------- /public/fonts/yekan/Yekan.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/fonts/yekan/Yekan.ttf -------------------------------------------------------------------------------- /public/fonts/yekan/Yekan.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/fonts/yekan/Yekan.woff -------------------------------------------------------------------------------- /public/fonts/yekan/Yekan.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/fonts/yekan/Yekan.woff2 -------------------------------------------------------------------------------- /public/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/img/banner.png -------------------------------------------------------------------------------- /public/img/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/img/default-avatar.png -------------------------------------------------------------------------------- /public/img/default-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/img/default-module.png -------------------------------------------------------------------------------- /public/img/enable-push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/img/enable-push.png -------------------------------------------------------------------------------- /public/img/loader-grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/img/loader-grey.gif -------------------------------------------------------------------------------- /public/img/loader-main.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/img/loader-main.gif -------------------------------------------------------------------------------- /public/img/loader-tiny.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/img/loader-tiny.gif -------------------------------------------------------------------------------- /public/img/logo-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/img/logo-300.png -------------------------------------------------------------------------------- /public/img/logo-600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/img/logo-600.png -------------------------------------------------------------------------------- /public/img/logo-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/img/logo-brand.svg -------------------------------------------------------------------------------- /public/img/logo-icon-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/img/logo-icon-150.png -------------------------------------------------------------------------------- /public/img/logo-icon-white-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/img/logo-icon-white-300.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/index.php -------------------------------------------------------------------------------- /public/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/install.php -------------------------------------------------------------------------------- /public/installer/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/installer/css/fontawesome.css -------------------------------------------------------------------------------- /public/installer/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/installer/css/style.css -------------------------------------------------------------------------------- /public/installer/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/installer/css/style.css.map -------------------------------------------------------------------------------- /public/installer/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/installer/css/style.min.css -------------------------------------------------------------------------------- /public/installer/css/style.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/installer/css/style.min.css.map -------------------------------------------------------------------------------- /public/installer/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/installer/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/installer/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/installer/fonts/ionicons.eot -------------------------------------------------------------------------------- /public/installer/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/installer/fonts/ionicons.svg -------------------------------------------------------------------------------- /public/installer/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/installer/fonts/ionicons.ttf -------------------------------------------------------------------------------- /public/installer/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/installer/fonts/ionicons.woff -------------------------------------------------------------------------------- /public/installer/img/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/installer/img/pattern.png -------------------------------------------------------------------------------- /public/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/bootstrap.js -------------------------------------------------------------------------------- /public/js/builds/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/builds/.htaccess -------------------------------------------------------------------------------- /public/js/datatables/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/datatables/datatables.css -------------------------------------------------------------------------------- /public/js/datatables/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/datatables/datatables.js -------------------------------------------------------------------------------- /public/js/datatables/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/datatables/datatables.min.css -------------------------------------------------------------------------------- /public/js/datatables/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/datatables/datatables.min.js -------------------------------------------------------------------------------- /public/js/flatpickr/flatpickr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/flatpickr.css -------------------------------------------------------------------------------- /public/js/flatpickr/flatpickr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/flatpickr.js -------------------------------------------------------------------------------- /public/js/flatpickr/flatpickr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/flatpickr.min.css -------------------------------------------------------------------------------- /public/js/flatpickr/flatpickr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/flatpickr.min.js -------------------------------------------------------------------------------- /public/js/flatpickr/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/ie.css -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/ar.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/at.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/az.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/be.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/bg.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/bn.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/bs.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/cat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/cat.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/cs.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/cy.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/da.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/de.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/default.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/en.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/eo.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/es.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/et.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/fa.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/fi.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/fo.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/fr.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/ga.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/gr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/gr.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/he.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/hi.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/hr.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/hu.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/id.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/is.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/it.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/ja.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/km.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/ko.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/kz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/kz.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/lt.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/lv.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/mk.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/mn.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/ms.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/my.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/nl.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/no.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/pa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/pa.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/pl.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/pt-br.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/pt-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/pt-pt.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/ro.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/ru.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/si.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/sk.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/sl.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/sq.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/sr-cyr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/sr-cyr.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/sr.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/sv.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/th.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/tr.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/uk.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/vn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/vn.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/zh-cn.js -------------------------------------------------------------------------------- /public/js/flatpickr/l10n/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/l10n/zh-tw.js -------------------------------------------------------------------------------- /public/js/flatpickr/plugins/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/plugins/style.css -------------------------------------------------------------------------------- /public/js/flatpickr/plugins/weekSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/flatpickr/plugins/weekSelect.js -------------------------------------------------------------------------------- /public/js/html5sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/html5sortable.js -------------------------------------------------------------------------------- /public/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/jquery.js -------------------------------------------------------------------------------- /public/js/jquery.titlealert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/jquery.titlealert.js -------------------------------------------------------------------------------- /public/js/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/lang.js -------------------------------------------------------------------------------- /public/js/laroute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/laroute.js -------------------------------------------------------------------------------- /public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/main.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/al.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/al.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ar.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/bg.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ca.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/cs.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/cs.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/cs.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/da.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/de.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/de.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/de.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/el.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/el.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/el.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/en.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/en.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/en.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/es.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/et.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/eu.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/fa.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/fi.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/fi.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/fi.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/fr.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/fr.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/fr.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/he.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/he.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/he.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/hr.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/hr.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/hr.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/hu.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/hu.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/hu.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/id.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/id.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/id.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/it.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/it.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/it.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ja.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ja.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ja.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ko.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/kz.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/js/parsley/i18n/lt.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/lt.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/lt.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/lv.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/lv.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/lv.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ms.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ms.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ms.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/nl.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/nl.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/nl.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/no.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/pl.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/pt-br.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/pt-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/pt-pt.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ro.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ro.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ro.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ru.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ru.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ru.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/sk.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/sk.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/sk.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/sl.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/sl.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/sl.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/sq.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/sr.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/sr.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/sr.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/sv.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/sv.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/sv.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/th.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/tk.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/tr.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ua.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ua.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/ua.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/uk.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/uk.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/uk.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/zh-cn.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/zh-cn.extra.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/zh-cn.js -------------------------------------------------------------------------------- /public/js/parsley/i18n/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/i18n/zh-tw.js -------------------------------------------------------------------------------- /public/js/parsley/parsley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/parsley.js -------------------------------------------------------------------------------- /public/js/parsley/parsley.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/parsley.js.map -------------------------------------------------------------------------------- /public/js/parsley/parsley.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/parsley.min.js -------------------------------------------------------------------------------- /public/js/parsley/parsley.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/parsley/parsley.min.js.map -------------------------------------------------------------------------------- /public/js/polycast/polycast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/polycast/polycast.js -------------------------------------------------------------------------------- /public/js/polycast/polycast.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/polycast/polycast.min.js -------------------------------------------------------------------------------- /public/js/push/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/push/push.js -------------------------------------------------------------------------------- /public/js/push/push.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/push/push.min.js -------------------------------------------------------------------------------- /public/js/push/serviceWorker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/push/serviceWorker.min.js -------------------------------------------------------------------------------- /public/js/select2/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/af.js -------------------------------------------------------------------------------- /public/js/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/ar.js -------------------------------------------------------------------------------- /public/js/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/az.js -------------------------------------------------------------------------------- /public/js/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/bg.js -------------------------------------------------------------------------------- /public/js/select2/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/bs.js -------------------------------------------------------------------------------- /public/js/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/ca.js -------------------------------------------------------------------------------- /public/js/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/cs.js -------------------------------------------------------------------------------- /public/js/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/da.js -------------------------------------------------------------------------------- /public/js/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/de.js -------------------------------------------------------------------------------- /public/js/select2/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/dsb.js -------------------------------------------------------------------------------- /public/js/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/el.js -------------------------------------------------------------------------------- /public/js/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/en.js -------------------------------------------------------------------------------- /public/js/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/es.js -------------------------------------------------------------------------------- /public/js/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/et.js -------------------------------------------------------------------------------- /public/js/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/eu.js -------------------------------------------------------------------------------- /public/js/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/fa.js -------------------------------------------------------------------------------- /public/js/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/fi.js -------------------------------------------------------------------------------- /public/js/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/fr.js -------------------------------------------------------------------------------- /public/js/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/gl.js -------------------------------------------------------------------------------- /public/js/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/he.js -------------------------------------------------------------------------------- /public/js/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/hi.js -------------------------------------------------------------------------------- /public/js/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/hr.js -------------------------------------------------------------------------------- /public/js/select2/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/hsb.js -------------------------------------------------------------------------------- /public/js/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/hu.js -------------------------------------------------------------------------------- /public/js/select2/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/hy.js -------------------------------------------------------------------------------- /public/js/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/id.js -------------------------------------------------------------------------------- /public/js/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/is.js -------------------------------------------------------------------------------- /public/js/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/it.js -------------------------------------------------------------------------------- /public/js/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/ja.js -------------------------------------------------------------------------------- /public/js/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/km.js -------------------------------------------------------------------------------- /public/js/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/ko.js -------------------------------------------------------------------------------- /public/js/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/lt.js -------------------------------------------------------------------------------- /public/js/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/lv.js -------------------------------------------------------------------------------- /public/js/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/mk.js -------------------------------------------------------------------------------- /public/js/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/ms.js -------------------------------------------------------------------------------- /public/js/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/nb.js -------------------------------------------------------------------------------- /public/js/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/nl.js -------------------------------------------------------------------------------- /public/js/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/pl.js -------------------------------------------------------------------------------- /public/js/select2/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/ps.js -------------------------------------------------------------------------------- /public/js/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /public/js/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/pt.js -------------------------------------------------------------------------------- /public/js/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/ro.js -------------------------------------------------------------------------------- /public/js/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/ru.js -------------------------------------------------------------------------------- /public/js/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/sk.js -------------------------------------------------------------------------------- /public/js/select2/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/sl.js -------------------------------------------------------------------------------- /public/js/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /public/js/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/sr.js -------------------------------------------------------------------------------- /public/js/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/sv.js -------------------------------------------------------------------------------- /public/js/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/th.js -------------------------------------------------------------------------------- /public/js/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/tr.js -------------------------------------------------------------------------------- /public/js/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/uk.js -------------------------------------------------------------------------------- /public/js/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/vi.js -------------------------------------------------------------------------------- /public/js/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /public/js/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /public/js/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/select2.full.js -------------------------------------------------------------------------------- /public/js/select2/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/select2.full.min.js -------------------------------------------------------------------------------- /public/js/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/select2.js -------------------------------------------------------------------------------- /public/js/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/select2/select2.min.js -------------------------------------------------------------------------------- /public/js/summernote/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/summernote/font/summernote.eot -------------------------------------------------------------------------------- /public/js/summernote/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/summernote/font/summernote.ttf -------------------------------------------------------------------------------- /public/js/summernote/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/summernote/font/summernote.woff -------------------------------------------------------------------------------- /public/js/summernote/summernote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/summernote/summernote.css -------------------------------------------------------------------------------- /public/js/summernote/summernote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/summernote/summernote.js -------------------------------------------------------------------------------- /public/js/summernote/summernote.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/summernote/summernote.min.js -------------------------------------------------------------------------------- /public/js/taphold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/js/taphold.js -------------------------------------------------------------------------------- /public/modules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/public/tools.php -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/js/laroute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/assets/js/laroute.js -------------------------------------------------------------------------------- /resources/assets/js/laroute_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/assets/js/laroute_module.js -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ar.json -------------------------------------------------------------------------------- /resources/lang/ar/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ar/auth.php -------------------------------------------------------------------------------- /resources/lang/ar/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ar/pagination.php -------------------------------------------------------------------------------- /resources/lang/ar/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ar/passwords.php -------------------------------------------------------------------------------- /resources/lang/ar/validation-inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ar/validation-inline.php -------------------------------------------------------------------------------- /resources/lang/ar/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ar/validation.php -------------------------------------------------------------------------------- /resources/lang/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/cs.json -------------------------------------------------------------------------------- /resources/lang/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/da.json -------------------------------------------------------------------------------- /resources/lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/de.json -------------------------------------------------------------------------------- /resources/lang/de/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/de/auth.php -------------------------------------------------------------------------------- /resources/lang/de/installer_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/de/installer_messages.php -------------------------------------------------------------------------------- /resources/lang/de/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/de/passwords.php -------------------------------------------------------------------------------- /resources/lang/de/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/de/validation.php -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/installer_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/en/installer_messages.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/es.json -------------------------------------------------------------------------------- /resources/lang/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/fa.json -------------------------------------------------------------------------------- /resources/lang/fa/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/fa/auth.php -------------------------------------------------------------------------------- /resources/lang/fa/installer_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/fa/installer_messages.php -------------------------------------------------------------------------------- /resources/lang/fa/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/fa/passwords.php -------------------------------------------------------------------------------- /resources/lang/fa/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/fa/validation.php -------------------------------------------------------------------------------- /resources/lang/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/fi.json -------------------------------------------------------------------------------- /resources/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/fr.json -------------------------------------------------------------------------------- /resources/lang/fr/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/fr/auth.php -------------------------------------------------------------------------------- /resources/lang/fr/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/fr/pagination.php -------------------------------------------------------------------------------- /resources/lang/fr/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/fr/passwords.php -------------------------------------------------------------------------------- /resources/lang/fr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/fr/validation.php -------------------------------------------------------------------------------- /resources/lang/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/he.json -------------------------------------------------------------------------------- /resources/lang/he/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/he/auth.php -------------------------------------------------------------------------------- /resources/lang/he/installer_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/he/installer_messages.php -------------------------------------------------------------------------------- /resources/lang/he/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/he/passwords.php -------------------------------------------------------------------------------- /resources/lang/he/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/he/validation.php -------------------------------------------------------------------------------- /resources/lang/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/hr.json -------------------------------------------------------------------------------- /resources/lang/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/hu.json -------------------------------------------------------------------------------- /resources/lang/hu/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/hu/auth.php -------------------------------------------------------------------------------- /resources/lang/hu/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/hu/pagination.php -------------------------------------------------------------------------------- /resources/lang/hu/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/hu/passwords.php -------------------------------------------------------------------------------- /resources/lang/hu/validation-inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/hu/validation-inline.php -------------------------------------------------------------------------------- /resources/lang/hu/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/hu/validation.php -------------------------------------------------------------------------------- /resources/lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/it.json -------------------------------------------------------------------------------- /resources/lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ja.json -------------------------------------------------------------------------------- /resources/lang/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ko.json -------------------------------------------------------------------------------- /resources/lang/ko/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ko/auth.php -------------------------------------------------------------------------------- /resources/lang/ko/installer_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ko/installer_messages.php -------------------------------------------------------------------------------- /resources/lang/ko/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ko/passwords.php -------------------------------------------------------------------------------- /resources/lang/ko/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ko/validation.php -------------------------------------------------------------------------------- /resources/lang/kz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/kz.json -------------------------------------------------------------------------------- /resources/lang/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/nl.json -------------------------------------------------------------------------------- /resources/lang/nl/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/nl/auth.php -------------------------------------------------------------------------------- /resources/lang/nl/installer_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/nl/installer_messages.php -------------------------------------------------------------------------------- /resources/lang/nl/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/nl/passwords.php -------------------------------------------------------------------------------- /resources/lang/nl/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/nl/validation.php -------------------------------------------------------------------------------- /resources/lang/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/no.json -------------------------------------------------------------------------------- /resources/lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/pl.json -------------------------------------------------------------------------------- /resources/lang/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/pt-BR.json -------------------------------------------------------------------------------- /resources/lang/pt-BR/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/pt-BR/auth.php -------------------------------------------------------------------------------- /resources/lang/pt-BR/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/pt-BR/pagination.php -------------------------------------------------------------------------------- /resources/lang/pt-BR/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/pt-BR/passwords.php -------------------------------------------------------------------------------- /resources/lang/pt-BR/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/pt-BR/validation.php -------------------------------------------------------------------------------- /resources/lang/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/pt-PT.json -------------------------------------------------------------------------------- /resources/lang/pt-PT/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/pt-PT/auth.php -------------------------------------------------------------------------------- /resources/lang/pt-PT/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/pt-PT/pagination.php -------------------------------------------------------------------------------- /resources/lang/pt-PT/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/pt-PT/passwords.php -------------------------------------------------------------------------------- /resources/lang/pt-PT/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/pt-PT/validation.php -------------------------------------------------------------------------------- /resources/lang/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ro.json -------------------------------------------------------------------------------- /resources/lang/ro/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ro/auth.php -------------------------------------------------------------------------------- /resources/lang/ro/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ro/pagination.php -------------------------------------------------------------------------------- /resources/lang/ro/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ro/passwords.php -------------------------------------------------------------------------------- /resources/lang/ro/validation-inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ro/validation-inline.php -------------------------------------------------------------------------------- /resources/lang/ro/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ro/validation.php -------------------------------------------------------------------------------- /resources/lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/ru.json -------------------------------------------------------------------------------- /resources/lang/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/sk.json -------------------------------------------------------------------------------- /resources/lang/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/sl.json -------------------------------------------------------------------------------- /resources/lang/sl/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/sl/auth.php -------------------------------------------------------------------------------- /resources/lang/sl/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/sl/pagination.php -------------------------------------------------------------------------------- /resources/lang/sl/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/sl/passwords.php -------------------------------------------------------------------------------- /resources/lang/sl/validation-inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/sl/validation-inline.php -------------------------------------------------------------------------------- /resources/lang/sl/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/sl/validation.php -------------------------------------------------------------------------------- /resources/lang/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/sv.json -------------------------------------------------------------------------------- /resources/lang/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/tr.json -------------------------------------------------------------------------------- /resources/lang/tr/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/tr/auth.php -------------------------------------------------------------------------------- /resources/lang/tr/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/tr/pagination.php -------------------------------------------------------------------------------- /resources/lang/tr/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/tr/passwords.php -------------------------------------------------------------------------------- /resources/lang/tr/validation-inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/tr/validation-inline.php -------------------------------------------------------------------------------- /resources/lang/tr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/tr/validation.php -------------------------------------------------------------------------------- /resources/lang/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/uk.json -------------------------------------------------------------------------------- /resources/lang/uk/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/uk/auth.php -------------------------------------------------------------------------------- /resources/lang/uk/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/uk/pagination.php -------------------------------------------------------------------------------- /resources/lang/uk/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/uk/passwords.php -------------------------------------------------------------------------------- /resources/lang/uk/validation-inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/uk/validation-inline.php -------------------------------------------------------------------------------- /resources/lang/uk/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/uk/validation.php -------------------------------------------------------------------------------- /resources/lang/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/zh-CN.json -------------------------------------------------------------------------------- /resources/lang/zh-CN/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/zh-CN/auth.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/zh-CN/pagination.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/zh-CN/passwords.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/lang/zh-CN/validation.php -------------------------------------------------------------------------------- /resources/views/auth/banner.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/auth/banner.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/customers/merge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/customers/merge.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/js/vars.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/js/vars.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/mailboxes/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/mailboxes/view.blade.php -------------------------------------------------------------------------------- /resources/views/modules/modules.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/modules/modules.blade.php -------------------------------------------------------------------------------- /resources/views/open/user_setup.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/open/user_setup.blade.php -------------------------------------------------------------------------------- /resources/views/partials/editor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/partials/editor.blade.php -------------------------------------------------------------------------------- /resources/views/partials/empty.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/partials/empty.blade.php -------------------------------------------------------------------------------- /resources/views/secure/logs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/secure/logs.blade.php -------------------------------------------------------------------------------- /resources/views/settings/alerts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/settings/alerts.blade.php -------------------------------------------------------------------------------- /resources/views/settings/emails.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/settings/emails.blade.php -------------------------------------------------------------------------------- /resources/views/settings/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/settings/view.blade.php -------------------------------------------------------------------------------- /resources/views/system/status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/system/status.blade.php -------------------------------------------------------------------------------- /resources/views/system/tools.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/system/tools.blade.php -------------------------------------------------------------------------------- /resources/views/users/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/users/create.blade.php -------------------------------------------------------------------------------- /resources/views/users/password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/users/password.blade.php -------------------------------------------------------------------------------- /resources/views/users/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/users/profile.blade.php -------------------------------------------------------------------------------- /resources/views/users/users.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/resources/views/users/users.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/translation-manager/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/translation-manager/index.php: -------------------------------------------------------------------------------- 1 | render(); ?> -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/storage/app/public/.htaccess -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Fixtures/FixtureWebklexMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tests/Fixtures/FixtureWebklexMessage.php -------------------------------------------------------------------------------- /tests/Messages/issue-4567.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tests/Messages/issue-4567.eml -------------------------------------------------------------------------------- /tests/Messages/message-1.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tests/Messages/message-1.eml -------------------------------------------------------------------------------- /tests/Messages/message-1b.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tests/Messages/message-1b.eml -------------------------------------------------------------------------------- /tests/Messages/message-1symbols.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tests/Messages/message-1symbols.eml -------------------------------------------------------------------------------- /tests/Messages/message-2.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tests/Messages/message-2.eml -------------------------------------------------------------------------------- /tests/Messages/message-3.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tests/Messages/message-3.eml -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/.keyfile: -------------------------------------------------------------------------------- 1 | 94SEEZqVUSdaVzC2xQLDtwspQSIrSdmR 2 | -------------------------------------------------------------------------------- /tests/Unit/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tests/Unit/ConfigTest.php -------------------------------------------------------------------------------- /tests/Unit/MailVarsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tests/Unit/MailVarsTest.php -------------------------------------------------------------------------------- /tests/Unit/WebklexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tests/Unit/WebklexTest.php -------------------------------------------------------------------------------- /tools/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tools/install.sh -------------------------------------------------------------------------------- /tools/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/tools/update.sh -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/barryvdh/laravel-translation-manager/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/barryvdh/laravel-translation-manager/resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bin/doctrine-dbal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/bin/doctrine-dbal -------------------------------------------------------------------------------- /vendor/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/bin/php-parse -------------------------------------------------------------------------------- /vendor/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/bin/psysh -------------------------------------------------------------------------------- /vendor/chumper/zipper/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/chumper/zipper/.travis.yml -------------------------------------------------------------------------------- /vendor/codedge/laravel-selfupdater/resources/views/self-update.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/devfactory/minify/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/devfactory/minify/.travis.yml -------------------------------------------------------------------------------- /vendor/devfactory/minify/src/Minify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/devfactory/minify/src/Minify.php -------------------------------------------------------------------------------- /vendor/doctrine/cache/.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/doctrine/cache/.coveralls.yml -------------------------------------------------------------------------------- /vendor/doctrine/cache/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/doctrine/cache/.travis.yml -------------------------------------------------------------------------------- /vendor/doctrine/cache/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/doctrine/cache/build.properties -------------------------------------------------------------------------------- /vendor/doctrine/dbal/bin/doctrine-dbal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/doctrine/dbal/bin/doctrine-dbal -------------------------------------------------------------------------------- /vendor/doctrine/dbal/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/doctrine/dbal/psalm.xml -------------------------------------------------------------------------------- /vendor/doctrine/event-manager/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/doctrine/event-manager/psalm.xml -------------------------------------------------------------------------------- /vendor/erusev/parsedown/Parsedown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/erusev/parsedown/Parsedown.php -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ezyang/htmlpurifier/CREDITS -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ezyang/htmlpurifier/INSTALL -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ezyang/htmlpurifier/NEWS -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ezyang/htmlpurifier/TODO -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/VERSION: -------------------------------------------------------------------------------- 1 | 4.12.0 -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/WHATSNEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ezyang/htmlpurifier/WHATSNEW -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/WYSIWYG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ezyang/htmlpurifier/WYSIWYG -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/extras/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ezyang/htmlpurifier/extras/README -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ezyang/htmlpurifier/package.php -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/phpdoc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ezyang/htmlpurifier/phpdoc.ini -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/guzzle/Dockerfile -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/guzzle/src/Pool.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/guzzle/src/Utils.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/promises/src/Create.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/Each.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/promises/src/Each.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/Is.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/promises/src/Is.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/FnStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/psr7/src/FnStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/psr7/src/Header.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/psr7/src/Message.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/MimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/psr7/src/MimeType.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/PumpStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/psr7/src/PumpStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/psr7/src/Query.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/psr7/src/Request.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/psr7/src/Response.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Rfc7230.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/psr7/src/Rfc7230.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/psr7/src/Stream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/psr7/src/Utils.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/guzzlehttp/psr7/src/functions.php -------------------------------------------------------------------------------- /vendor/html2text/html2text/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/html2text/html2text/.travis.yml -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/tinker/config/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/laravel/tinker/config/tinker.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/league/flysystem/src/Config.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/league/flysystem/src/Directory.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/league/flysystem/src/Exception.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/league/flysystem/src/File.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/league/flysystem/src/Handler.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/league/flysystem/src/Util.php -------------------------------------------------------------------------------- /vendor/lord/laroute/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/lord/laroute/.travis.yml -------------------------------------------------------------------------------- /vendor/lord/laroute/config/laroute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/lord/laroute/config/laroute.php -------------------------------------------------------------------------------- /vendor/lord/laroute/gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/lord/laroute/gruntfile.js -------------------------------------------------------------------------------- /vendor/lord/laroute/karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/lord/laroute/karma.js -------------------------------------------------------------------------------- /vendor/lord/laroute/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/lord/laroute/public/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/lord/laroute/public/js/laroute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/lord/laroute/public/js/laroute.js -------------------------------------------------------------------------------- /vendor/mews/purifier/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/mews/purifier/.scrutinizer.yml -------------------------------------------------------------------------------- /vendor/mews/purifier/config/purifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/mews/purifier/config/purifier.php -------------------------------------------------------------------------------- /vendor/mews/purifier/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/mews/purifier/src/helpers.php -------------------------------------------------------------------------------- /vendor/natxet/cssmin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/natxet/cssmin/README -------------------------------------------------------------------------------- /vendor/nikic/php-parser/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /vendor/nwidart/laravel-modules/src/Commands/stubs/scaffold/config.stub: -------------------------------------------------------------------------------- 1 | '$STUDLY_NAME$' 5 | ]; 6 | -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/paragonie/random_compat/psalm.xml -------------------------------------------------------------------------------- /vendor/patchwork/utf8/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/patchwork/utf8/.travis.yml -------------------------------------------------------------------------------- /vendor/patchwork/utf8/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/patchwork/utf8/appveyor.yml -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Normalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/patchwork/utf8/src/Normalizer.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/AbstractLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psr/log/Psr/Log/AbstractLogger.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psr/log/Psr/Log/LogLevel.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psr/log/Psr/Log/LoggerTrait.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psr/log/Psr/Log/NullLogger.php -------------------------------------------------------------------------------- /vendor/psy/psysh/.phan/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/.phan/config.php -------------------------------------------------------------------------------- /vendor/psy/psysh/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/.styleci.yml -------------------------------------------------------------------------------- /vendor/psy/psysh/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/.travis.yml -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/build-stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/bin/build-stub -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/bin/psysh -------------------------------------------------------------------------------- /vendor/psy/psysh/src/ConfigPaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/ConfigPaths.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/Configuration.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/Context.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/ContextAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/ContextAware.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/ExecutionClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/ExecutionClosure.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/ExecutionLoop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/ExecutionLoop.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/ParserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/ParserFactory.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Readline/Libedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/Readline/Libedit.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Sudo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/Sudo.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Sudo/SudoVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/Sudo/SudoVisitor.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Util/Docblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/Util/Docblock.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Util/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/Util/Json.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Util/Mirror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/Util/Mirror.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Util/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/Util/Str.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/VarDumper/Cloner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/VarDumper/Cloner.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/psy/psysh/src/functions.php -------------------------------------------------------------------------------- /vendor/ramsey/uuid/src/BinaryUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ramsey/uuid/src/BinaryUtils.php -------------------------------------------------------------------------------- /vendor/ramsey/uuid/src/DegradedUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ramsey/uuid/src/DegradedUuid.php -------------------------------------------------------------------------------- /vendor/ramsey/uuid/src/FeatureSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ramsey/uuid/src/FeatureSet.php -------------------------------------------------------------------------------- /vendor/ramsey/uuid/src/UuidInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ramsey/uuid/src/UuidInterface.php -------------------------------------------------------------------------------- /vendor/ramsey/uuid/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/ramsey/uuid/src/functions.php -------------------------------------------------------------------------------- /vendor/spatie/laravel-activitylog/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/swiftmailer/swiftmailer/CHANGES -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/swiftmailer/swiftmailer/README -------------------------------------------------------------------------------- /vendor/symfony/console/ConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/symfony/console/ConsoleEvents.php -------------------------------------------------------------------------------- /vendor/symfony/console/Terminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/symfony/console/Terminal.php -------------------------------------------------------------------------------- /vendor/symfony/debug/BufferingLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/symfony/debug/BufferingLogger.php -------------------------------------------------------------------------------- /vendor/symfony/debug/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/symfony/debug/Debug.php -------------------------------------------------------------------------------- /vendor/symfony/debug/DebugClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/symfony/debug/DebugClassLoader.php -------------------------------------------------------------------------------- /vendor/symfony/debug/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/symfony/debug/ErrorHandler.php -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/PEARClass.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/VarDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/symfony/var-dumper/VarDumper.php -------------------------------------------------------------------------------- /vendor/tormjens/eventy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/tormjens/eventy/.travis.yml -------------------------------------------------------------------------------- /vendor/tormjens/eventy/src/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/tormjens/eventy/src/Events.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Dotenv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/vlucas/phpdotenv/src/Dotenv.php -------------------------------------------------------------------------------- /vendor/webklex/php-imap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/webklex/php-imap/.travis.yml -------------------------------------------------------------------------------- /vendor/webklex/php-imap/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/webklex/php-imap/_config.yml -------------------------------------------------------------------------------- /vendor/webklex/php-imap/src/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/webklex/php-imap/src/Address.php -------------------------------------------------------------------------------- /vendor/webklex/php-imap/src/IMAP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/vendor/webklex/php-imap/src/IMAP.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freescout-help-desk/freescout/HEAD/webpack.mix.js --------------------------------------------------------------------------------