├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support.md ├── dash.png ├── readme.gif └── workflows │ ├── dbsql-lint.yml │ ├── first-interaction.yml │ └── php-lint.yml ├── .gitignore ├── .htaccess ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── admin ├── ai_model.php ├── ai_provider.php ├── api_keys.php ├── app_log.php ├── audit_log.php ├── backup.php ├── category.php ├── contract_template.php ├── custom │ └── readme.php ├── custom_link.php ├── database_updates.php ├── debug.php ├── document_template.php ├── document_template_details.php ├── identity_provider.php ├── includes │ ├── inc_all_admin.php │ └── side_nav.php ├── index.php ├── mail_queue.php ├── modals │ ├── ai │ │ ├── ai_model_add.php │ │ ├── ai_model_edit.php │ │ ├── ai_provider_add.php │ │ └── ai_provider_edit.php │ ├── api │ │ └── api_key_add.php │ ├── category │ │ ├── category_add.php │ │ └── category_edit.php │ ├── contract_template │ │ ├── contract_template_add.php │ │ └── contract_template_edit.php │ ├── custom_field │ │ ├── custom_field_create.php │ │ └── custom_field_edit.php │ ├── custom_link │ │ ├── custom_link_add.php │ │ └── custom_link_edit.php │ ├── document_template │ │ ├── document_template_add.php │ │ └── document_template_edit.php │ ├── mail_queue │ │ └── mail_queue_message_view.php │ ├── payment_method │ │ ├── payment_method_add.php │ │ └── payment_method_edit.php │ ├── payment_provider │ │ ├── payment_provider_add.php │ │ └── payment_provider_edit.php │ ├── project_template │ │ ├── project_template_add.php │ │ ├── project_template_edit.php │ │ └── project_template_ticket_template_add.php │ ├── role │ │ ├── role_add.php │ │ └── role_edit.php │ ├── software_template │ │ ├── software_template_add.php │ │ └── software_template_edit.php │ ├── tag │ │ ├── tag_add.php │ │ └── tag_edit.php │ ├── tax │ │ ├── tax_add.php │ │ └── tax_edit.php │ ├── ticket_status │ │ ├── ticket_status_add.php │ │ └── ticket_status_edit.php │ ├── ticket_template │ │ ├── ticket_template_add.php │ │ ├── ticket_template_edit.php │ │ └── ticket_template_task_edit.php │ ├── user │ │ ├── user_add.php │ │ ├── user_all_reset_password.php │ │ ├── user_archive.php │ │ ├── user_edit.php │ │ ├── user_export.php │ │ ├── user_invite.php │ │ └── user_restore.php │ └── vendor_template │ │ ├── vendor_template_add.php │ │ └── vendor_template_edit.php ├── modules.php ├── payment_method.php ├── payment_provider.php ├── post.php ├── post │ ├── ai_model.php │ ├── ai_provider.php │ ├── api_keys.php │ ├── backup.php │ ├── category.php │ ├── category_model.php │ ├── contract_template.php │ ├── custom_field.php │ ├── custom_field_model.php │ ├── custom_link.php │ ├── document_template.php │ ├── identity_provider.php │ ├── mail_queue.php │ ├── payment_method.php │ ├── payment_provider.php │ ├── project_template.php │ ├── roles.php │ ├── saved_payment_method.php │ ├── settings_ai.php │ ├── settings_company.php │ ├── settings_default.php │ ├── settings_invoice.php │ ├── settings_localization.php │ ├── settings_mail.php │ ├── settings_module.php │ ├── settings_notification.php │ ├── settings_online_payment.php │ ├── settings_online_payment_clients.php │ ├── settings_project.php │ ├── settings_quote.php │ ├── settings_security.php │ ├── settings_telemetry.php │ ├── settings_theme.php │ ├── settings_ticket.php │ ├── software_template.php │ ├── tag.php │ ├── tag_model.php │ ├── tax.php │ ├── ticket_status.php │ ├── ticket_template.php │ ├── update.php │ ├── user_model.php │ ├── users.php │ └── vendor_template.php ├── project_template.php ├── project_template_details.php ├── roles.php ├── saved_payment_method.php ├── settings_company.php ├── settings_custom_fields.php ├── settings_default.php ├── settings_invoice.php ├── settings_localization.php ├── settings_mail.php ├── settings_module.php ├── settings_notification.php ├── settings_project.php ├── settings_quote.php ├── settings_security.php ├── settings_telemetry.php ├── settings_theme.php ├── settings_ticket.php ├── software_template.php ├── tag.php ├── tax.php ├── ticket_status.php ├── ticket_template.php ├── ticket_template_details.php ├── update.php ├── users.php └── vendor_template.php ├── agent ├── accounts.php ├── ajax.php ├── asset_details.php ├── assets.php ├── blank.php ├── calendar.php ├── certificates.php ├── client_autopay.php ├── client_overview.php ├── clients.php ├── contact_details.php ├── contacts.php ├── credentials.php ├── css │ ├── quote_dropdowns_fix.css │ └── ticket_kanban.css ├── custom │ ├── includes │ │ ├── custom_side_nav.php │ │ └── inc_all_custom.php │ ├── index.php │ └── post.php ├── dashboard.php ├── document_details.php ├── documents.php ├── domains.php ├── expenses.php ├── files.php ├── global_search.php ├── includes │ ├── client_overview_side_nav.php │ ├── client_side_nav.php │ ├── get_side_nav_counts.php │ ├── inc_all.php │ ├── inc_all_client.php │ ├── inc_client_overview_all.php │ ├── inc_client_top_head.php │ └── side_nav.php ├── index.php ├── invoice.php ├── invoices.php ├── js │ ├── ai_ticket_summary.js │ ├── autopay_setup_stripe.js │ ├── certificate_fetch_ssl.js │ ├── client_delete_confirm.js │ ├── credential_show_otp_via_id.js │ ├── file_delete_modal.js │ ├── generate_password.js │ ├── guest_pay_invoice_stripe.js │ ├── share_modal.js │ ├── ticket_change_client.js │ ├── ticket_collision_detection.js │ ├── ticket_merge.js │ ├── ticket_time_tracking.js │ ├── tickets_add_modal.js │ └── tickets_kanban.js ├── locations.php ├── modals │ ├── account │ │ ├── account_add.php │ │ └── account_edit.php │ ├── asset │ │ ├── asset_add.php │ │ ├── asset_bulk_add_ticket.php │ │ ├── asset_bulk_assign_contact.php │ │ ├── asset_bulk_assign_location.php │ │ ├── asset_bulk_assign_physical_location.php │ │ ├── asset_bulk_assign_tags.php │ │ ├── asset_bulk_edit_status.php │ │ ├── asset_bulk_transfer_client.php │ │ ├── asset_copy.php │ │ ├── asset_details.php │ │ ├── asset_documents.php │ │ ├── asset_edit.php │ │ ├── asset_export.php │ │ ├── asset_import.php │ │ ├── asset_interface_add.php │ │ ├── asset_interface_bulk_edit_network.php │ │ ├── asset_interface_bulk_edit_type.php │ │ ├── asset_interface_edit.php │ │ ├── asset_interface_export.php │ │ ├── asset_interface_import.php │ │ ├── asset_interface_multiple_add.php │ │ ├── asset_link_credential.php │ │ ├── asset_link_document.php │ │ ├── asset_link_file.php │ │ ├── asset_link_service.php │ │ └── asset_link_software.php │ ├── calendar │ │ ├── calendar_add.php │ │ ├── calendar_edit.php │ │ ├── calendar_event_add.php │ │ └── calendar_event_edit.php │ ├── certificate │ │ ├── certificate_add.php │ │ ├── certificate_edit.php │ │ └── certificate_export.php │ ├── client │ │ ├── client_add.php │ │ ├── client_bulk_add_ticket.php │ │ ├── client_bulk_assign_tags.php │ │ ├── client_bulk_edit_hourly_rate.php │ │ ├── client_bulk_edit_industry.php │ │ ├── client_bulk_edit_referral.php │ │ ├── client_bulk_email.php │ │ ├── client_credit_add.php │ │ ├── client_delete.php │ │ ├── client_download_pdf.php │ │ ├── client_edit.php │ │ ├── client_export.php │ │ └── client_import.php │ ├── contact │ │ ├── contact_add.php │ │ ├── contact_archive.php │ │ ├── contact_bulk_assign_location.php │ │ ├── contact_bulk_assign_tags.php │ │ ├── contact_bulk_edit_department.php │ │ ├── contact_bulk_edit_phone.php │ │ ├── contact_bulk_edit_role.php │ │ ├── contact_bulk_email.php │ │ ├── contact_details.php │ │ ├── contact_edit.php │ │ ├── contact_export.php │ │ ├── contact_import.php │ │ ├── contact_invite.php │ │ ├── contact_link_asset.php │ │ ├── contact_link_credential.php │ │ ├── contact_link_document.php │ │ ├── contact_link_file.php │ │ ├── contact_link_service.php │ │ ├── contact_link_software.php │ │ └── contact_note_add.php │ ├── credential │ │ ├── credential_add.php │ │ ├── credential_bulk_assign_tags.php │ │ ├── credential_edit.php │ │ ├── credential_export.php │ │ ├── credential_import.php │ │ └── credential_view.php │ ├── document │ │ ├── document_add.php │ │ ├── document_add_file_relation.php │ │ ├── document_add_from_template.php │ │ ├── document_bulk_move.php │ │ ├── document_edit.php │ │ ├── document_edit_visibility.php │ │ ├── document_link_asset.php │ │ ├── document_link_contact.php │ │ ├── document_link_file.php │ │ ├── document_link_software.php │ │ ├── document_link_vendor.php │ │ ├── document_move.php │ │ ├── document_rename.php │ │ ├── document_version_view.php │ │ └── document_view.php │ ├── domain │ │ ├── domain_add.php │ │ ├── domain_edit.php │ │ └── domain_export.php │ ├── expense │ │ ├── expense_add.php │ │ ├── expense_bulk_delete.php │ │ ├── expense_bulk_edit_account.php │ │ ├── expense_bulk_edit_category.php │ │ ├── expense_bulk_edit_client.php │ │ ├── expense_copy.php │ │ ├── expense_edit.php │ │ ├── expense_export.php │ │ └── expense_refund.php │ ├── file │ │ ├── file_bulk_move.php │ │ ├── file_delete.php │ │ ├── file_link_asset.php │ │ ├── file_move.php │ │ ├── file_rename.php │ │ ├── file_upload.php │ │ └── file_view.php │ ├── folder │ │ ├── folder_add.php │ │ └── folder_rename.php │ ├── invoice │ │ ├── invoice_add.php │ │ ├── invoice_add_ticket.php │ │ ├── invoice_bulk_edit_category.php │ │ ├── invoice_copy.php │ │ ├── invoice_edit.php │ │ ├── invoice_export.php │ │ ├── invoice_note.php │ │ ├── invoice_recurring_add.php │ │ └── item_edit.php │ ├── location │ │ ├── location_add.php │ │ ├── location_bulk_assign_tags.php │ │ ├── location_edit.php │ │ ├── location_export.php │ │ └── location_import.php │ ├── network │ │ ├── network_add.php │ │ ├── network_edit.php │ │ └── network_export.php │ ├── payment │ │ ├── invoice_apply_credit.php │ │ ├── payment_add.php │ │ ├── payment_bulk_add.php │ │ ├── payment_export.php │ │ └── payment_saved_method_add.php │ ├── product │ │ ├── product_add.php │ │ ├── product_bulk_edit_category.php │ │ ├── product_edit.php │ │ ├── product_export.php │ │ └── product_stock_add.php │ ├── project │ │ ├── project_add.php │ │ ├── project_edit.php │ │ ├── project_link_closed_ticket.php │ │ └── project_link_ticket.php │ ├── quote │ │ ├── quote_add.php │ │ ├── quote_copy.php │ │ ├── quote_edit.php │ │ ├── quote_export.php │ │ ├── quote_note.php │ │ └── quote_to_invoice.php │ ├── rack │ │ ├── rack_add.php │ │ ├── rack_device_add.php │ │ └── rack_edit.php │ ├── recurring_expense │ │ ├── recurring_expense_add.php │ │ └── recurring_expense_edit.php │ ├── recurring_invoice │ │ ├── recurring_invoice_add.php │ │ ├── recurring_invoice_edit.php │ │ ├── recurring_invoice_export.php │ │ └── recurring_invoice_note.php │ ├── recurring_ticket │ │ ├── recurring_ticket_add.php │ │ ├── recurring_ticket_bulk_agent_edit.php │ │ ├── recurring_ticket_bulk_billable_edit.php │ │ ├── recurring_ticket_bulk_category_edit.php │ │ ├── recurring_ticket_bulk_next_run_edit.php │ │ ├── recurring_ticket_bulk_priority_edit.php │ │ └── recurring_ticket_edit.php │ ├── revenue │ │ ├── revenue_add.php │ │ └── revenue_edit.php │ ├── service │ │ ├── service_add.php │ │ ├── service_details.php │ │ └── service_edit.php │ ├── share_modal.php │ ├── software │ │ ├── software_add.php │ │ ├── software_add_from_template.php │ │ ├── software_edit.php │ │ └── software_export.php │ ├── ticket │ │ ├── ticket_add.php │ │ ├── ticket_add_v2.php │ │ ├── ticket_add_watcher.php │ │ ├── ticket_assign.php │ │ ├── ticket_billable.php │ │ ├── ticket_bulk_add_project.php │ │ ├── ticket_bulk_assign.php │ │ ├── ticket_bulk_edit_category.php │ │ ├── ticket_bulk_edit_priority.php │ │ ├── ticket_bulk_merge.php │ │ ├── ticket_bulk_reply.php │ │ ├── ticket_bulk_resolve.php │ │ ├── ticket_change_client.php │ │ ├── ticket_contact.php │ │ ├── ticket_edit.php │ │ ├── ticket_edit_asset.php │ │ ├── ticket_edit_project.php │ │ ├── ticket_edit_schedule.php │ │ ├── ticket_edit_vendor.php │ │ ├── ticket_export.php │ │ ├── ticket_invoice_add.php │ │ ├── ticket_merge.php │ │ ├── ticket_priority.php │ │ ├── ticket_reply_edit.php │ │ ├── ticket_reply_redact.php │ │ ├── ticket_summary.php │ │ └── ticket_task_edit.php │ ├── top_nav_tickets_modal.php │ ├── transfer │ │ ├── transfer_add.php │ │ └── transfer_edit.php │ ├── trip │ │ ├── trip_add.php │ │ ├── trip_copy.php │ │ ├── trip_edit.php │ │ └── trip_export.php │ └── vendor │ │ ├── vendor_add.php │ │ ├── vendor_add_from_template.php │ │ ├── vendor_contact_add.php │ │ ├── vendor_contact_edit.php │ │ ├── vendor_details.php │ │ ├── vendor_edit.php │ │ └── vendor_export.php ├── networks.php ├── notifications.php ├── payments.php ├── post.php ├── post │ ├── account.php │ ├── asset.php │ ├── asset_interface_model.php │ ├── asset_model.php │ ├── category.php │ ├── category_model.php │ ├── certificate.php │ ├── certificate_model.php │ ├── client.php │ ├── client_model.php │ ├── contact.php │ ├── contact_model.php │ ├── credential.php │ ├── credential_model.php │ ├── credit.php │ ├── document.php │ ├── document_model.php │ ├── domain.php │ ├── domain_model.php │ ├── event.php │ ├── event_model.php │ ├── expense.php │ ├── expense_model.php │ ├── file.php │ ├── folder.php │ ├── invoice.php │ ├── invoice_model.php │ ├── location.php │ ├── location_model.php │ ├── network.php │ ├── network_model.php │ ├── payment.php │ ├── product.php │ ├── product_model.php │ ├── project.php │ ├── quote.php │ ├── quote_model.php │ ├── rack.php │ ├── recurring_expense.php │ ├── recurring_invoice.php │ ├── recurring_ticket.php │ ├── revenue.php │ ├── service.php │ ├── software.php │ ├── tag.php │ ├── tag_model.php │ ├── task.php │ ├── ticket.php │ ├── ticket_recurring_model.php │ ├── transfer.php │ ├── transfer_model.php │ ├── trip.php │ ├── trip_model.php │ ├── vendor.php │ ├── vendor_contact.php │ ├── vendor_contact_model.php │ └── vendor_model.php ├── products.php ├── project_details.php ├── projects.php ├── quote.php ├── quotes.php ├── racks.php ├── recurring_expenses.php ├── recurring_invoice.php ├── recurring_invoices.php ├── recurring_tickets.php ├── reports │ ├── budget.php │ ├── clients_with_balance.php │ ├── credential_rotation.php │ ├── expense_by_vendor.php │ ├── expense_summary.php │ ├── includes │ │ ├── inc_all_reports.php │ │ └── reports_side_nav.php │ ├── income_by_client.php │ ├── income_summary.php │ ├── index.php │ ├── profit_loss.php │ ├── recurring_by_client.php │ ├── tax_summary.php │ ├── ticket_by_client.php │ ├── ticket_summary.php │ ├── tickets_unbilled.php │ └── time_by_tech.php ├── revenues.php ├── services.php ├── software.php ├── ticket.php ├── ticket_kanban.php ├── ticket_list.php ├── tickets.php ├── transfers.php ├── trips.php ├── user │ ├── includes │ │ ├── inc_all_user.php │ │ └── user_side_nav.php │ ├── mfa_enforcement.php │ ├── modals │ │ └── user_mfa_modal.php │ ├── post.php │ ├── post │ │ └── profile.php │ ├── user_activity.php │ ├── user_details.php │ ├── user_preferences.php │ └── user_security.php ├── vendor_details.php └── vendors.php ├── api └── v1 │ ├── assets │ ├── asset_model.php │ ├── create.php │ ├── delete.php │ ├── read.php │ └── update.php │ ├── certificates │ ├── certificate_model.php │ ├── create.php │ └── read.php │ ├── clients │ ├── archive.php │ ├── client_model.php │ ├── create.php │ ├── read.php │ ├── unarchive.php │ └── update.php │ ├── contacts │ ├── archive.php │ ├── contact_model.php │ ├── create.php │ ├── delete.php │ ├── read.php │ ├── unarchive.php │ └── update.php │ ├── create_output.php │ ├── credentials │ ├── create.php │ ├── credential_model.php │ ├── read.php │ └── update.php │ ├── custom │ └── readme.php │ ├── delete_output.php │ ├── documents │ ├── create.php │ ├── document_model.php │ ├── read.php │ └── update.php │ ├── domains │ └── read.php │ ├── expenses │ └── read.php │ ├── invoices │ └── read.php │ ├── locations │ ├── create.php │ ├── location_model.php │ └── read.php │ ├── networks │ └── read.php │ ├── payments │ └── read.php │ ├── products │ └── read.php │ ├── quotes │ └── read.php │ ├── read_output.php │ ├── require_get_method.php │ ├── require_post_method.php │ ├── software │ └── read.php │ ├── tickets │ ├── create.php │ ├── read.php │ ├── resolve.php │ └── ticket_model.php │ ├── update_output.php │ ├── validate_api_key.php │ └── vendors │ └── read.php ├── client ├── assets.php ├── certificates.php ├── contact_add.php ├── contact_edit.php ├── contacts.php ├── custom │ └── readme.php ├── document.php ├── documents.php ├── domains.php ├── functions.php ├── includes │ ├── check_login.php │ ├── footer.php │ ├── header.php │ └── inc_all.php ├── index.php ├── invoices.php ├── login.php ├── login_microsoft.php ├── login_reset.php ├── post.php ├── profile.php ├── quotes.php ├── recurring_invoices.php ├── saved_payment_methods.php ├── ticket.php ├── ticket_add.php ├── ticket_view_all.php ├── tickets.php └── unpaid_invoices.php ├── cron ├── .htaccess ├── certificate_refresher.php ├── cron.php ├── custom │ └── readme.php ├── domain_refresher.php ├── mail_queue.php └── ticket_email_parser.php ├── css └── itflow_custom.css ├── db.sql ├── favicon.ico ├── functions.php ├── guest ├── custom │ └── readme.php ├── guest_ajax.php ├── guest_download_file.php ├── guest_pay_invoice_stripe.php ├── guest_post.php ├── guest_quote_upload_file_modal.php ├── guest_view_invoice.php ├── guest_view_item.php ├── guest_view_quote.php ├── guest_view_ticket.php ├── includes │ ├── guest_header.php │ ├── inc_all_guest.php │ └── inc_wrapper.php └── index.php ├── includes ├── app_version.php ├── auth_check.php ├── check_login.php ├── database_version.php ├── db.php ├── detect_device_type.php ├── filter_footer.php ├── filter_header.php ├── footer.php ├── header.php ├── inc_alert_feedback.php ├── inc_confirm_modal.php ├── inc_set_timezone.php ├── inc_wrapper.php ├── load_company_settings.php ├── load_global_settings.php ├── load_user_session.php ├── modal_footer.php ├── modal_header.php ├── page_title.php ├── redirect_if_setup_enabled.php ├── session_init.php ├── settings_localization_array.php └── top_nav.php ├── index.php ├── js ├── ajax_modal.js ├── app.js ├── autopay_setup_stripe.js ├── bulk_actions.js ├── confirm_modal.js ├── credential_show_otp_via_id.js ├── date_filter.js ├── guest_pay_invoice_stripe.js ├── keepalive.js ├── login_prevent_resubmit.js ├── pretty_content.js └── show_modals.js ├── keepalive.php ├── login.php ├── modals └── notifications.php ├── plugins ├── .npmignore ├── DataTables │ ├── datatables.min.css │ └── datatables.min.js ├── PHPMailer │ ├── COMMITMENT │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── SMTPUTF8.md │ ├── VERSION │ ├── composer.json │ ├── get_oauth_token.php │ ├── language │ │ ├── phpmailer.lang-af.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-as.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-bn.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-hy.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-ku.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-mn.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-si.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sr_latn.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-ur.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ └── src │ │ ├── DSNConfigurator.php │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── OAuthTokenProvider.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php ├── Show-Hide-Passwords-Bootstrap-4 │ └── bootstrap-show-password.min.js ├── SortableJS │ └── Sortable.min.js ├── TCPDF │ ├── CHANGELOG.TXT │ ├── LICENSE.TXT │ ├── README.md │ ├── VERSION │ ├── composer.json │ ├── config │ │ └── tcpdf_config.php │ ├── fonts │ │ ├── ae_fonts_2.0 │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ └── README │ │ ├── aealarabiya.ctg.z │ │ ├── aealarabiya.php │ │ ├── aealarabiya.z │ │ ├── aefurat.ctg.z │ │ ├── aefurat.php │ │ ├── aefurat.z │ │ ├── cid0cs.php │ │ ├── cid0ct.php │ │ ├── cid0jp.php │ │ ├── cid0kr.php │ │ ├── courier.php │ │ ├── courierb.php │ │ ├── courierbi.php │ │ ├── courieri.php │ │ ├── dejavu-fonts-ttf-2.33 │ │ │ ├── AUTHORS │ │ │ ├── BUGS │ │ │ ├── LICENSE │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── langcover.txt │ │ │ └── unicover.txt │ │ ├── dejavu-fonts-ttf-2.34 │ │ │ ├── AUTHORS │ │ │ ├── BUGS │ │ │ ├── LICENSE │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── langcover.txt │ │ │ └── unicover.txt │ │ ├── dejavusans.ctg.z │ │ ├── dejavusans.php │ │ ├── dejavusans.z │ │ ├── dejavusansb.ctg.z │ │ ├── dejavusansb.php │ │ ├── dejavusansb.z │ │ ├── dejavusansbi.ctg.z │ │ ├── dejavusansbi.php │ │ ├── dejavusansbi.z │ │ ├── dejavusanscondensed.ctg.z │ │ ├── dejavusanscondensed.php │ │ ├── dejavusanscondensed.z │ │ ├── dejavusanscondensedb.ctg.z │ │ ├── dejavusanscondensedb.php │ │ ├── dejavusanscondensedb.z │ │ ├── dejavusanscondensedbi.ctg.z │ │ ├── dejavusanscondensedbi.php │ │ ├── dejavusanscondensedbi.z │ │ ├── dejavusanscondensedi.ctg.z │ │ ├── dejavusanscondensedi.php │ │ ├── dejavusanscondensedi.z │ │ ├── dejavusansextralight.ctg.z │ │ ├── dejavusansextralight.php │ │ ├── dejavusansextralight.z │ │ ├── dejavusansi.ctg.z │ │ ├── dejavusansi.php │ │ ├── dejavusansi.z │ │ ├── dejavusansmono.ctg.z │ │ ├── dejavusansmono.php │ │ ├── dejavusansmono.z │ │ ├── dejavusansmonob.ctg.z │ │ ├── dejavusansmonob.php │ │ ├── dejavusansmonob.z │ │ ├── dejavusansmonobi.ctg.z │ │ ├── dejavusansmonobi.php │ │ ├── dejavusansmonobi.z │ │ ├── dejavusansmonoi.ctg.z │ │ ├── dejavusansmonoi.php │ │ ├── dejavusansmonoi.z │ │ ├── dejavuserif.ctg.z │ │ ├── dejavuserif.php │ │ ├── dejavuserif.z │ │ ├── dejavuserifb.ctg.z │ │ ├── dejavuserifb.php │ │ ├── dejavuserifb.z │ │ ├── dejavuserifbi.ctg.z │ │ ├── dejavuserifbi.php │ │ ├── dejavuserifbi.z │ │ ├── dejavuserifcondensed.ctg.z │ │ ├── dejavuserifcondensed.php │ │ ├── dejavuserifcondensed.z │ │ ├── dejavuserifcondensedb.ctg.z │ │ ├── dejavuserifcondensedb.php │ │ ├── dejavuserifcondensedb.z │ │ ├── dejavuserifcondensedbi.ctg.z │ │ ├── dejavuserifcondensedbi.php │ │ ├── dejavuserifcondensedbi.z │ │ ├── dejavuserifcondensedi.ctg.z │ │ ├── dejavuserifcondensedi.php │ │ ├── dejavuserifcondensedi.z │ │ ├── dejavuserifi.ctg.z │ │ ├── dejavuserifi.php │ │ ├── dejavuserifi.z │ │ ├── freefont-20100919 │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── CREDITS │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ └── README │ │ ├── freefont-20120503 │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── CREDITS │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── README │ │ │ ├── TROUBLESHOOTING │ │ │ └── USAGE │ │ ├── freemono.ctg.z │ │ ├── freemono.php │ │ ├── freemono.z │ │ ├── freemonob.ctg.z │ │ ├── freemonob.php │ │ ├── freemonob.z │ │ ├── freemonobi.ctg.z │ │ ├── freemonobi.php │ │ ├── freemonobi.z │ │ ├── freemonoi.ctg.z │ │ ├── freemonoi.php │ │ ├── freemonoi.z │ │ ├── freesans.ctg.z │ │ ├── freesans.php │ │ ├── freesans.z │ │ ├── freesansb.ctg.z │ │ ├── freesansb.php │ │ ├── freesansb.z │ │ ├── freesansbi.ctg.z │ │ ├── freesansbi.php │ │ ├── freesansbi.z │ │ ├── freesansi.ctg.z │ │ ├── freesansi.php │ │ ├── freesansi.z │ │ ├── freeserif.ctg.z │ │ ├── freeserif.php │ │ ├── freeserif.z │ │ ├── freeserifb.ctg.z │ │ ├── freeserifb.php │ │ ├── freeserifb.z │ │ ├── freeserifbi.ctg.z │ │ ├── freeserifbi.php │ │ ├── freeserifbi.z │ │ ├── freeserifi.ctg.z │ │ ├── freeserifi.php │ │ ├── freeserifi.z │ │ ├── helvetica.php │ │ ├── helveticab.php │ │ ├── helveticabi.php │ │ ├── helveticai.php │ │ ├── hysmyeongjostdmedium.php │ │ ├── kozgopromedium.php │ │ ├── kozminproregular.php │ │ ├── msungstdlight.php │ │ ├── pdfacourier.php │ │ ├── pdfacourier.z │ │ ├── pdfacourierb.php │ │ ├── pdfacourierb.z │ │ ├── pdfacourierbi.php │ │ ├── pdfacourierbi.z │ │ ├── pdfacourieri.php │ │ ├── pdfacourieri.z │ │ ├── pdfahelvetica.php │ │ ├── pdfahelvetica.z │ │ ├── pdfahelveticab.php │ │ ├── pdfahelveticab.z │ │ ├── pdfahelveticabi.php │ │ ├── pdfahelveticabi.z │ │ ├── pdfahelveticai.php │ │ ├── pdfahelveticai.z │ │ ├── pdfasymbol.php │ │ ├── pdfasymbol.z │ │ ├── pdfatimes.php │ │ ├── pdfatimes.z │ │ ├── pdfatimesb.php │ │ ├── pdfatimesb.z │ │ ├── pdfatimesbi.php │ │ ├── pdfatimesbi.z │ │ ├── pdfatimesi.php │ │ ├── pdfatimesi.z │ │ ├── pdfazapfdingbats.php │ │ ├── pdfazapfdingbats.z │ │ ├── stsongstdlight.php │ │ ├── symbol.php │ │ ├── times.php │ │ ├── timesb.php │ │ ├── timesbi.php │ │ ├── timesi.php │ │ ├── uni2cid_ac15.php │ │ ├── uni2cid_ag15.php │ │ ├── uni2cid_aj16.php │ │ ├── uni2cid_ak12.php │ │ └── zapfdingbats.php │ ├── include │ │ ├── barcodes │ │ │ ├── datamatrix.php │ │ │ ├── pdf417.php │ │ │ └── qrcode.php │ │ ├── sRGB.icc │ │ ├── tcpdf_colors.php │ │ ├── tcpdf_filters.php │ │ ├── tcpdf_font_data.php │ │ ├── tcpdf_fonts.php │ │ ├── tcpdf_images.php │ │ └── tcpdf_static.php │ ├── tcpdf.php │ ├── tcpdf_autoconfig.php │ ├── tcpdf_barcodes_1d.php │ ├── tcpdf_barcodes_2d.php │ └── tools │ │ ├── .htaccess │ │ ├── convert_fonts_examples.txt │ │ └── tcpdf_addfont.php ├── adminlte │ ├── css │ │ └── adminlte.min.css │ └── js │ │ ├── .eslintrc.json │ │ └── adminlte.min.js ├── barcode │ └── barcode.php ├── bootstrap │ └── js │ │ └── bootstrap.bundle.min.js ├── chart.js │ └── chart.umd.min.js ├── clipboardjs │ └── clipboard.min.js ├── composer.json ├── composer.lock ├── daterangepicker │ ├── daterangepicker.css │ └── daterangepicker.js ├── dropzone │ └── min │ │ ├── basic.css │ │ ├── basic.min.css │ │ ├── dropzone-amd-module.min.js │ │ ├── dropzone.css │ │ ├── dropzone.min.css │ │ └── dropzone.min.js ├── fontawesome-free │ ├── css │ │ └── all.min.css │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── fullcalendar │ ├── LICENSE.md │ ├── README.md │ ├── dist │ │ ├── index.global.js │ │ └── index.global.min.js │ └── packages │ │ ├── bootstrap4 │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── bootstrap5 │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── core │ │ ├── index.global.js │ │ ├── index.global.min.js │ │ ├── locales-all.global.js │ │ ├── locales-all.global.min.js │ │ └── locales │ │ │ ├── af.global.js │ │ │ ├── af.global.min.js │ │ │ ├── ar-dz.global.js │ │ │ ├── ar-dz.global.min.js │ │ │ ├── ar-kw.global.js │ │ │ ├── ar-kw.global.min.js │ │ │ ├── ar-ly.global.js │ │ │ ├── ar-ly.global.min.js │ │ │ ├── ar-ma.global.js │ │ │ ├── ar-ma.global.min.js │ │ │ ├── ar-sa.global.js │ │ │ ├── ar-sa.global.min.js │ │ │ ├── ar-tn.global.js │ │ │ ├── ar-tn.global.min.js │ │ │ ├── ar.global.js │ │ │ ├── ar.global.min.js │ │ │ ├── az.global.js │ │ │ ├── az.global.min.js │ │ │ ├── bg.global.js │ │ │ ├── bg.global.min.js │ │ │ ├── bn.global.js │ │ │ ├── bn.global.min.js │ │ │ ├── bs.global.js │ │ │ ├── bs.global.min.js │ │ │ ├── ca.global.js │ │ │ ├── ca.global.min.js │ │ │ ├── cs.global.js │ │ │ ├── cs.global.min.js │ │ │ ├── cy.global.js │ │ │ ├── cy.global.min.js │ │ │ ├── da.global.js │ │ │ ├── da.global.min.js │ │ │ ├── de-at.global.js │ │ │ ├── de-at.global.min.js │ │ │ ├── de.global.js │ │ │ ├── de.global.min.js │ │ │ ├── el.global.js │ │ │ ├── el.global.min.js │ │ │ ├── en-au.global.js │ │ │ ├── en-au.global.min.js │ │ │ ├── en-gb.global.js │ │ │ ├── en-gb.global.min.js │ │ │ ├── en-nz.global.js │ │ │ ├── en-nz.global.min.js │ │ │ ├── eo.global.js │ │ │ ├── eo.global.min.js │ │ │ ├── es-us.global.js │ │ │ ├── es-us.global.min.js │ │ │ ├── es.global.js │ │ │ ├── es.global.min.js │ │ │ ├── et.global.js │ │ │ ├── et.global.min.js │ │ │ ├── eu.global.js │ │ │ ├── eu.global.min.js │ │ │ ├── fa.global.js │ │ │ ├── fa.global.min.js │ │ │ ├── fi.global.js │ │ │ ├── fi.global.min.js │ │ │ ├── fr-ca.global.js │ │ │ ├── fr-ca.global.min.js │ │ │ ├── fr-ch.global.js │ │ │ ├── fr-ch.global.min.js │ │ │ ├── fr.global.js │ │ │ ├── fr.global.min.js │ │ │ ├── gl.global.js │ │ │ ├── gl.global.min.js │ │ │ ├── he.global.js │ │ │ ├── he.global.min.js │ │ │ ├── hi.global.js │ │ │ ├── hi.global.min.js │ │ │ ├── hr.global.js │ │ │ ├── hr.global.min.js │ │ │ ├── hu.global.js │ │ │ ├── hu.global.min.js │ │ │ ├── hy-am.global.js │ │ │ ├── hy-am.global.min.js │ │ │ ├── id.global.js │ │ │ ├── id.global.min.js │ │ │ ├── is.global.js │ │ │ ├── is.global.min.js │ │ │ ├── it.global.js │ │ │ ├── it.global.min.js │ │ │ ├── ja.global.js │ │ │ ├── ja.global.min.js │ │ │ ├── ka.global.js │ │ │ ├── ka.global.min.js │ │ │ ├── kk.global.js │ │ │ ├── kk.global.min.js │ │ │ ├── km.global.js │ │ │ ├── km.global.min.js │ │ │ ├── ko.global.js │ │ │ ├── ko.global.min.js │ │ │ ├── ku.global.js │ │ │ ├── ku.global.min.js │ │ │ ├── lb.global.js │ │ │ ├── lb.global.min.js │ │ │ ├── lt.global.js │ │ │ ├── lt.global.min.js │ │ │ ├── lv.global.js │ │ │ ├── lv.global.min.js │ │ │ ├── mk.global.js │ │ │ ├── mk.global.min.js │ │ │ ├── ms.global.js │ │ │ ├── ms.global.min.js │ │ │ ├── nb.global.js │ │ │ ├── nb.global.min.js │ │ │ ├── ne.global.js │ │ │ ├── ne.global.min.js │ │ │ ├── nl.global.js │ │ │ ├── nl.global.min.js │ │ │ ├── nn.global.js │ │ │ ├── nn.global.min.js │ │ │ ├── pl.global.js │ │ │ ├── pl.global.min.js │ │ │ ├── pt-br.global.js │ │ │ ├── pt-br.global.min.js │ │ │ ├── pt.global.js │ │ │ ├── pt.global.min.js │ │ │ ├── ro.global.js │ │ │ ├── ro.global.min.js │ │ │ ├── ru.global.js │ │ │ ├── ru.global.min.js │ │ │ ├── si-lk.global.js │ │ │ ├── si-lk.global.min.js │ │ │ ├── sk.global.js │ │ │ ├── sk.global.min.js │ │ │ ├── sl.global.js │ │ │ ├── sl.global.min.js │ │ │ ├── sm.global.js │ │ │ ├── sm.global.min.js │ │ │ ├── sq.global.js │ │ │ ├── sq.global.min.js │ │ │ ├── sr-cyrl.global.js │ │ │ ├── sr-cyrl.global.min.js │ │ │ ├── sr.global.js │ │ │ ├── sr.global.min.js │ │ │ ├── sv.global.js │ │ │ ├── sv.global.min.js │ │ │ ├── ta-in.global.js │ │ │ ├── ta-in.global.min.js │ │ │ ├── th.global.js │ │ │ ├── th.global.min.js │ │ │ ├── tr.global.js │ │ │ ├── tr.global.min.js │ │ │ ├── ug.global.js │ │ │ ├── ug.global.min.js │ │ │ ├── uk.global.js │ │ │ ├── uk.global.min.js │ │ │ ├── uz-cy.global.js │ │ │ ├── uz-cy.global.min.js │ │ │ ├── uz.global.js │ │ │ ├── uz.global.min.js │ │ │ ├── vi.global.js │ │ │ ├── vi.global.min.js │ │ │ ├── zh-cn.global.js │ │ │ ├── zh-cn.global.min.js │ │ │ ├── zh-tw.global.js │ │ │ └── zh-tw.global.min.js │ │ ├── daygrid │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── google-calendar │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── icalendar │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── interaction │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── list │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── luxon1 │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── luxon2 │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── luxon3 │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── moment-timezone │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── moment │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── multimonth │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── rrule │ │ ├── index.global.js │ │ └── index.global.min.js │ │ ├── timegrid │ │ ├── index.global.js │ │ └── index.global.min.js │ │ └── web-component │ │ ├── index.global.js │ │ └── index.global.min.js ├── htmlpurifier │ ├── HTMLPurifier.standalone.php │ └── standalone │ │ └── HTMLPurifier │ │ ├── ConfigSchema │ │ ├── Builder │ │ │ ├── ConfigSchema.php │ │ │ └── Xml.php │ │ ├── Exception.php │ │ ├── Interchange.php │ │ ├── Interchange │ │ │ ├── Directive.php │ │ │ └── Id.php │ │ ├── InterchangeBuilder.php │ │ ├── Validator.php │ │ ├── ValidatorAtom.php │ │ ├── schema.ser │ │ └── schema │ │ │ ├── Attr.AllowedClasses.txt │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ ├── Attr.AllowedRel.txt │ │ │ ├── Attr.AllowedRev.txt │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ ├── Attr.EnableID.txt │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ ├── Attr.ID.HTML5.txt │ │ │ ├── Attr.IDBlacklist.txt │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ ├── Attr.IDPrefix.txt │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ ├── AutoFormat.Custom.txt │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ ├── AutoFormat.Linkify.txt │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ ├── CSS.AllowDuplicates.txt │ │ │ ├── CSS.AllowImportant.txt │ │ │ ├── CSS.AllowTricky.txt │ │ │ ├── CSS.AllowedFonts.txt │ │ │ ├── CSS.AllowedProperties.txt │ │ │ ├── CSS.DefinitionRev.txt │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ ├── CSS.MaxImgLength.txt │ │ │ ├── CSS.Proprietary.txt │ │ │ ├── CSS.Trusted.txt │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ ├── Cache.SerializerPath.txt │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ ├── Core.AggressivelyRemoveScript.txt │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ ├── Core.AllowParseManyTags.txt │ │ │ ├── Core.CollectErrors.txt │ │ │ ├── Core.ColorKeywords.txt │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ ├── Core.DisableExcludes.txt │ │ │ ├── Core.EnableIDNA.txt │ │ │ ├── Core.Encoding.txt │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ ├── Core.HiddenElements.txt │ │ │ ├── Core.Language.txt │ │ │ ├── Core.LegacyEntityDecoder.txt │ │ │ ├── Core.LexerImpl.txt │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ ├── Filter.Custom.txt │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ ├── Filter.YouTube.txt │ │ │ ├── HTML.Allowed.txt │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ ├── HTML.AllowedComments.txt │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ ├── HTML.AllowedElements.txt │ │ │ ├── HTML.AllowedModules.txt │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ ├── HTML.BlockWrapper.txt │ │ │ ├── HTML.CoreModules.txt │ │ │ ├── HTML.CustomDoctype.txt │ │ │ ├── HTML.DefinitionID.txt │ │ │ ├── HTML.DefinitionRev.txt │ │ │ ├── HTML.Doctype.txt │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ ├── HTML.Forms.txt │ │ │ ├── HTML.MaxImgLength.txt │ │ │ ├── HTML.Nofollow.txt │ │ │ ├── HTML.Parent.txt │ │ │ ├── HTML.Proprietary.txt │ │ │ ├── HTML.SafeEmbed.txt │ │ │ ├── HTML.SafeIframe.txt │ │ │ ├── HTML.SafeObject.txt │ │ │ ├── HTML.SafeScripting.txt │ │ │ ├── HTML.Strict.txt │ │ │ ├── HTML.TargetBlank.txt │ │ │ ├── HTML.TargetNoopener.txt │ │ │ ├── HTML.TargetNoreferrer.txt │ │ │ ├── HTML.TidyAdd.txt │ │ │ ├── HTML.TidyLevel.txt │ │ │ ├── HTML.TidyRemove.txt │ │ │ ├── HTML.Trusted.txt │ │ │ ├── HTML.XHTML.txt │ │ │ ├── Output.CommentScriptContents.txt │ │ │ ├── Output.FixInnerHTML.txt │ │ │ ├── Output.FlashCompat.txt │ │ │ ├── Output.Newline.txt │ │ │ ├── Output.SortAttr.txt │ │ │ ├── Output.TidyFormat.txt │ │ │ ├── Test.ForceNoIconv.txt │ │ │ ├── URI.AllowedSchemes.txt │ │ │ ├── URI.Base.txt │ │ │ ├── URI.DefaultScheme.txt │ │ │ ├── URI.DefinitionID.txt │ │ │ ├── URI.DefinitionRev.txt │ │ │ ├── URI.Disable.txt │ │ │ ├── URI.DisableExternal.txt │ │ │ ├── URI.DisableExternalResources.txt │ │ │ ├── URI.DisableResources.txt │ │ │ ├── URI.Host.txt │ │ │ ├── URI.HostBlacklist.txt │ │ │ ├── URI.MakeAbsolute.txt │ │ │ ├── URI.Munge.txt │ │ │ ├── URI.MungeResources.txt │ │ │ ├── URI.MungeSecretKey.txt │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ ├── URI.SafeIframeRegexp.txt │ │ │ └── info.ini │ │ ├── DefinitionCache │ │ └── Serializer │ │ │ ├── CSS │ │ │ └── .gitkeep │ │ │ ├── HTML │ │ │ └── .gitkeep │ │ │ └── URI │ │ │ └── .gitkeep │ │ ├── EntityLookup │ │ └── entities.ser │ │ ├── Filter │ │ ├── ExtractStyleBlocks.php │ │ └── YouTube.php │ │ ├── Language │ │ └── messages │ │ │ └── en.php │ │ ├── Lexer │ │ └── PH5P.php │ │ ├── Printer.php │ │ └── Printer │ │ ├── CSSDefinition.php │ │ ├── ConfigForm.css │ │ ├── ConfigForm.js │ │ ├── ConfigForm.php │ │ └── HTMLDefinition.php ├── inputmask │ ├── inputmask.min.js │ └── jquery.inputmask.min.js ├── intl-tel-input │ ├── css │ │ ├── demo.css │ │ ├── intlTelInput.css │ │ └── intlTelInput.min.css │ ├── img │ │ ├── flags.png │ │ ├── flags.webp │ │ ├── flags@2x.png │ │ ├── flags@2x.webp │ │ ├── globe.png │ │ ├── globe.webp │ │ ├── globe@2x.png │ │ ├── globe@2x.webp │ │ ├── globe_light.png │ │ ├── globe_light.webp │ │ ├── globe_light@2x.png │ │ └── globe_light@2x.webp │ └── js │ │ ├── data.js │ │ ├── data.min.js │ │ ├── i18n │ │ ├── ar │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── bg │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── bn │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── bs │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── ca │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── cs │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── da │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── de │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── el │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── en │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── es │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── fa │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── fi │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── fr │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── hi │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── hr │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── hu │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── id │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── index.js │ │ ├── it │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── ja │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── ko │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── mr │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── nl │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── no │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── pl │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── pt │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── ro │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── ru │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── sk │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── sv │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── te │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── th │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── tr │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── uk │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── ur │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── vi │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ └── zh │ │ │ ├── countries.js │ │ │ ├── index.js │ │ │ └── interface.js │ │ ├── intlTelInput.d.ts │ │ ├── intlTelInput.js │ │ ├── intlTelInput.min.js │ │ ├── intlTelInputWithUtils.js │ │ ├── intlTelInputWithUtils.min.js │ │ └── utils.js ├── jquery-ui │ ├── VERSION │ ├── jquery-ui.min.css │ └── jquery-ui.min.js ├── jquery │ └── jquery.min.js ├── moment │ └── moment.min.js ├── pdfmake │ ├── fonts │ │ └── Roboto │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ └── Roboto-Regular.ttf │ ├── pdfmake.min.js │ └── vfs_fonts.js ├── php-mime-mail-parser │ ├── Attachment.php │ ├── Charset.php │ ├── Contracts │ │ ├── CharsetManager.php │ │ └── Middleware.php │ ├── Exception.php │ ├── Middleware.php │ ├── MiddlewareStack.php │ ├── MimePart.php │ └── Parser.php ├── popper │ ├── popper-utils.min.js │ └── popper.min.js ├── select2-bootstrap4-theme │ └── select2-bootstrap4.min.css ├── select2 │ ├── css │ │ └── select2.min.css │ └── js │ │ ├── i18n │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── build.txt │ │ ├── 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 │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── ne.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── ps.js │ │ ├── pt-BR.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-Cyrl.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tk.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-CN.js │ │ └── zh-TW.js │ │ ├── select2.full.min.js │ │ └── select2.min.js ├── stripe-php │ ├── .gitignore │ ├── API_VERSION │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OPENAPI_VERSION │ ├── README.md │ ├── VERSION │ ├── composer.json │ ├── data │ │ └── ca-certificates.crt │ ├── init.php │ ├── justfile │ └── lib │ │ ├── Account.php │ │ ├── AccountLink.php │ │ ├── AccountSession.php │ │ ├── ApiOperations │ │ ├── All.php │ │ ├── Create.php │ │ ├── Delete.php │ │ ├── NestedResource.php │ │ ├── Request.php │ │ ├── Retrieve.php │ │ ├── SingletonRetrieve.php │ │ └── Update.php │ │ ├── ApiRequestor.php │ │ ├── ApiResource.php │ │ ├── ApiResponse.php │ │ ├── ApplePayDomain.php │ │ ├── Application.php │ │ ├── ApplicationFee.php │ │ ├── ApplicationFeeRefund.php │ │ ├── Apps │ │ └── Secret.php │ │ ├── Balance.php │ │ ├── BalanceSettings.php │ │ ├── BalanceTransaction.php │ │ ├── BankAccount.php │ │ ├── BaseStripeClient.php │ │ ├── BaseStripeClientInterface.php │ │ ├── Billing │ │ ├── Alert.php │ │ ├── AlertTriggered.php │ │ ├── CreditBalanceSummary.php │ │ ├── CreditBalanceTransaction.php │ │ ├── CreditGrant.php │ │ ├── Meter.php │ │ ├── MeterEvent.php │ │ ├── MeterEventAdjustment.php │ │ └── MeterEventSummary.php │ │ ├── BillingPortal │ │ ├── Configuration.php │ │ └── Session.php │ │ ├── Capability.php │ │ ├── Card.php │ │ ├── CashBalance.php │ │ ├── Charge.php │ │ ├── Checkout │ │ └── Session.php │ │ ├── Climate │ │ ├── Order.php │ │ ├── Product.php │ │ └── Supplier.php │ │ ├── Collection.php │ │ ├── ConfirmationToken.php │ │ ├── ConnectCollectionTransfer.php │ │ ├── CountrySpec.php │ │ ├── Coupon.php │ │ ├── CreditNote.php │ │ ├── CreditNoteLineItem.php │ │ ├── Customer.php │ │ ├── CustomerBalanceTransaction.php │ │ ├── CustomerCashBalanceTransaction.php │ │ ├── CustomerSession.php │ │ ├── Discount.php │ │ ├── Dispute.php │ │ ├── Entitlements │ │ ├── ActiveEntitlement.php │ │ ├── ActiveEntitlementSummary.php │ │ └── Feature.php │ │ ├── EphemeralKey.php │ │ ├── ErrorObject.php │ │ ├── Event.php │ │ ├── EventData │ │ ├── V1BillingMeterErrorReportTriggeredEventData.php │ │ └── V1BillingMeterNoMeterFoundEventData.php │ │ ├── Events │ │ ├── UnknownEventNotification.php │ │ ├── V1BillingMeterErrorReportTriggeredEvent.php │ │ ├── V1BillingMeterErrorReportTriggeredEventNotification.php │ │ ├── V1BillingMeterNoMeterFoundEvent.php │ │ ├── V1BillingMeterNoMeterFoundEventNotification.php │ │ ├── V2CoreEventDestinationPingEvent.php │ │ └── V2CoreEventDestinationPingEventNotification.php │ │ ├── Exception │ │ ├── ApiConnectionException.php │ │ ├── ApiErrorException.php │ │ ├── AuthenticationException.php │ │ ├── BadMethodCallException.php │ │ ├── CardException.php │ │ ├── ExceptionInterface.php │ │ ├── IdempotencyException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidRequestException.php │ │ ├── OAuth │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidClientException.php │ │ │ ├── InvalidGrantException.php │ │ │ ├── InvalidRequestException.php │ │ │ ├── InvalidScopeException.php │ │ │ ├── OAuthErrorException.php │ │ │ ├── UnknownOAuthErrorException.php │ │ │ ├── UnsupportedGrantTypeException.php │ │ │ └── UnsupportedResponseTypeException.php │ │ ├── PermissionException.php │ │ ├── RateLimitException.php │ │ ├── SignatureVerificationException.php │ │ ├── TemporarySessionExpiredException.php │ │ ├── UnexpectedValueException.php │ │ └── UnknownApiErrorException.php │ │ ├── ExchangeRate.php │ │ ├── File.php │ │ ├── FileLink.php │ │ ├── FinancialConnections │ │ ├── Account.php │ │ ├── AccountOwner.php │ │ ├── AccountOwnership.php │ │ ├── Session.php │ │ └── Transaction.php │ │ ├── Forwarding │ │ └── Request.php │ │ ├── FundingInstructions.php │ │ ├── HttpClient │ │ ├── ClientInterface.php │ │ ├── CurlClient.php │ │ └── StreamingClientInterface.php │ │ ├── Identity │ │ ├── VerificationReport.php │ │ └── VerificationSession.php │ │ ├── Invoice.php │ │ ├── InvoiceItem.php │ │ ├── InvoiceLineItem.php │ │ ├── InvoicePayment.php │ │ ├── InvoiceRenderingTemplate.php │ │ ├── Issuing │ │ ├── Authorization.php │ │ ├── Card.php │ │ ├── CardDetails.php │ │ ├── Cardholder.php │ │ ├── Dispute.php │ │ ├── PersonalizationDesign.php │ │ ├── PhysicalBundle.php │ │ ├── Token.php │ │ └── Transaction.php │ │ ├── LineItem.php │ │ ├── LoginLink.php │ │ ├── Mandate.php │ │ ├── OAuth.php │ │ ├── OAuthErrorObject.php │ │ ├── PaymentAttemptRecord.php │ │ ├── PaymentIntent.php │ │ ├── PaymentIntentAmountDetailsLineItem.php │ │ ├── PaymentLink.php │ │ ├── PaymentMethod.php │ │ ├── PaymentMethodConfiguration.php │ │ ├── PaymentMethodDomain.php │ │ ├── PaymentRecord.php │ │ ├── Payout.php │ │ ├── Person.php │ │ ├── Plan.php │ │ ├── Price.php │ │ ├── Product.php │ │ ├── ProductFeature.php │ │ ├── PromotionCode.php │ │ ├── Quote.php │ │ ├── Radar │ │ ├── EarlyFraudWarning.php │ │ ├── ValueList.php │ │ └── ValueListItem.php │ │ ├── Reason.php │ │ ├── RecipientTransfer.php │ │ ├── Refund.php │ │ ├── RelatedObject.php │ │ ├── Reporting │ │ ├── ReportRun.php │ │ └── ReportType.php │ │ ├── RequestTelemetry.php │ │ ├── ReserveTransaction.php │ │ ├── Review.php │ │ ├── SearchResult.php │ │ ├── Service │ │ ├── AbstractService.php │ │ ├── AbstractServiceFactory.php │ │ ├── AccountLinkService.php │ │ ├── AccountService.php │ │ ├── AccountSessionService.php │ │ ├── ApplePayDomainService.php │ │ ├── ApplicationFeeService.php │ │ ├── Apps │ │ │ ├── AppsServiceFactory.php │ │ │ └── SecretService.php │ │ ├── BalanceService.php │ │ ├── BalanceSettingsService.php │ │ ├── BalanceTransactionService.php │ │ ├── Billing │ │ │ ├── AlertService.php │ │ │ ├── BillingServiceFactory.php │ │ │ ├── CreditBalanceSummaryService.php │ │ │ ├── CreditBalanceTransactionService.php │ │ │ ├── CreditGrantService.php │ │ │ ├── MeterEventAdjustmentService.php │ │ │ ├── MeterEventService.php │ │ │ └── MeterService.php │ │ ├── BillingPortal │ │ │ ├── BillingPortalServiceFactory.php │ │ │ ├── ConfigurationService.php │ │ │ └── SessionService.php │ │ ├── ChargeService.php │ │ ├── Checkout │ │ │ ├── CheckoutServiceFactory.php │ │ │ └── SessionService.php │ │ ├── Climate │ │ │ ├── ClimateServiceFactory.php │ │ │ ├── OrderService.php │ │ │ ├── ProductService.php │ │ │ └── SupplierService.php │ │ ├── ConfirmationTokenService.php │ │ ├── CoreServiceFactory.php │ │ ├── CountrySpecService.php │ │ ├── CouponService.php │ │ ├── CreditNoteService.php │ │ ├── CustomerService.php │ │ ├── CustomerSessionService.php │ │ ├── DisputeService.php │ │ ├── Entitlements │ │ │ ├── ActiveEntitlementService.php │ │ │ ├── EntitlementsServiceFactory.php │ │ │ └── FeatureService.php │ │ ├── EphemeralKeyService.php │ │ ├── EventService.php │ │ ├── ExchangeRateService.php │ │ ├── FileLinkService.php │ │ ├── FileService.php │ │ ├── FinancialConnections │ │ │ ├── AccountService.php │ │ │ ├── FinancialConnectionsServiceFactory.php │ │ │ ├── SessionService.php │ │ │ └── TransactionService.php │ │ ├── Forwarding │ │ │ ├── ForwardingServiceFactory.php │ │ │ └── RequestService.php │ │ ├── Identity │ │ │ ├── IdentityServiceFactory.php │ │ │ ├── VerificationReportService.php │ │ │ └── VerificationSessionService.php │ │ ├── InvoiceItemService.php │ │ ├── InvoicePaymentService.php │ │ ├── InvoiceRenderingTemplateService.php │ │ ├── InvoiceService.php │ │ ├── Issuing │ │ │ ├── AuthorizationService.php │ │ │ ├── CardService.php │ │ │ ├── CardholderService.php │ │ │ ├── DisputeService.php │ │ │ ├── IssuingServiceFactory.php │ │ │ ├── PersonalizationDesignService.php │ │ │ ├── PhysicalBundleService.php │ │ │ ├── TokenService.php │ │ │ └── TransactionService.php │ │ ├── MandateService.php │ │ ├── OAuthService.php │ │ ├── PaymentAttemptRecordService.php │ │ ├── PaymentIntentService.php │ │ ├── PaymentLinkService.php │ │ ├── PaymentMethodConfigurationService.php │ │ ├── PaymentMethodDomainService.php │ │ ├── PaymentMethodService.php │ │ ├── PaymentRecordService.php │ │ ├── PayoutService.php │ │ ├── PlanService.php │ │ ├── PriceService.php │ │ ├── ProductService.php │ │ ├── PromotionCodeService.php │ │ ├── QuoteService.php │ │ ├── Radar │ │ │ ├── EarlyFraudWarningService.php │ │ │ ├── RadarServiceFactory.php │ │ │ ├── ValueListItemService.php │ │ │ └── ValueListService.php │ │ ├── RefundService.php │ │ ├── Reporting │ │ │ ├── ReportRunService.php │ │ │ ├── ReportTypeService.php │ │ │ └── ReportingServiceFactory.php │ │ ├── ReviewService.php │ │ ├── ServiceNavigatorTrait.php │ │ ├── SetupAttemptService.php │ │ ├── SetupIntentService.php │ │ ├── ShippingRateService.php │ │ ├── Sigma │ │ │ ├── ScheduledQueryRunService.php │ │ │ └── SigmaServiceFactory.php │ │ ├── SourceService.php │ │ ├── SubscriptionItemService.php │ │ ├── SubscriptionScheduleService.php │ │ ├── SubscriptionService.php │ │ ├── Tax │ │ │ ├── CalculationService.php │ │ │ ├── RegistrationService.php │ │ │ ├── SettingsService.php │ │ │ ├── TaxServiceFactory.php │ │ │ └── TransactionService.php │ │ ├── TaxCodeService.php │ │ ├── TaxIdService.php │ │ ├── TaxRateService.php │ │ ├── Terminal │ │ │ ├── ConfigurationService.php │ │ │ ├── ConnectionTokenService.php │ │ │ ├── LocationService.php │ │ │ ├── ReaderService.php │ │ │ └── TerminalServiceFactory.php │ │ ├── TestHelpers │ │ │ ├── ConfirmationTokenService.php │ │ │ ├── CustomerService.php │ │ │ ├── Issuing │ │ │ │ ├── AuthorizationService.php │ │ │ │ ├── CardService.php │ │ │ │ ├── IssuingServiceFactory.php │ │ │ │ ├── PersonalizationDesignService.php │ │ │ │ └── TransactionService.php │ │ │ ├── RefundService.php │ │ │ ├── Terminal │ │ │ │ ├── ReaderService.php │ │ │ │ └── TerminalServiceFactory.php │ │ │ ├── TestClockService.php │ │ │ ├── TestHelpersServiceFactory.php │ │ │ └── Treasury │ │ │ │ ├── InboundTransferService.php │ │ │ │ ├── OutboundPaymentService.php │ │ │ │ ├── OutboundTransferService.php │ │ │ │ ├── ReceivedCreditService.php │ │ │ │ ├── ReceivedDebitService.php │ │ │ │ └── TreasuryServiceFactory.php │ │ ├── TokenService.php │ │ ├── TopupService.php │ │ ├── TransferService.php │ │ ├── Treasury │ │ │ ├── CreditReversalService.php │ │ │ ├── DebitReversalService.php │ │ │ ├── FinancialAccountService.php │ │ │ ├── InboundTransferService.php │ │ │ ├── OutboundPaymentService.php │ │ │ ├── OutboundTransferService.php │ │ │ ├── ReceivedCreditService.php │ │ │ ├── ReceivedDebitService.php │ │ │ ├── TransactionEntryService.php │ │ │ ├── TransactionService.php │ │ │ └── TreasuryServiceFactory.php │ │ ├── V2 │ │ │ ├── Billing │ │ │ │ ├── BillingServiceFactory.php │ │ │ │ ├── MeterEventAdjustmentService.php │ │ │ │ ├── MeterEventService.php │ │ │ │ ├── MeterEventSessionService.php │ │ │ │ └── MeterEventStreamService.php │ │ │ ├── Core │ │ │ │ ├── CoreServiceFactory.php │ │ │ │ ├── EventDestinationService.php │ │ │ │ └── EventService.php │ │ │ └── V2ServiceFactory.php │ │ └── WebhookEndpointService.php │ │ ├── SetupAttempt.php │ │ ├── SetupIntent.php │ │ ├── ShippingRate.php │ │ ├── Sigma │ │ └── ScheduledQueryRun.php │ │ ├── SingletonApiResource.php │ │ ├── Source.php │ │ ├── SourceMandateNotification.php │ │ ├── SourceTransaction.php │ │ ├── Stripe.php │ │ ├── StripeClient.php │ │ ├── StripeClientInterface.php │ │ ├── StripeContext.php │ │ ├── StripeObject.php │ │ ├── StripeStreamingClientInterface.php │ │ ├── Subscription.php │ │ ├── SubscriptionItem.php │ │ ├── SubscriptionSchedule.php │ │ ├── Tax │ │ ├── Calculation.php │ │ ├── CalculationLineItem.php │ │ ├── Registration.php │ │ ├── Settings.php │ │ ├── Transaction.php │ │ └── TransactionLineItem.php │ │ ├── TaxCode.php │ │ ├── TaxDeductedAtSource.php │ │ ├── TaxId.php │ │ ├── TaxRate.php │ │ ├── Terminal │ │ ├── Configuration.php │ │ ├── ConnectionToken.php │ │ ├── Location.php │ │ └── Reader.php │ │ ├── TestHelpers │ │ └── TestClock.php │ │ ├── Token.php │ │ ├── Topup.php │ │ ├── Transfer.php │ │ ├── TransferReversal.php │ │ ├── Treasury │ │ ├── CreditReversal.php │ │ ├── DebitReversal.php │ │ ├── FinancialAccount.php │ │ ├── FinancialAccountFeatures.php │ │ ├── InboundTransfer.php │ │ ├── OutboundPayment.php │ │ ├── OutboundTransfer.php │ │ ├── ReceivedCredit.php │ │ ├── ReceivedDebit.php │ │ ├── Transaction.php │ │ └── TransactionEntry.php │ │ ├── Util │ │ ├── ApiVersion.php │ │ ├── CaseInsensitiveArray.php │ │ ├── DefaultLogger.php │ │ ├── EventNotificationTypes.php │ │ ├── EventTypes.php │ │ ├── LoggerInterface.php │ │ ├── ObjectTypes.php │ │ ├── RandomGenerator.php │ │ ├── RequestOptions.php │ │ ├── Set.php │ │ └── Util.php │ │ ├── V2 │ │ ├── Billing │ │ │ ├── MeterEvent.php │ │ │ ├── MeterEventAdjustment.php │ │ │ └── MeterEventSession.php │ │ ├── Collection.php │ │ ├── Core │ │ │ ├── Event.php │ │ │ ├── EventDestination.php │ │ │ └── EventNotification.php │ │ └── DeletedObject.php │ │ ├── Webhook.php │ │ ├── WebhookEndpoint.php │ │ └── WebhookSignature.php ├── tempusdominus-bootstrap-4 │ ├── css │ │ └── tempusdominus-bootstrap-4.min.css │ └── js │ │ └── tempusdominus-bootstrap-4.min.js ├── tinymce │ ├── icons │ │ └── default │ │ │ └── icons.min.js │ ├── langs │ │ └── README.md │ ├── license.md │ ├── models │ │ └── dom │ │ │ └── model.min.js │ ├── notices.txt │ ├── plugins │ │ ├── accordion │ │ │ └── plugin.min.js │ │ ├── advlist │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ └── plugin.min.js │ │ ├── code │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── js │ │ │ │ ├── emojiimages.js │ │ │ │ ├── emojiimages.min.js │ │ │ │ ├── emojis.js │ │ │ │ └── emojis.min.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── js │ │ │ │ └── i18n │ │ │ │ │ └── keynav │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg-BG.js │ │ │ │ │ ├── bg_BG.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-FR.js │ │ │ │ │ ├── fr_FR.js │ │ │ │ │ ├── he-IL.js │ │ │ │ │ ├── he_IL.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu-HU.js │ │ │ │ │ ├── hu_HU.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── ko-KR.js │ │ │ │ │ ├── ko_KR.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb-NO.js │ │ │ │ │ ├── nb_NO.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt-PT.js │ │ │ │ │ ├── pt_BR.js │ │ │ │ │ ├── pt_PT.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl-SI.js │ │ │ │ │ ├── sl_SI.js │ │ │ │ │ ├── sv-SE.js │ │ │ │ │ ├── sv_SE.js │ │ │ │ │ ├── th-TH.js │ │ │ │ │ ├── th_TH.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ ├── zh-TW.js │ │ │ │ │ ├── zh_CN.js │ │ │ │ │ └── zh_TW.js │ │ │ └── plugin.min.js │ │ ├── image │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ └── plugin.min.js │ │ ├── link │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ └── plugin.min.js │ │ ├── media │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ └── plugin.min.js │ │ ├── quickbars │ │ │ └── plugin.min.js │ │ ├── save │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ └── plugin.min.js │ │ ├── table │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ └── plugin.min.js │ ├── skins │ │ ├── content │ │ │ ├── dark │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ ├── default │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ ├── document │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5-dark │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5 │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ └── writer │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ └── ui │ │ │ ├── oxide-dark │ │ │ ├── content.inline.js │ │ │ ├── content.inline.min.css │ │ │ ├── content.js │ │ │ ├── content.min.css │ │ │ ├── skin.js │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.js │ │ │ └── skin.shadowdom.min.css │ │ │ ├── oxide │ │ │ ├── content.inline.js │ │ │ ├── content.inline.min.css │ │ │ ├── content.js │ │ │ ├── content.min.css │ │ │ ├── skin.js │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.js │ │ │ └── skin.shadowdom.min.css │ │ │ ├── tinymce-5-dark │ │ │ ├── content.inline.js │ │ │ ├── content.inline.min.css │ │ │ ├── content.js │ │ │ ├── content.min.css │ │ │ ├── skin.js │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.js │ │ │ └── skin.shadowdom.min.css │ │ │ └── tinymce-5 │ │ │ ├── content.inline.js │ │ │ ├── content.inline.min.css │ │ │ ├── content.js │ │ │ ├── content.min.css │ │ │ ├── skin.js │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.js │ │ │ └── skin.shadowdom.min.css │ ├── themes │ │ └── silver │ │ │ └── theme.min.js │ ├── tinymce.d.ts │ └── tinymce.min.js ├── toastr │ ├── toastr.min.css │ └── toastr.min.js ├── totp │ └── totp.php ├── vendor │ ├── autoload.php │ ├── bin │ │ └── carbon │ ├── carbonphp │ │ └── carbon-doctrine-types │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Carbon │ │ │ └── Doctrine │ │ │ ├── CarbonDoctrineType.php │ │ │ ├── CarbonImmutableType.php │ │ │ ├── CarbonType.php │ │ │ ├── CarbonTypeConverter.php │ │ │ ├── DateTimeDefaultPrecision.php │ │ │ ├── DateTimeImmutableType.php │ │ │ └── DateTimeType.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ ├── installed.php │ │ └── platform_check.php │ ├── doctrine │ │ └── inflector │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ └── en │ │ │ │ └── index.rst │ │ │ └── src │ │ │ ├── CachedWordInflector.php │ │ │ ├── GenericLanguageInflectorFactory.php │ │ │ ├── Inflector.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Language.php │ │ │ ├── LanguageInflectorFactory.php │ │ │ ├── NoopWordInflector.php │ │ │ ├── Rules │ │ │ ├── English │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Esperanto │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── French │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Italian │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── NorwegianBokmal │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Pattern.php │ │ │ ├── Patterns.php │ │ │ ├── Portuguese │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Ruleset.php │ │ │ ├── Spanish │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Substitution.php │ │ │ ├── Substitutions.php │ │ │ ├── Transformation.php │ │ │ ├── Transformations.php │ │ │ ├── Turkish │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ └── Word.php │ │ │ ├── RulesetInflector.php │ │ │ └── WordInflector.php │ ├── illuminate │ │ ├── collections │ │ │ ├── Arr.php │ │ │ ├── Collection.php │ │ │ ├── Enumerable.php │ │ │ ├── HigherOrderCollectionProxy.php │ │ │ ├── ItemNotFoundException.php │ │ │ ├── LICENSE.md │ │ │ ├── LazyCollection.php │ │ │ ├── MultipleItemsFoundException.php │ │ │ ├── Traits │ │ │ │ ├── EnumeratesValues.php │ │ │ │ └── TransformsToResourceCollection.php │ │ │ ├── composer.json │ │ │ ├── functions.php │ │ │ └── helpers.php │ │ ├── conditionable │ │ │ ├── HigherOrderWhenProxy.php │ │ │ ├── LICENSE.md │ │ │ ├── Traits │ │ │ │ └── Conditionable.php │ │ │ └── composer.json │ │ ├── contracts │ │ │ ├── Auth │ │ │ │ ├── Access │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ └── Gate.php │ │ │ │ ├── Authenticatable.php │ │ │ │ ├── CanResetPassword.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Guard.php │ │ │ │ ├── Middleware │ │ │ │ │ └── AuthenticatesRequests.php │ │ │ │ ├── MustVerifyEmail.php │ │ │ │ ├── PasswordBroker.php │ │ │ │ ├── PasswordBrokerFactory.php │ │ │ │ ├── StatefulGuard.php │ │ │ │ ├── SupportsBasicAuth.php │ │ │ │ └── UserProvider.php │ │ │ ├── Broadcasting │ │ │ │ ├── Broadcaster.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HasBroadcastChannel.php │ │ │ │ ├── ShouldBeUnique.php │ │ │ │ ├── ShouldBroadcast.php │ │ │ │ ├── ShouldBroadcastNow.php │ │ │ │ └── ShouldRescue.php │ │ │ ├── Bus │ │ │ │ ├── Dispatcher.php │ │ │ │ └── QueueingDispatcher.php │ │ │ ├── Cache │ │ │ │ ├── Factory.php │ │ │ │ ├── Lock.php │ │ │ │ ├── LockProvider.php │ │ │ │ ├── LockTimeoutException.php │ │ │ │ ├── Repository.php │ │ │ │ └── Store.php │ │ │ ├── Concurrency │ │ │ │ └── Driver.php │ │ │ ├── Config │ │ │ │ └── Repository.php │ │ │ ├── Console │ │ │ │ ├── Application.php │ │ │ │ ├── Isolatable.php │ │ │ │ ├── Kernel.php │ │ │ │ └── PromptsForMissingInput.php │ │ │ ├── Container │ │ │ │ ├── BindingResolutionException.php │ │ │ │ ├── CircularDependencyException.php │ │ │ │ ├── Container.php │ │ │ │ ├── ContextualAttribute.php │ │ │ │ ├── ContextualBindingBuilder.php │ │ │ │ └── SelfBuilding.php │ │ │ ├── Cookie │ │ │ │ ├── Factory.php │ │ │ │ └── QueueingFactory.php │ │ │ ├── Database │ │ │ │ ├── ConcurrencyErrorDetector.php │ │ │ │ ├── Eloquent │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── Castable.php │ │ │ │ │ ├── CastsAttributes.php │ │ │ │ │ ├── CastsInboundAttributes.php │ │ │ │ │ ├── ComparesCastableAttributes.php │ │ │ │ │ ├── DeviatesCastableAttributes.php │ │ │ │ │ ├── SerializesCastableAttributes.php │ │ │ │ │ └── SupportsPartialRelations.php │ │ │ │ ├── Events │ │ │ │ │ └── MigrationEvent.php │ │ │ │ ├── LostConnectionDetector.php │ │ │ │ ├── ModelIdentifier.php │ │ │ │ └── Query │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── ConditionExpression.php │ │ │ │ │ └── Expression.php │ │ │ ├── Debug │ │ │ │ ├── ExceptionHandler.php │ │ │ │ └── ShouldntReport.php │ │ │ ├── Encryption │ │ │ │ ├── DecryptException.php │ │ │ │ ├── EncryptException.php │ │ │ │ ├── Encrypter.php │ │ │ │ └── StringEncrypter.php │ │ │ ├── Events │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── ShouldDispatchAfterCommit.php │ │ │ │ └── ShouldHandleEventsAfterCommit.php │ │ │ ├── Filesystem │ │ │ │ ├── Cloud.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ ├── Filesystem.php │ │ │ │ └── LockTimeoutException.php │ │ │ ├── Foundation │ │ │ │ ├── Application.php │ │ │ │ ├── CachesConfiguration.php │ │ │ │ ├── CachesRoutes.php │ │ │ │ ├── ExceptionRenderer.php │ │ │ │ └── MaintenanceMode.php │ │ │ ├── Hashing │ │ │ │ └── Hasher.php │ │ │ ├── Http │ │ │ │ └── Kernel.php │ │ │ ├── LICENSE.md │ │ │ ├── Log │ │ │ │ └── ContextLogProcessor.php │ │ │ ├── Mail │ │ │ │ ├── Attachable.php │ │ │ │ ├── Factory.php │ │ │ │ ├── MailQueue.php │ │ │ │ ├── Mailable.php │ │ │ │ └── Mailer.php │ │ │ ├── Notifications │ │ │ │ ├── Dispatcher.php │ │ │ │ └── Factory.php │ │ │ ├── Pagination │ │ │ │ ├── CursorPaginator.php │ │ │ │ ├── LengthAwarePaginator.php │ │ │ │ └── Paginator.php │ │ │ ├── Pipeline │ │ │ │ ├── Hub.php │ │ │ │ └── Pipeline.php │ │ │ ├── Process │ │ │ │ ├── InvokedProcess.php │ │ │ │ └── ProcessResult.php │ │ │ ├── Queue │ │ │ │ ├── ClearableQueue.php │ │ │ │ ├── EntityNotFoundException.php │ │ │ │ ├── EntityResolver.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Job.php │ │ │ │ ├── Monitor.php │ │ │ │ ├── Queue.php │ │ │ │ ├── QueueableCollection.php │ │ │ │ ├── QueueableEntity.php │ │ │ │ ├── ShouldBeEncrypted.php │ │ │ │ ├── ShouldBeUnique.php │ │ │ │ ├── ShouldBeUniqueUntilProcessing.php │ │ │ │ ├── ShouldQueue.php │ │ │ │ └── ShouldQueueAfterCommit.php │ │ │ ├── Redis │ │ │ │ ├── Connection.php │ │ │ │ ├── Connector.php │ │ │ │ ├── Factory.php │ │ │ │ └── LimiterTimeoutException.php │ │ │ ├── Routing │ │ │ │ ├── BindingRegistrar.php │ │ │ │ ├── Registrar.php │ │ │ │ ├── ResponseFactory.php │ │ │ │ ├── UrlGenerator.php │ │ │ │ └── UrlRoutable.php │ │ │ ├── Session │ │ │ │ ├── Middleware │ │ │ │ │ └── AuthenticatesSessions.php │ │ │ │ └── Session.php │ │ │ ├── Support │ │ │ │ ├── Arrayable.php │ │ │ │ ├── CanBeEscapedWhenCastToString.php │ │ │ │ ├── DeferrableProvider.php │ │ │ │ ├── DeferringDisplayableValue.php │ │ │ │ ├── HasOnceHash.php │ │ │ │ ├── Htmlable.php │ │ │ │ ├── Jsonable.php │ │ │ │ ├── MessageBag.php │ │ │ │ ├── MessageProvider.php │ │ │ │ ├── Renderable.php │ │ │ │ ├── Responsable.php │ │ │ │ └── ValidatedData.php │ │ │ ├── Translation │ │ │ │ ├── HasLocalePreference.php │ │ │ │ ├── Loader.php │ │ │ │ └── Translator.php │ │ │ ├── Validation │ │ │ │ ├── CompilableRules.php │ │ │ │ ├── DataAwareRule.php │ │ │ │ ├── Factory.php │ │ │ │ ├── ImplicitRule.php │ │ │ │ ├── InvokableRule.php │ │ │ │ ├── Rule.php │ │ │ │ ├── UncompromisedVerifier.php │ │ │ │ ├── ValidatesWhenResolved.php │ │ │ │ ├── ValidationRule.php │ │ │ │ ├── Validator.php │ │ │ │ └── ValidatorAwareRule.php │ │ │ ├── View │ │ │ │ ├── Engine.php │ │ │ │ ├── Factory.php │ │ │ │ ├── View.php │ │ │ │ └── ViewCompilationException.php │ │ │ └── composer.json │ │ ├── macroable │ │ │ ├── LICENSE.md │ │ │ ├── Traits │ │ │ │ └── Macroable.php │ │ │ └── composer.json │ │ ├── pagination │ │ │ ├── AbstractCursorPaginator.php │ │ │ ├── AbstractPaginator.php │ │ │ ├── Cursor.php │ │ │ ├── CursorPaginator.php │ │ │ ├── LICENSE.md │ │ │ ├── LengthAwarePaginator.php │ │ │ ├── PaginationServiceProvider.php │ │ │ ├── PaginationState.php │ │ │ ├── Paginator.php │ │ │ ├── UrlWindow.php │ │ │ ├── composer.json │ │ │ └── resources │ │ │ │ └── views │ │ │ │ ├── bootstrap-4.blade.php │ │ │ │ ├── bootstrap-5.blade.php │ │ │ │ ├── default.blade.php │ │ │ │ ├── semantic-ui.blade.php │ │ │ │ ├── simple-bootstrap-4.blade.php │ │ │ │ ├── simple-bootstrap-5.blade.php │ │ │ │ ├── simple-default.blade.php │ │ │ │ ├── simple-tailwind.blade.php │ │ │ │ └── tailwind.blade.php │ │ └── support │ │ │ ├── AggregateServiceProvider.php │ │ │ ├── Benchmark.php │ │ │ ├── Carbon.php │ │ │ ├── Composer.php │ │ │ ├── ConfigurationUrlParser.php │ │ │ ├── DateFactory.php │ │ │ ├── DefaultProviders.php │ │ │ ├── Defer │ │ │ ├── DeferredCallback.php │ │ │ └── DeferredCallbackCollection.php │ │ │ ├── EncodedHtmlString.php │ │ │ ├── Env.php │ │ │ ├── Exceptions │ │ │ └── MathException.php │ │ │ ├── Facades │ │ │ ├── App.php │ │ │ ├── Artisan.php │ │ │ ├── Auth.php │ │ │ ├── Blade.php │ │ │ ├── Broadcast.php │ │ │ ├── Bus.php │ │ │ ├── Cache.php │ │ │ ├── Concurrency.php │ │ │ ├── Config.php │ │ │ ├── Context.php │ │ │ ├── Cookie.php │ │ │ ├── Crypt.php │ │ │ ├── DB.php │ │ │ ├── Date.php │ │ │ ├── Event.php │ │ │ ├── Exceptions.php │ │ │ ├── Facade.php │ │ │ ├── File.php │ │ │ ├── Gate.php │ │ │ ├── Hash.php │ │ │ ├── Http.php │ │ │ ├── Lang.php │ │ │ ├── Log.php │ │ │ ├── Mail.php │ │ │ ├── MaintenanceMode.php │ │ │ ├── Notification.php │ │ │ ├── ParallelTesting.php │ │ │ ├── Password.php │ │ │ ├── Pipeline.php │ │ │ ├── Process.php │ │ │ ├── Queue.php │ │ │ ├── RateLimiter.php │ │ │ ├── Redirect.php │ │ │ ├── Redis.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Route.php │ │ │ ├── Schedule.php │ │ │ ├── Schema.php │ │ │ ├── Session.php │ │ │ ├── Storage.php │ │ │ ├── URL.php │ │ │ ├── Validator.php │ │ │ ├── View.php │ │ │ └── Vite.php │ │ │ ├── Fluent.php │ │ │ ├── HigherOrderTapProxy.php │ │ │ ├── HtmlString.php │ │ │ ├── InteractsWithTime.php │ │ │ ├── Js.php │ │ │ ├── LICENSE.md │ │ │ ├── Lottery.php │ │ │ ├── Manager.php │ │ │ ├── MessageBag.php │ │ │ ├── MultipleInstanceManager.php │ │ │ ├── NamespacedItemResolver.php │ │ │ ├── Number.php │ │ │ ├── Once.php │ │ │ ├── Onceable.php │ │ │ ├── Optional.php │ │ │ ├── Pluralizer.php │ │ │ ├── ProcessUtils.php │ │ │ ├── Reflector.php │ │ │ ├── ServiceProvider.php │ │ │ ├── Sleep.php │ │ │ ├── Str.php │ │ │ ├── Stringable.php │ │ │ ├── Testing │ │ │ └── Fakes │ │ │ │ ├── BatchFake.php │ │ │ │ ├── BatchRepositoryFake.php │ │ │ │ ├── BusFake.php │ │ │ │ ├── ChainedBatchTruthTest.php │ │ │ │ ├── EventFake.php │ │ │ │ ├── ExceptionHandlerFake.php │ │ │ │ ├── Fake.php │ │ │ │ ├── MailFake.php │ │ │ │ ├── NotificationFake.php │ │ │ │ ├── PendingBatchFake.php │ │ │ │ ├── PendingChainFake.php │ │ │ │ ├── PendingMailFake.php │ │ │ │ └── QueueFake.php │ │ │ ├── Timebox.php │ │ │ ├── Traits │ │ │ ├── CapsuleManagerTrait.php │ │ │ ├── Dumpable.php │ │ │ ├── ForwardsCalls.php │ │ │ ├── InteractsWithData.php │ │ │ ├── Localizable.php │ │ │ ├── ReflectsClosures.php │ │ │ └── Tappable.php │ │ │ ├── Uri.php │ │ │ ├── UriQueryString.php │ │ │ ├── ValidatedInput.php │ │ │ ├── ViewErrorBag.php │ │ │ ├── composer.json │ │ │ ├── functions.php │ │ │ └── helpers.php │ ├── nesbot │ │ └── carbon │ │ │ ├── .phpstorm.meta.php │ │ │ ├── LICENSE │ │ │ ├── bin │ │ │ ├── carbon │ │ │ └── carbon.bat │ │ │ ├── composer.json │ │ │ ├── extension.neon │ │ │ ├── lazy │ │ │ └── Carbon │ │ │ │ ├── MessageFormatter │ │ │ │ ├── MessageFormatterMapperStrongType.php │ │ │ │ └── MessageFormatterMapperWeakType.php │ │ │ │ ├── ProtectedDatePeriod.php │ │ │ │ ├── TranslatorStrongType.php │ │ │ │ ├── TranslatorWeakType.php │ │ │ │ └── UnprotectedDatePeriod.php │ │ │ ├── readme.md │ │ │ ├── sponsors.php │ │ │ └── src │ │ │ └── Carbon │ │ │ ├── AbstractTranslator.php │ │ │ ├── Callback.php │ │ │ ├── Carbon.php │ │ │ ├── CarbonConverterInterface.php │ │ │ ├── CarbonImmutable.php │ │ │ ├── CarbonInterface.php │ │ │ ├── CarbonInterval.php │ │ │ ├── CarbonPeriod.php │ │ │ ├── CarbonPeriodImmutable.php │ │ │ ├── CarbonTimeZone.php │ │ │ ├── Cli │ │ │ └── Invoker.php │ │ │ ├── Exceptions │ │ │ ├── BadComparisonUnitException.php │ │ │ ├── BadFluentConstructorException.php │ │ │ ├── BadFluentSetterException.php │ │ │ ├── BadMethodCallException.php │ │ │ ├── EndLessPeriodException.php │ │ │ ├── Exception.php │ │ │ ├── ImmutableException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCastException.php │ │ │ ├── InvalidDateException.php │ │ │ ├── InvalidFormatException.php │ │ │ ├── InvalidIntervalException.php │ │ │ ├── InvalidPeriodDateException.php │ │ │ ├── InvalidPeriodParameterException.php │ │ │ ├── InvalidTimeZoneException.php │ │ │ ├── InvalidTypeException.php │ │ │ ├── NotACarbonClassException.php │ │ │ ├── NotAPeriodException.php │ │ │ ├── NotLocaleAwareException.php │ │ │ ├── OutOfRangeException.php │ │ │ ├── ParseErrorException.php │ │ │ ├── RuntimeException.php │ │ │ ├── UnitException.php │ │ │ ├── UnitNotConfiguredException.php │ │ │ ├── UnknownGetterException.php │ │ │ ├── UnknownMethodException.php │ │ │ ├── UnknownSetterException.php │ │ │ ├── UnknownUnitException.php │ │ │ ├── UnreachableException.php │ │ │ └── UnsupportedUnitException.php │ │ │ ├── Factory.php │ │ │ ├── FactoryImmutable.php │ │ │ ├── Lang │ │ │ ├── aa.php │ │ │ ├── aa_DJ.php │ │ │ ├── aa_ER.php │ │ │ ├── aa_ER@saaho.php │ │ │ ├── aa_ET.php │ │ │ ├── af.php │ │ │ ├── af_NA.php │ │ │ ├── af_ZA.php │ │ │ ├── agq.php │ │ │ ├── agr.php │ │ │ ├── agr_PE.php │ │ │ ├── ak.php │ │ │ ├── ak_GH.php │ │ │ ├── am.php │ │ │ ├── am_ET.php │ │ │ ├── an.php │ │ │ ├── an_ES.php │ │ │ ├── anp.php │ │ │ ├── anp_IN.php │ │ │ ├── ar.php │ │ │ ├── ar_AE.php │ │ │ ├── ar_BH.php │ │ │ ├── ar_DJ.php │ │ │ ├── ar_DZ.php │ │ │ ├── ar_EG.php │ │ │ ├── ar_EH.php │ │ │ ├── ar_ER.php │ │ │ ├── ar_IL.php │ │ │ ├── ar_IN.php │ │ │ ├── ar_IQ.php │ │ │ ├── ar_JO.php │ │ │ ├── ar_KM.php │ │ │ ├── ar_KW.php │ │ │ ├── ar_LB.php │ │ │ ├── ar_LY.php │ │ │ ├── ar_MA.php │ │ │ ├── ar_MR.php │ │ │ ├── ar_OM.php │ │ │ ├── ar_PS.php │ │ │ ├── ar_QA.php │ │ │ ├── ar_SA.php │ │ │ ├── ar_SD.php │ │ │ ├── ar_SO.php │ │ │ ├── ar_SS.php │ │ │ ├── ar_SY.php │ │ │ ├── ar_Shakl.php │ │ │ ├── ar_TD.php │ │ │ ├── ar_TN.php │ │ │ ├── ar_YE.php │ │ │ ├── as.php │ │ │ ├── as_IN.php │ │ │ ├── asa.php │ │ │ ├── ast.php │ │ │ ├── ast_ES.php │ │ │ ├── ayc.php │ │ │ ├── ayc_PE.php │ │ │ ├── az.php │ │ │ ├── az_AZ.php │ │ │ ├── az_Cyrl.php │ │ │ ├── az_IR.php │ │ │ ├── az_Latn.php │ │ │ ├── bas.php │ │ │ ├── be.php │ │ │ ├── be_BY.php │ │ │ ├── be_BY@latin.php │ │ │ ├── bem.php │ │ │ ├── bem_ZM.php │ │ │ ├── ber.php │ │ │ ├── ber_DZ.php │ │ │ ├── ber_MA.php │ │ │ ├── bez.php │ │ │ ├── bg.php │ │ │ ├── bg_BG.php │ │ │ ├── bhb.php │ │ │ ├── bhb_IN.php │ │ │ ├── bho.php │ │ │ ├── bho_IN.php │ │ │ ├── bi.php │ │ │ ├── bi_VU.php │ │ │ ├── bm.php │ │ │ ├── bn.php │ │ │ ├── bn_BD.php │ │ │ ├── bn_IN.php │ │ │ ├── bo.php │ │ │ ├── bo_CN.php │ │ │ ├── bo_IN.php │ │ │ ├── br.php │ │ │ ├── br_FR.php │ │ │ ├── brx.php │ │ │ ├── brx_IN.php │ │ │ ├── bs.php │ │ │ ├── bs_BA.php │ │ │ ├── bs_Cyrl.php │ │ │ ├── bs_Latn.php │ │ │ ├── byn.php │ │ │ ├── byn_ER.php │ │ │ ├── ca.php │ │ │ ├── ca_AD.php │ │ │ ├── ca_ES.php │ │ │ ├── ca_ES_Valencia.php │ │ │ ├── ca_FR.php │ │ │ ├── ca_IT.php │ │ │ ├── ccp.php │ │ │ ├── ccp_IN.php │ │ │ ├── ce.php │ │ │ ├── ce_RU.php │ │ │ ├── cgg.php │ │ │ ├── chr.php │ │ │ ├── chr_US.php │ │ │ ├── ckb.php │ │ │ ├── cmn.php │ │ │ ├── cmn_TW.php │ │ │ ├── crh.php │ │ │ ├── crh_UA.php │ │ │ ├── cs.php │ │ │ ├── cs_CZ.php │ │ │ ├── csb.php │ │ │ ├── csb_PL.php │ │ │ ├── cu.php │ │ │ ├── cv.php │ │ │ ├── cv_RU.php │ │ │ ├── cy.php │ │ │ ├── cy_GB.php │ │ │ ├── da.php │ │ │ ├── da_DK.php │ │ │ ├── da_GL.php │ │ │ ├── dav.php │ │ │ ├── de.php │ │ │ ├── de_AT.php │ │ │ ├── de_BE.php │ │ │ ├── de_CH.php │ │ │ ├── de_DE.php │ │ │ ├── de_IT.php │ │ │ ├── de_LI.php │ │ │ ├── de_LU.php │ │ │ ├── dje.php │ │ │ ├── doi.php │ │ │ ├── doi_IN.php │ │ │ ├── dsb.php │ │ │ ├── dsb_DE.php │ │ │ ├── dua.php │ │ │ ├── dv.php │ │ │ ├── dv_MV.php │ │ │ ├── dyo.php │ │ │ ├── dz.php │ │ │ ├── dz_BT.php │ │ │ ├── ebu.php │ │ │ ├── ee.php │ │ │ ├── ee_TG.php │ │ │ ├── el.php │ │ │ ├── el_CY.php │ │ │ ├── el_GR.php │ │ │ ├── en.php │ │ │ ├── en_001.php │ │ │ ├── en_150.php │ │ │ ├── en_AG.php │ │ │ ├── en_AI.php │ │ │ ├── en_AS.php │ │ │ ├── en_AT.php │ │ │ ├── en_AU.php │ │ │ ├── en_BB.php │ │ │ ├── en_BE.php │ │ │ ├── en_BI.php │ │ │ ├── en_BM.php │ │ │ ├── en_BS.php │ │ │ ├── en_BW.php │ │ │ ├── en_BZ.php │ │ │ ├── en_CA.php │ │ │ ├── en_CC.php │ │ │ ├── en_CH.php │ │ │ ├── en_CK.php │ │ │ ├── en_CM.php │ │ │ ├── en_CX.php │ │ │ ├── en_CY.php │ │ │ ├── en_DE.php │ │ │ ├── en_DG.php │ │ │ ├── en_DK.php │ │ │ ├── en_DM.php │ │ │ ├── en_ER.php │ │ │ ├── en_FI.php │ │ │ ├── en_FJ.php │ │ │ ├── en_FK.php │ │ │ ├── en_FM.php │ │ │ ├── en_GB.php │ │ │ ├── en_GD.php │ │ │ ├── en_GG.php │ │ │ ├── en_GH.php │ │ │ ├── en_GI.php │ │ │ ├── en_GM.php │ │ │ ├── en_GU.php │ │ │ ├── en_GY.php │ │ │ ├── en_HK.php │ │ │ ├── en_IE.php │ │ │ ├── en_IL.php │ │ │ ├── en_IM.php │ │ │ ├── en_IN.php │ │ │ ├── en_IO.php │ │ │ ├── en_ISO.php │ │ │ ├── en_JE.php │ │ │ ├── en_JM.php │ │ │ ├── en_KE.php │ │ │ ├── en_KI.php │ │ │ ├── en_KN.php │ │ │ ├── en_KY.php │ │ │ ├── en_LC.php │ │ │ ├── en_LR.php │ │ │ ├── en_LS.php │ │ │ ├── en_MG.php │ │ │ ├── en_MH.php │ │ │ ├── en_MO.php │ │ │ ├── en_MP.php │ │ │ ├── en_MS.php │ │ │ ├── en_MT.php │ │ │ ├── en_MU.php │ │ │ ├── en_MW.php │ │ │ ├── en_MY.php │ │ │ ├── en_NA.php │ │ │ ├── en_NF.php │ │ │ ├── en_NG.php │ │ │ ├── en_NL.php │ │ │ ├── en_NR.php │ │ │ ├── en_NU.php │ │ │ ├── en_NZ.php │ │ │ ├── en_PG.php │ │ │ ├── en_PH.php │ │ │ ├── en_PK.php │ │ │ ├── en_PN.php │ │ │ ├── en_PR.php │ │ │ ├── en_PW.php │ │ │ ├── en_RW.php │ │ │ ├── en_SB.php │ │ │ ├── en_SC.php │ │ │ ├── en_SD.php │ │ │ ├── en_SE.php │ │ │ ├── en_SG.php │ │ │ ├── en_SH.php │ │ │ ├── en_SI.php │ │ │ ├── en_SL.php │ │ │ ├── en_SS.php │ │ │ ├── en_SX.php │ │ │ ├── en_SZ.php │ │ │ ├── en_TC.php │ │ │ ├── en_TK.php │ │ │ ├── en_TO.php │ │ │ ├── en_TT.php │ │ │ ├── en_TV.php │ │ │ ├── en_TZ.php │ │ │ ├── en_UG.php │ │ │ ├── en_UM.php │ │ │ ├── en_US.php │ │ │ ├── en_US_Posix.php │ │ │ ├── en_VC.php │ │ │ ├── en_VG.php │ │ │ ├── en_VI.php │ │ │ ├── en_VU.php │ │ │ ├── en_WS.php │ │ │ ├── en_ZA.php │ │ │ ├── en_ZM.php │ │ │ ├── en_ZW.php │ │ │ ├── eo.php │ │ │ ├── es.php │ │ │ ├── es_419.php │ │ │ ├── es_AR.php │ │ │ ├── es_BO.php │ │ │ ├── es_BR.php │ │ │ ├── es_BZ.php │ │ │ ├── es_CL.php │ │ │ ├── es_CO.php │ │ │ ├── es_CR.php │ │ │ ├── es_CU.php │ │ │ ├── es_DO.php │ │ │ ├── es_EA.php │ │ │ ├── es_EC.php │ │ │ ├── es_ES.php │ │ │ ├── es_GQ.php │ │ │ ├── es_GT.php │ │ │ ├── es_HN.php │ │ │ ├── es_IC.php │ │ │ ├── es_MX.php │ │ │ ├── es_NI.php │ │ │ ├── es_PA.php │ │ │ ├── es_PE.php │ │ │ ├── es_PH.php │ │ │ ├── es_PR.php │ │ │ ├── es_PY.php │ │ │ ├── es_SV.php │ │ │ ├── es_US.php │ │ │ ├── es_UY.php │ │ │ ├── es_VE.php │ │ │ ├── et.php │ │ │ ├── et_EE.php │ │ │ ├── eu.php │ │ │ ├── eu_ES.php │ │ │ ├── ewo.php │ │ │ ├── fa.php │ │ │ ├── fa_AF.php │ │ │ ├── fa_IR.php │ │ │ ├── ff.php │ │ │ ├── ff_CM.php │ │ │ ├── ff_GN.php │ │ │ ├── ff_MR.php │ │ │ ├── ff_SN.php │ │ │ ├── fi.php │ │ │ ├── fi_FI.php │ │ │ ├── fil.php │ │ │ ├── fil_PH.php │ │ │ ├── fo.php │ │ │ ├── fo_DK.php │ │ │ ├── fo_FO.php │ │ │ ├── fr.php │ │ │ ├── fr_BE.php │ │ │ ├── fr_BF.php │ │ │ ├── fr_BI.php │ │ │ ├── fr_BJ.php │ │ │ ├── fr_BL.php │ │ │ ├── fr_CA.php │ │ │ ├── fr_CD.php │ │ │ ├── fr_CF.php │ │ │ ├── fr_CG.php │ │ │ ├── fr_CH.php │ │ │ ├── fr_CI.php │ │ │ ├── fr_CM.php │ │ │ ├── fr_DJ.php │ │ │ ├── fr_DZ.php │ │ │ ├── fr_FR.php │ │ │ ├── fr_GA.php │ │ │ ├── fr_GF.php │ │ │ ├── fr_GN.php │ │ │ ├── fr_GP.php │ │ │ ├── fr_GQ.php │ │ │ ├── fr_HT.php │ │ │ ├── fr_KM.php │ │ │ ├── fr_LU.php │ │ │ ├── fr_MA.php │ │ │ ├── fr_MC.php │ │ │ ├── fr_MF.php │ │ │ ├── fr_MG.php │ │ │ ├── fr_ML.php │ │ │ ├── fr_MQ.php │ │ │ ├── fr_MR.php │ │ │ ├── fr_MU.php │ │ │ ├── fr_NC.php │ │ │ ├── fr_NE.php │ │ │ ├── fr_PF.php │ │ │ ├── fr_PM.php │ │ │ ├── fr_RE.php │ │ │ ├── fr_RW.php │ │ │ ├── fr_SC.php │ │ │ ├── fr_SN.php │ │ │ ├── fr_SY.php │ │ │ ├── fr_TD.php │ │ │ ├── fr_TG.php │ │ │ ├── fr_TN.php │ │ │ ├── fr_VU.php │ │ │ ├── fr_WF.php │ │ │ ├── fr_YT.php │ │ │ ├── fur.php │ │ │ ├── fur_IT.php │ │ │ ├── fy.php │ │ │ ├── fy_DE.php │ │ │ ├── fy_NL.php │ │ │ ├── ga.php │ │ │ ├── ga_IE.php │ │ │ ├── gd.php │ │ │ ├── gd_GB.php │ │ │ ├── gez.php │ │ │ ├── gez_ER.php │ │ │ ├── gez_ET.php │ │ │ ├── gl.php │ │ │ ├── gl_ES.php │ │ │ ├── gom.php │ │ │ ├── gom_Latn.php │ │ │ ├── gsw.php │ │ │ ├── gsw_CH.php │ │ │ ├── gsw_FR.php │ │ │ ├── gsw_LI.php │ │ │ ├── gu.php │ │ │ ├── gu_IN.php │ │ │ ├── guz.php │ │ │ ├── gv.php │ │ │ ├── gv_GB.php │ │ │ ├── ha.php │ │ │ ├── ha_GH.php │ │ │ ├── ha_NE.php │ │ │ ├── ha_NG.php │ │ │ ├── hak.php │ │ │ ├── hak_TW.php │ │ │ ├── haw.php │ │ │ ├── he.php │ │ │ ├── he_IL.php │ │ │ ├── hi.php │ │ │ ├── hi_IN.php │ │ │ ├── hif.php │ │ │ ├── hif_FJ.php │ │ │ ├── hne.php │ │ │ ├── hne_IN.php │ │ │ ├── hr.php │ │ │ ├── hr_BA.php │ │ │ ├── hr_HR.php │ │ │ ├── hsb.php │ │ │ ├── hsb_DE.php │ │ │ ├── ht.php │ │ │ ├── ht_HT.php │ │ │ ├── hu.php │ │ │ ├── hu_HU.php │ │ │ ├── hy.php │ │ │ ├── hy_AM.php │ │ │ ├── i18n.php │ │ │ ├── ia.php │ │ │ ├── ia_FR.php │ │ │ ├── id.php │ │ │ ├── id_ID.php │ │ │ ├── ig.php │ │ │ ├── ig_NG.php │ │ │ ├── ii.php │ │ │ ├── ik.php │ │ │ ├── ik_CA.php │ │ │ ├── in.php │ │ │ ├── is.php │ │ │ ├── is_IS.php │ │ │ ├── it.php │ │ │ ├── it_CH.php │ │ │ ├── it_IT.php │ │ │ ├── it_SM.php │ │ │ ├── it_VA.php │ │ │ ├── iu.php │ │ │ ├── iu_CA.php │ │ │ ├── iw.php │ │ │ ├── ja.php │ │ │ ├── ja_JP.php │ │ │ ├── jgo.php │ │ │ ├── jmc.php │ │ │ ├── jv.php │ │ │ ├── ka.php │ │ │ ├── ka_GE.php │ │ │ ├── kab.php │ │ │ ├── kab_DZ.php │ │ │ ├── kam.php │ │ │ ├── kde.php │ │ │ ├── kea.php │ │ │ ├── khq.php │ │ │ ├── ki.php │ │ │ ├── kk.php │ │ │ ├── kk_KZ.php │ │ │ ├── kkj.php │ │ │ ├── kl.php │ │ │ ├── kl_GL.php │ │ │ ├── kln.php │ │ │ ├── km.php │ │ │ ├── km_KH.php │ │ │ ├── kn.php │ │ │ ├── kn_IN.php │ │ │ ├── ko.php │ │ │ ├── ko_KP.php │ │ │ ├── ko_KR.php │ │ │ ├── kok.php │ │ │ ├── kok_IN.php │ │ │ ├── ks.php │ │ │ ├── ks_IN.php │ │ │ ├── ks_IN@devanagari.php │ │ │ ├── ksb.php │ │ │ ├── ksf.php │ │ │ ├── ksh.php │ │ │ ├── ku.php │ │ │ ├── ku_TR.php │ │ │ ├── kw.php │ │ │ ├── kw_GB.php │ │ │ ├── ky.php │ │ │ ├── ky_KG.php │ │ │ ├── lag.php │ │ │ ├── lb.php │ │ │ ├── lb_LU.php │ │ │ ├── lg.php │ │ │ ├── lg_UG.php │ │ │ ├── li.php │ │ │ ├── li_NL.php │ │ │ ├── lij.php │ │ │ ├── lij_IT.php │ │ │ ├── lkt.php │ │ │ ├── ln.php │ │ │ ├── ln_AO.php │ │ │ ├── ln_CD.php │ │ │ ├── ln_CF.php │ │ │ ├── ln_CG.php │ │ │ ├── lo.php │ │ │ ├── lo_LA.php │ │ │ ├── lrc.php │ │ │ ├── lrc_IQ.php │ │ │ ├── lt.php │ │ │ ├── lt_LT.php │ │ │ ├── lu.php │ │ │ ├── luo.php │ │ │ ├── luy.php │ │ │ ├── lv.php │ │ │ ├── lv_LV.php │ │ │ ├── lzh.php │ │ │ ├── lzh_TW.php │ │ │ ├── mag.php │ │ │ ├── mag_IN.php │ │ │ ├── mai.php │ │ │ ├── mai_IN.php │ │ │ ├── mas.php │ │ │ ├── mas_TZ.php │ │ │ ├── mer.php │ │ │ ├── mfe.php │ │ │ ├── mfe_MU.php │ │ │ ├── mg.php │ │ │ ├── mg_MG.php │ │ │ ├── mgh.php │ │ │ ├── mgo.php │ │ │ ├── mhr.php │ │ │ ├── mhr_RU.php │ │ │ ├── mi.php │ │ │ ├── mi_NZ.php │ │ │ ├── miq.php │ │ │ ├── miq_NI.php │ │ │ ├── mjw.php │ │ │ ├── mjw_IN.php │ │ │ ├── mk.php │ │ │ ├── mk_MK.php │ │ │ ├── ml.php │ │ │ ├── ml_IN.php │ │ │ ├── mn.php │ │ │ ├── mn_MN.php │ │ │ ├── mni.php │ │ │ ├── mni_IN.php │ │ │ ├── mo.php │ │ │ ├── mr.php │ │ │ ├── mr_IN.php │ │ │ ├── ms.php │ │ │ ├── ms_BN.php │ │ │ ├── ms_MY.php │ │ │ ├── ms_SG.php │ │ │ ├── mt.php │ │ │ ├── mt_MT.php │ │ │ ├── mua.php │ │ │ ├── my.php │ │ │ ├── my_MM.php │ │ │ ├── mzn.php │ │ │ ├── nan.php │ │ │ ├── nan_TW.php │ │ │ ├── nan_TW@latin.php │ │ │ ├── naq.php │ │ │ ├── nb.php │ │ │ ├── nb_NO.php │ │ │ ├── nb_SJ.php │ │ │ ├── nd.php │ │ │ ├── nds.php │ │ │ ├── nds_DE.php │ │ │ ├── nds_NL.php │ │ │ ├── ne.php │ │ │ ├── ne_IN.php │ │ │ ├── ne_NP.php │ │ │ ├── nhn.php │ │ │ ├── nhn_MX.php │ │ │ ├── niu.php │ │ │ ├── niu_NU.php │ │ │ ├── nl.php │ │ │ ├── nl_AW.php │ │ │ ├── nl_BE.php │ │ │ ├── nl_BQ.php │ │ │ ├── nl_CW.php │ │ │ ├── nl_NL.php │ │ │ ├── nl_SR.php │ │ │ ├── nl_SX.php │ │ │ ├── nmg.php │ │ │ ├── nn.php │ │ │ ├── nn_NO.php │ │ │ ├── nnh.php │ │ │ ├── no.php │ │ │ ├── nr.php │ │ │ ├── nr_ZA.php │ │ │ ├── nso.php │ │ │ ├── nso_ZA.php │ │ │ ├── nus.php │ │ │ ├── nyn.php │ │ │ ├── oc.php │ │ │ ├── oc_FR.php │ │ │ ├── om.php │ │ │ ├── om_ET.php │ │ │ ├── om_KE.php │ │ │ ├── or.php │ │ │ ├── or_IN.php │ │ │ ├── os.php │ │ │ ├── os_RU.php │ │ │ ├── pa.php │ │ │ ├── pa_Arab.php │ │ │ ├── pa_Guru.php │ │ │ ├── pa_IN.php │ │ │ ├── pa_PK.php │ │ │ ├── pap.php │ │ │ ├── pap_AW.php │ │ │ ├── pap_CW.php │ │ │ ├── pl.php │ │ │ ├── pl_PL.php │ │ │ ├── prg.php │ │ │ ├── ps.php │ │ │ ├── ps_AF.php │ │ │ ├── pt.php │ │ │ ├── pt_AO.php │ │ │ ├── pt_BR.php │ │ │ ├── pt_CH.php │ │ │ ├── pt_CV.php │ │ │ ├── pt_GQ.php │ │ │ ├── pt_GW.php │ │ │ ├── pt_LU.php │ │ │ ├── pt_MO.php │ │ │ ├── pt_MZ.php │ │ │ ├── pt_PT.php │ │ │ ├── pt_ST.php │ │ │ ├── pt_TL.php │ │ │ ├── qu.php │ │ │ ├── qu_BO.php │ │ │ ├── qu_EC.php │ │ │ ├── quz.php │ │ │ ├── quz_PE.php │ │ │ ├── raj.php │ │ │ ├── raj_IN.php │ │ │ ├── rm.php │ │ │ ├── rn.php │ │ │ ├── ro.php │ │ │ ├── ro_MD.php │ │ │ ├── ro_RO.php │ │ │ ├── rof.php │ │ │ ├── ru.php │ │ │ ├── ru_BY.php │ │ │ ├── ru_KG.php │ │ │ ├── ru_KZ.php │ │ │ ├── ru_MD.php │ │ │ ├── ru_RU.php │ │ │ ├── ru_UA.php │ │ │ ├── rw.php │ │ │ ├── rw_RW.php │ │ │ ├── rwk.php │ │ │ ├── sa.php │ │ │ ├── sa_IN.php │ │ │ ├── sah.php │ │ │ ├── sah_RU.php │ │ │ ├── saq.php │ │ │ ├── sat.php │ │ │ ├── sat_IN.php │ │ │ ├── sbp.php │ │ │ ├── sc.php │ │ │ ├── sc_IT.php │ │ │ ├── sd.php │ │ │ ├── sd_IN.php │ │ │ ├── sd_IN@devanagari.php │ │ │ ├── se.php │ │ │ ├── se_FI.php │ │ │ ├── se_NO.php │ │ │ ├── se_SE.php │ │ │ ├── seh.php │ │ │ ├── ses.php │ │ │ ├── sg.php │ │ │ ├── sgs.php │ │ │ ├── sgs_LT.php │ │ │ ├── sh.php │ │ │ ├── shi.php │ │ │ ├── shi_Latn.php │ │ │ ├── shi_Tfng.php │ │ │ ├── shn.php │ │ │ ├── shn_MM.php │ │ │ ├── shs.php │ │ │ ├── shs_CA.php │ │ │ ├── si.php │ │ │ ├── si_LK.php │ │ │ ├── sid.php │ │ │ ├── sid_ET.php │ │ │ ├── sk.php │ │ │ ├── sk_SK.php │ │ │ ├── sl.php │ │ │ ├── sl_SI.php │ │ │ ├── sm.php │ │ │ ├── sm_WS.php │ │ │ ├── smn.php │ │ │ ├── sn.php │ │ │ ├── so.php │ │ │ ├── so_DJ.php │ │ │ ├── so_ET.php │ │ │ ├── so_KE.php │ │ │ ├── so_SO.php │ │ │ ├── sq.php │ │ │ ├── sq_AL.php │ │ │ ├── sq_MK.php │ │ │ ├── sq_XK.php │ │ │ ├── sr.php │ │ │ ├── sr_Cyrl.php │ │ │ ├── sr_Cyrl_BA.php │ │ │ ├── sr_Cyrl_ME.php │ │ │ ├── sr_Cyrl_XK.php │ │ │ ├── sr_Latn.php │ │ │ ├── sr_Latn_BA.php │ │ │ ├── sr_Latn_ME.php │ │ │ ├── sr_Latn_XK.php │ │ │ ├── sr_ME.php │ │ │ ├── sr_RS.php │ │ │ ├── sr_RS@latin.php │ │ │ ├── ss.php │ │ │ ├── ss_ZA.php │ │ │ ├── st.php │ │ │ ├── st_ZA.php │ │ │ ├── sv.php │ │ │ ├── sv_AX.php │ │ │ ├── sv_FI.php │ │ │ ├── sv_SE.php │ │ │ ├── sw.php │ │ │ ├── sw_CD.php │ │ │ ├── sw_KE.php │ │ │ ├── sw_TZ.php │ │ │ ├── sw_UG.php │ │ │ ├── szl.php │ │ │ ├── szl_PL.php │ │ │ ├── ta.php │ │ │ ├── ta_IN.php │ │ │ ├── ta_LK.php │ │ │ ├── ta_MY.php │ │ │ ├── ta_SG.php │ │ │ ├── tcy.php │ │ │ ├── tcy_IN.php │ │ │ ├── te.php │ │ │ ├── te_IN.php │ │ │ ├── teo.php │ │ │ ├── teo_KE.php │ │ │ ├── tet.php │ │ │ ├── tg.php │ │ │ ├── tg_TJ.php │ │ │ ├── th.php │ │ │ ├── th_TH.php │ │ │ ├── the.php │ │ │ ├── the_NP.php │ │ │ ├── ti.php │ │ │ ├── ti_ER.php │ │ │ ├── ti_ET.php │ │ │ ├── tig.php │ │ │ ├── tig_ER.php │ │ │ ├── tk.php │ │ │ ├── tk_TM.php │ │ │ ├── tl.php │ │ │ ├── tl_PH.php │ │ │ ├── tlh.php │ │ │ ├── tn.php │ │ │ ├── tn_ZA.php │ │ │ ├── to.php │ │ │ ├── to_TO.php │ │ │ ├── tpi.php │ │ │ ├── tpi_PG.php │ │ │ ├── tr.php │ │ │ ├── tr_CY.php │ │ │ ├── tr_TR.php │ │ │ ├── ts.php │ │ │ ├── ts_ZA.php │ │ │ ├── tt.php │ │ │ ├── tt_RU.php │ │ │ ├── tt_RU@iqtelif.php │ │ │ ├── twq.php │ │ │ ├── tzl.php │ │ │ ├── tzm.php │ │ │ ├── tzm_Latn.php │ │ │ ├── ug.php │ │ │ ├── ug_CN.php │ │ │ ├── uk.php │ │ │ ├── uk_UA.php │ │ │ ├── unm.php │ │ │ ├── unm_US.php │ │ │ ├── ur.php │ │ │ ├── ur_IN.php │ │ │ ├── ur_PK.php │ │ │ ├── uz.php │ │ │ ├── uz_Arab.php │ │ │ ├── uz_Cyrl.php │ │ │ ├── uz_Latn.php │ │ │ ├── uz_UZ.php │ │ │ ├── uz_UZ@cyrillic.php │ │ │ ├── vai.php │ │ │ ├── vai_Latn.php │ │ │ ├── vai_Vaii.php │ │ │ ├── ve.php │ │ │ ├── ve_ZA.php │ │ │ ├── vi.php │ │ │ ├── vi_VN.php │ │ │ ├── vo.php │ │ │ ├── vun.php │ │ │ ├── wa.php │ │ │ ├── wa_BE.php │ │ │ ├── wae.php │ │ │ ├── wae_CH.php │ │ │ ├── wal.php │ │ │ ├── wal_ET.php │ │ │ ├── wo.php │ │ │ ├── wo_SN.php │ │ │ ├── xh.php │ │ │ ├── xh_ZA.php │ │ │ ├── xog.php │ │ │ ├── yav.php │ │ │ ├── yi.php │ │ │ ├── yi_US.php │ │ │ ├── yo.php │ │ │ ├── yo_BJ.php │ │ │ ├── yo_NG.php │ │ │ ├── yue.php │ │ │ ├── yue_HK.php │ │ │ ├── yue_Hans.php │ │ │ ├── yue_Hant.php │ │ │ ├── yuw.php │ │ │ ├── yuw_PG.php │ │ │ ├── zgh.php │ │ │ ├── zh.php │ │ │ ├── zh_CN.php │ │ │ ├── zh_HK.php │ │ │ ├── zh_Hans.php │ │ │ ├── zh_Hans_HK.php │ │ │ ├── zh_Hans_MO.php │ │ │ ├── zh_Hans_SG.php │ │ │ ├── zh_Hant.php │ │ │ ├── zh_Hant_HK.php │ │ │ ├── zh_Hant_MO.php │ │ │ ├── zh_Hant_TW.php │ │ │ ├── zh_MO.php │ │ │ ├── zh_SG.php │ │ │ ├── zh_TW.php │ │ │ ├── zh_YUE.php │ │ │ ├── zu.php │ │ │ └── zu_ZA.php │ │ │ ├── Language.php │ │ │ ├── Laravel │ │ │ └── ServiceProvider.php │ │ │ ├── List │ │ │ ├── languages.php │ │ │ └── regions.php │ │ │ ├── MessageFormatter │ │ │ └── MessageFormatterMapper.php │ │ │ ├── Month.php │ │ │ ├── PHPStan │ │ │ ├── MacroExtension.php │ │ │ └── MacroMethodReflection.php │ │ │ ├── Traits │ │ │ ├── Boundaries.php │ │ │ ├── Cast.php │ │ │ ├── Comparison.php │ │ │ ├── Converter.php │ │ │ ├── Creator.php │ │ │ ├── Date.php │ │ │ ├── DeprecatedPeriodProperties.php │ │ │ ├── Difference.php │ │ │ ├── IntervalRounding.php │ │ │ ├── IntervalStep.php │ │ │ ├── LocalFactory.php │ │ │ ├── Localization.php │ │ │ ├── Macro.php │ │ │ ├── MagicParameter.php │ │ │ ├── Mixin.php │ │ │ ├── Modifiers.php │ │ │ ├── Mutability.php │ │ │ ├── ObjectInitialisation.php │ │ │ ├── Options.php │ │ │ ├── Rounding.php │ │ │ ├── Serialization.php │ │ │ ├── StaticLocalization.php │ │ │ ├── StaticOptions.php │ │ │ ├── Test.php │ │ │ ├── Timestamp.php │ │ │ ├── ToStringFormat.php │ │ │ ├── Units.php │ │ │ └── Week.php │ │ │ ├── Translator.php │ │ │ ├── TranslatorImmutable.php │ │ │ ├── TranslatorStrongTypeInterface.php │ │ │ ├── Unit.php │ │ │ ├── WeekDay.php │ │ │ └── WrapperClock.php │ ├── psr │ │ ├── clock │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── ClockInterface.php │ │ ├── container │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── ContainerExceptionInterface.php │ │ │ │ ├── ContainerInterface.php │ │ │ │ └── NotFoundExceptionInterface.php │ │ └── simple-cache │ │ │ ├── .editorconfig │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── CacheException.php │ │ │ ├── CacheInterface.php │ │ │ └── InvalidArgumentException.php │ ├── symfony │ │ ├── clock │ │ │ ├── CHANGELOG.md │ │ │ ├── Clock.php │ │ │ ├── ClockAwareTrait.php │ │ │ ├── ClockInterface.php │ │ │ ├── DatePoint.php │ │ │ ├── LICENSE │ │ │ ├── MockClock.php │ │ │ ├── MonotonicClock.php │ │ │ ├── NativeClock.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── now.php │ │ │ ├── Test │ │ │ │ └── ClockSensitiveTrait.php │ │ │ └── composer.json │ │ ├── deprecation-contracts │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── function.php │ │ ├── http-foundation │ │ │ ├── AcceptHeader.php │ │ │ ├── AcceptHeaderItem.php │ │ │ ├── BinaryFileResponse.php │ │ │ ├── CHANGELOG.md │ │ │ ├── ChainRequestMatcher.php │ │ │ ├── Cookie.php │ │ │ ├── EventStreamResponse.php │ │ │ ├── Exception │ │ │ │ ├── BadRequestException.php │ │ │ │ ├── ConflictingHeadersException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── ExpiredSignedUriException.php │ │ │ │ ├── JsonException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── RequestExceptionInterface.php │ │ │ │ ├── SessionNotFoundException.php │ │ │ │ ├── SignedUriException.php │ │ │ │ ├── SuspiciousOperationException.php │ │ │ │ ├── UnexpectedValueException.php │ │ │ │ ├── UnsignedUriException.php │ │ │ │ └── UnverifiedSignedUriException.php │ │ │ ├── File │ │ │ │ ├── Exception │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ ├── CannotWriteFileException.php │ │ │ │ │ ├── ExtensionFileException.php │ │ │ │ │ ├── FileException.php │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ ├── FormSizeFileException.php │ │ │ │ │ ├── IniSizeFileException.php │ │ │ │ │ ├── NoFileException.php │ │ │ │ │ ├── NoTmpDirFileException.php │ │ │ │ │ ├── PartialFileException.php │ │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ │ └── UploadException.php │ │ │ │ ├── File.php │ │ │ │ ├── Stream.php │ │ │ │ └── UploadedFile.php │ │ │ ├── FileBag.php │ │ │ ├── HeaderBag.php │ │ │ ├── HeaderUtils.php │ │ │ ├── InputBag.php │ │ │ ├── IpUtils.php │ │ │ ├── JsonResponse.php │ │ │ ├── LICENSE │ │ │ ├── ParameterBag.php │ │ │ ├── README.md │ │ │ ├── RateLimiter │ │ │ │ ├── AbstractRequestRateLimiter.php │ │ │ │ ├── PeekableRequestRateLimiterInterface.php │ │ │ │ └── RequestRateLimiterInterface.php │ │ │ ├── RedirectResponse.php │ │ │ ├── Request.php │ │ │ ├── RequestMatcher │ │ │ │ ├── AttributesRequestMatcher.php │ │ │ │ ├── ExpressionRequestMatcher.php │ │ │ │ ├── HeaderRequestMatcher.php │ │ │ │ ├── HostRequestMatcher.php │ │ │ │ ├── IpsRequestMatcher.php │ │ │ │ ├── IsJsonRequestMatcher.php │ │ │ │ ├── MethodRequestMatcher.php │ │ │ │ ├── PathRequestMatcher.php │ │ │ │ ├── PortRequestMatcher.php │ │ │ │ ├── QueryParameterRequestMatcher.php │ │ │ │ └── SchemeRequestMatcher.php │ │ │ ├── RequestMatcherInterface.php │ │ │ ├── RequestStack.php │ │ │ ├── Response.php │ │ │ ├── ResponseHeaderBag.php │ │ │ ├── ServerBag.php │ │ │ ├── ServerEvent.php │ │ │ ├── Session │ │ │ │ ├── Attribute │ │ │ │ │ ├── AttributeBag.php │ │ │ │ │ └── AttributeBagInterface.php │ │ │ │ ├── Flash │ │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ │ ├── FlashBag.php │ │ │ │ │ └── FlashBagInterface.php │ │ │ │ ├── FlashBagAwareSessionInterface.php │ │ │ │ ├── Session.php │ │ │ │ ├── SessionBagInterface.php │ │ │ │ ├── SessionBagProxy.php │ │ │ │ ├── SessionFactory.php │ │ │ │ ├── SessionFactoryInterface.php │ │ │ │ ├── SessionInterface.php │ │ │ │ ├── SessionUtils.php │ │ │ │ └── Storage │ │ │ │ │ ├── Handler │ │ │ │ │ ├── AbstractSessionHandler.php │ │ │ │ │ ├── IdentityMarshaller.php │ │ │ │ │ ├── MarshallingSessionHandler.php │ │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ │ ├── MigratingSessionHandler.php │ │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ │ ├── NullSessionHandler.php │ │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ │ ├── RedisSessionHandler.php │ │ │ │ │ ├── SessionHandlerFactory.php │ │ │ │ │ └── StrictSessionHandler.php │ │ │ │ │ ├── MetadataBag.php │ │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ │ ├── MockFileSessionStorageFactory.php │ │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ │ ├── NativeSessionStorageFactory.php │ │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ │ ├── PhpBridgeSessionStorageFactory.php │ │ │ │ │ ├── Proxy │ │ │ │ │ ├── AbstractProxy.php │ │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ │ ├── SessionStorageFactoryInterface.php │ │ │ │ │ └── SessionStorageInterface.php │ │ │ ├── StreamedJsonResponse.php │ │ │ ├── StreamedResponse.php │ │ │ ├── Test │ │ │ │ └── Constraint │ │ │ │ │ ├── RequestAttributeValueSame.php │ │ │ │ │ ├── ResponseCookieValueSame.php │ │ │ │ │ ├── ResponseFormatSame.php │ │ │ │ │ ├── ResponseHasCookie.php │ │ │ │ │ ├── ResponseHasHeader.php │ │ │ │ │ ├── ResponseHeaderLocationSame.php │ │ │ │ │ ├── ResponseHeaderSame.php │ │ │ │ │ ├── ResponseIsRedirected.php │ │ │ │ │ ├── ResponseIsSuccessful.php │ │ │ │ │ ├── ResponseIsUnprocessable.php │ │ │ │ │ └── ResponseStatusCodeSame.php │ │ │ ├── UriSigner.php │ │ │ ├── UrlHelper.php │ │ │ └── composer.json │ │ ├── polyfill-mbstring │ │ │ ├── LICENSE │ │ │ ├── Mbstring.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── unidata │ │ │ │ │ ├── caseFolding.php │ │ │ │ │ ├── lowerCase.php │ │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ │ └── upperCase.php │ │ │ ├── bootstrap.php │ │ │ ├── bootstrap80.php │ │ │ └── composer.json │ │ ├── polyfill-php83 │ │ │ ├── LICENSE │ │ │ ├── Php83.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── stubs │ │ │ │ │ ├── DateError.php │ │ │ │ │ ├── DateException.php │ │ │ │ │ ├── DateInvalidOperationException.php │ │ │ │ │ ├── DateInvalidTimeZoneException.php │ │ │ │ │ ├── DateMalformedIntervalStringException.php │ │ │ │ │ ├── DateMalformedPeriodStringException.php │ │ │ │ │ ├── DateMalformedStringException.php │ │ │ │ │ ├── DateObjectError.php │ │ │ │ │ ├── DateRangeError.php │ │ │ │ │ ├── Override.php │ │ │ │ │ └── SQLite3Exception.php │ │ │ ├── bootstrap.php │ │ │ ├── bootstrap81.php │ │ │ └── composer.json │ │ ├── polyfill-php84 │ │ │ ├── LICENSE │ │ │ ├── Php84.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── stubs │ │ │ │ │ ├── Deprecated.php │ │ │ │ │ └── ReflectionConstant.php │ │ │ ├── bootstrap.php │ │ │ ├── bootstrap82.php │ │ │ └── composer.json │ │ ├── polyfill-php85 │ │ │ ├── LICENSE │ │ │ ├── Php85.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── stubs │ │ │ │ │ └── NoDiscard.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── translation-contracts │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── LocaleAwareInterface.php │ │ │ ├── README.md │ │ │ ├── Test │ │ │ │ └── TranslatorTest.php │ │ │ ├── TranslatableInterface.php │ │ │ ├── TranslatorInterface.php │ │ │ ├── TranslatorTrait.php │ │ │ └── composer.json │ │ └── translation │ │ │ ├── CHANGELOG.md │ │ │ ├── Catalogue │ │ │ ├── AbstractOperation.php │ │ │ ├── MergeOperation.php │ │ │ ├── OperationInterface.php │ │ │ └── TargetOperation.php │ │ │ ├── CatalogueMetadataAwareInterface.php │ │ │ ├── Command │ │ │ ├── TranslationLintCommand.php │ │ │ ├── TranslationPullCommand.php │ │ │ ├── TranslationPushCommand.php │ │ │ ├── TranslationTrait.php │ │ │ └── XliffLintCommand.php │ │ │ ├── DataCollector │ │ │ └── TranslationDataCollector.php │ │ │ ├── DataCollectorTranslator.php │ │ │ ├── DependencyInjection │ │ │ ├── DataCollectorTranslatorPass.php │ │ │ ├── LoggingTranslatorPass.php │ │ │ ├── TranslationDumperPass.php │ │ │ ├── TranslationExtractorPass.php │ │ │ ├── TranslatorPass.php │ │ │ └── TranslatorPathsPass.php │ │ │ ├── Dumper │ │ │ ├── CsvFileDumper.php │ │ │ ├── DumperInterface.php │ │ │ ├── FileDumper.php │ │ │ ├── IcuResFileDumper.php │ │ │ ├── IniFileDumper.php │ │ │ ├── JsonFileDumper.php │ │ │ ├── MoFileDumper.php │ │ │ ├── PhpFileDumper.php │ │ │ ├── PoFileDumper.php │ │ │ ├── QtFileDumper.php │ │ │ ├── XliffFileDumper.php │ │ │ └── YamlFileDumper.php │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── IncompleteDsnException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidResourceException.php │ │ │ ├── LogicException.php │ │ │ ├── MissingRequiredOptionException.php │ │ │ ├── NotFoundResourceException.php │ │ │ ├── ProviderException.php │ │ │ ├── ProviderExceptionInterface.php │ │ │ ├── RuntimeException.php │ │ │ └── UnsupportedSchemeException.php │ │ │ ├── Extractor │ │ │ ├── AbstractFileExtractor.php │ │ │ ├── ChainExtractor.php │ │ │ ├── ExtractorInterface.php │ │ │ ├── PhpAstExtractor.php │ │ │ └── Visitor │ │ │ │ ├── AbstractVisitor.php │ │ │ │ ├── ConstraintVisitor.php │ │ │ │ ├── TransMethodVisitor.php │ │ │ │ └── TranslatableMessageVisitor.php │ │ │ ├── Formatter │ │ │ ├── IntlFormatter.php │ │ │ ├── IntlFormatterInterface.php │ │ │ ├── MessageFormatter.php │ │ │ └── MessageFormatterInterface.php │ │ │ ├── IdentityTranslator.php │ │ │ ├── LICENSE │ │ │ ├── Loader │ │ │ ├── ArrayLoader.php │ │ │ ├── CsvFileLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── IcuDatFileLoader.php │ │ │ ├── IcuResFileLoader.php │ │ │ ├── IniFileLoader.php │ │ │ ├── JsonFileLoader.php │ │ │ ├── LoaderInterface.php │ │ │ ├── MoFileLoader.php │ │ │ ├── PhpFileLoader.php │ │ │ ├── PoFileLoader.php │ │ │ ├── QtFileLoader.php │ │ │ ├── XliffFileLoader.php │ │ │ └── YamlFileLoader.php │ │ │ ├── LocaleSwitcher.php │ │ │ ├── LoggingTranslator.php │ │ │ ├── MessageCatalogue.php │ │ │ ├── MessageCatalogueInterface.php │ │ │ ├── MetadataAwareInterface.php │ │ │ ├── Provider │ │ │ ├── AbstractProviderFactory.php │ │ │ ├── Dsn.php │ │ │ ├── FilteringProvider.php │ │ │ ├── NullProvider.php │ │ │ ├── NullProviderFactory.php │ │ │ ├── ProviderFactoryInterface.php │ │ │ ├── ProviderInterface.php │ │ │ ├── TranslationProviderCollection.php │ │ │ └── TranslationProviderCollectionFactory.php │ │ │ ├── PseudoLocalizationTranslator.php │ │ │ ├── README.md │ │ │ ├── Reader │ │ │ ├── TranslationReader.php │ │ │ └── TranslationReaderInterface.php │ │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── translation-status.php │ │ │ ├── data │ │ │ │ └── parents.json │ │ │ ├── functions.php │ │ │ └── schemas │ │ │ │ ├── xliff-core-1.2-transitional.xsd │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ └── xml.xsd │ │ │ ├── Test │ │ │ ├── AbstractProviderFactoryTestCase.php │ │ │ ├── IncompleteDsnTestTrait.php │ │ │ ├── ProviderFactoryTestCase.php │ │ │ └── ProviderTestCase.php │ │ │ ├── TranslatableMessage.php │ │ │ ├── Translator.php │ │ │ ├── TranslatorBag.php │ │ │ ├── TranslatorBagInterface.php │ │ │ ├── Util │ │ │ ├── ArrayConverter.php │ │ │ └── XliffUtils.php │ │ │ ├── Writer │ │ │ ├── TranslationWriter.php │ │ │ └── TranslationWriterInterface.php │ │ │ └── composer.json │ ├── voku │ │ └── portable-ascii │ │ │ ├── .deepsource.toml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── voku │ │ │ └── helper │ │ │ ├── ASCII.php │ │ │ └── data │ │ │ ├── ascii_by_languages.php │ │ │ ├── ascii_extras_by_languages.php │ │ │ ├── ascii_language_max_key.php │ │ │ ├── ascii_ord.php │ │ │ ├── x000.php │ │ │ ├── x001.php │ │ │ ├── x002.php │ │ │ ├── x003.php │ │ │ ├── x004.php │ │ │ ├── x005.php │ │ │ ├── x006.php │ │ │ ├── x007.php │ │ │ ├── x009.php │ │ │ ├── x00a.php │ │ │ ├── x00b.php │ │ │ ├── x00c.php │ │ │ ├── x00d.php │ │ │ ├── x00e.php │ │ │ ├── x00f.php │ │ │ ├── x010.php │ │ │ ├── x011.php │ │ │ ├── x012.php │ │ │ ├── x013.php │ │ │ ├── x014.php │ │ │ ├── x015.php │ │ │ ├── x016.php │ │ │ ├── x017.php │ │ │ ├── x018.php │ │ │ ├── x01d.php │ │ │ ├── x01e.php │ │ │ ├── x01f.php │ │ │ ├── x020.php │ │ │ ├── x021.php │ │ │ ├── x022.php │ │ │ ├── x023.php │ │ │ ├── x024.php │ │ │ ├── x025.php │ │ │ ├── x026.php │ │ │ ├── x027.php │ │ │ ├── x028.php │ │ │ ├── x029.php │ │ │ ├── x02a.php │ │ │ ├── x02c.php │ │ │ ├── x02e.php │ │ │ ├── x02f.php │ │ │ ├── x030.php │ │ │ ├── x031.php │ │ │ ├── x032.php │ │ │ ├── x033.php │ │ │ ├── x04d.php │ │ │ ├── x04e.php │ │ │ ├── x04f.php │ │ │ ├── x050.php │ │ │ ├── x051.php │ │ │ ├── x052.php │ │ │ ├── x053.php │ │ │ ├── x054.php │ │ │ ├── x055.php │ │ │ ├── x056.php │ │ │ ├── x057.php │ │ │ ├── x058.php │ │ │ ├── x059.php │ │ │ ├── x05a.php │ │ │ ├── x05b.php │ │ │ ├── x05c.php │ │ │ ├── x05d.php │ │ │ ├── x05e.php │ │ │ ├── x05f.php │ │ │ ├── x060.php │ │ │ ├── x061.php │ │ │ ├── x062.php │ │ │ ├── x063.php │ │ │ ├── x064.php │ │ │ ├── x065.php │ │ │ ├── x066.php │ │ │ ├── x067.php │ │ │ ├── x068.php │ │ │ ├── x069.php │ │ │ ├── x06a.php │ │ │ ├── x06b.php │ │ │ ├── x06c.php │ │ │ ├── x06d.php │ │ │ ├── x06e.php │ │ │ ├── x06f.php │ │ │ ├── x070.php │ │ │ ├── x071.php │ │ │ ├── x072.php │ │ │ ├── x073.php │ │ │ ├── x074.php │ │ │ ├── x075.php │ │ │ ├── x076.php │ │ │ ├── x077.php │ │ │ ├── x078.php │ │ │ ├── x079.php │ │ │ ├── x07a.php │ │ │ ├── x07b.php │ │ │ ├── x07c.php │ │ │ ├── x07d.php │ │ │ ├── x07e.php │ │ │ ├── x07f.php │ │ │ ├── x080.php │ │ │ ├── x081.php │ │ │ ├── x082.php │ │ │ ├── x083.php │ │ │ ├── x084.php │ │ │ ├── x085.php │ │ │ ├── x086.php │ │ │ ├── x087.php │ │ │ ├── x088.php │ │ │ ├── x089.php │ │ │ ├── x08a.php │ │ │ ├── x08b.php │ │ │ ├── x08c.php │ │ │ ├── x08d.php │ │ │ ├── x08e.php │ │ │ ├── x08f.php │ │ │ ├── x090.php │ │ │ ├── x091.php │ │ │ ├── x092.php │ │ │ ├── x093.php │ │ │ ├── x094.php │ │ │ ├── x095.php │ │ │ ├── x096.php │ │ │ ├── x097.php │ │ │ ├── x098.php │ │ │ ├── x099.php │ │ │ ├── x09a.php │ │ │ ├── x09b.php │ │ │ ├── x09c.php │ │ │ ├── x09d.php │ │ │ ├── x09e.php │ │ │ ├── x09f.php │ │ │ ├── x0a0.php │ │ │ ├── x0a1.php │ │ │ ├── x0a2.php │ │ │ ├── x0a3.php │ │ │ ├── x0a4.php │ │ │ ├── x0ac.php │ │ │ ├── x0ad.php │ │ │ ├── x0ae.php │ │ │ ├── x0af.php │ │ │ ├── x0b0.php │ │ │ ├── x0b1.php │ │ │ ├── x0b2.php │ │ │ ├── x0b3.php │ │ │ ├── x0b4.php │ │ │ ├── x0b5.php │ │ │ ├── x0b6.php │ │ │ ├── x0b7.php │ │ │ ├── x0b8.php │ │ │ ├── x0b9.php │ │ │ ├── x0ba.php │ │ │ ├── x0bb.php │ │ │ ├── x0bc.php │ │ │ ├── x0bd.php │ │ │ ├── x0be.php │ │ │ ├── x0bf.php │ │ │ ├── x0c0.php │ │ │ ├── x0c1.php │ │ │ ├── x0c2.php │ │ │ ├── x0c3.php │ │ │ ├── x0c4.php │ │ │ ├── x0c5.php │ │ │ ├── x0c6.php │ │ │ ├── x0c7.php │ │ │ ├── x0c8.php │ │ │ ├── x0c9.php │ │ │ ├── x0ca.php │ │ │ ├── x0cb.php │ │ │ ├── x0cc.php │ │ │ ├── x0cd.php │ │ │ ├── x0ce.php │ │ │ ├── x0cf.php │ │ │ ├── x0d0.php │ │ │ ├── x0d1.php │ │ │ ├── x0d2.php │ │ │ ├── x0d3.php │ │ │ ├── x0d4.php │ │ │ ├── x0d5.php │ │ │ ├── x0d6.php │ │ │ ├── x0d7.php │ │ │ ├── x0f9.php │ │ │ ├── x0fa.php │ │ │ ├── x0fb.php │ │ │ ├── x0fc.php │ │ │ ├── x0fd.php │ │ │ ├── x0fe.php │ │ │ ├── x0ff.php │ │ │ ├── x1d4.php │ │ │ ├── x1d5.php │ │ │ ├── x1d6.php │ │ │ ├── x1d7.php │ │ │ └── x1f1.php │ └── webklex │ │ └── php-imap │ │ ├── .github │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ ├── feature_request.md │ │ │ └── general-help-request.md │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ └── dovecot_setup.sh │ │ └── workflows │ │ │ └── tests.yaml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── _config.yml │ │ ├── composer.json │ │ ├── examples │ │ ├── custom_attachment_mask.php │ │ ├── custom_message_mask.php │ │ ├── folder_structure.blade.php │ │ └── message_table.blade.php │ │ ├── phpunit.xml.dist │ │ ├── src │ │ ├── Address.php │ │ ├── Attachment.php │ │ ├── Attribute.php │ │ ├── Client.php │ │ ├── ClientManager.php │ │ ├── Config.php │ │ ├── Connection │ │ │ └── Protocols │ │ │ │ ├── ImapProtocol.php │ │ │ │ ├── LegacyProtocol.php │ │ │ │ ├── Protocol.php │ │ │ │ ├── ProtocolInterface.php │ │ │ │ └── Response.php │ │ ├── Decoder │ │ │ ├── AttachmentDecoder.php │ │ │ ├── Decoder.php │ │ │ ├── DecoderInterface.php │ │ │ ├── HeaderDecoder.php │ │ │ └── MessageDecoder.php │ │ ├── EncodingAliases.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 │ │ │ ├── DecoderNotFoundException.php │ │ │ ├── EventNotFoundException.php │ │ │ ├── FolderFetchingException.php │ │ │ ├── GetMessagesFailedException.php │ │ │ ├── ImapBadRequestException.php │ │ │ ├── ImapServerErrorException.php │ │ │ ├── InvalidMessageDateException.php │ │ │ ├── InvalidWhereQueryCriteriaException.php │ │ │ ├── MaskNotFoundException.php │ │ │ ├── MessageContentFetchingException.php │ │ │ ├── MessageFlagException.php │ │ │ ├── MessageHeaderFetchingException.php │ │ │ ├── MessageNotFoundException.php │ │ │ ├── MessageSearchValidationException.php │ │ │ ├── MessageSizeFetchingException.php │ │ │ ├── MethodNotFoundException.php │ │ │ ├── MethodNotSupportedException.php │ │ │ ├── NotSupportedCapabilityException.php │ │ │ ├── ProtocolNotSupportedException.php │ │ │ ├── ResponseException.php │ │ │ ├── RuntimeException.php │ │ │ └── SpoofingAttemptDetectedException.php │ │ ├── Folder.php │ │ ├── Header.php │ │ ├── IMAP.php │ │ ├── Message.php │ │ ├── Part.php │ │ ├── Query │ │ │ ├── Query.php │ │ │ └── WhereQuery.php │ │ ├── Structure.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 │ │ └── tests │ │ ├── AddressTest.php │ │ ├── AttachmentTest.php │ │ ├── AttributeTest.php │ │ ├── ClientManagerTest.php │ │ ├── ClientTest.php │ │ ├── HeaderTest.php │ │ ├── ImapProtocolTest.php │ │ ├── MessageTest.php │ │ ├── PartTest.php │ │ ├── StructureTest.php │ │ ├── fixtures │ │ ├── AttachmentEncodedFilenameTest.php │ │ ├── AttachmentLongFilenameTest.php │ │ ├── AttachmentNoDispositionTest.php │ │ ├── BccTest.php │ │ ├── BooleanDecodedContentTest.php │ │ ├── DateTemplateTest.php │ │ ├── EmailAddressTest.php │ │ ├── EmbeddedEmailTest.php │ │ ├── EmbeddedEmailWithoutContentDispositionEmbeddedTest.php │ │ ├── EmbeddedEmailWithoutContentDispositionTest.php │ │ ├── ExampleBounceTest.php │ │ ├── FixtureTestCase.php │ │ ├── FourNestedEmailsTest.php │ │ ├── GbkCharsetTest.php │ │ ├── HtmlOnlyTest.php │ │ ├── ImapMimeHeaderDecodeReturnsFalseTest.php │ │ ├── InlineAttachmentTest.php │ │ ├── KsC56011987HeadersTest.php │ │ ├── MailThatIsAttachmentTest.php │ │ ├── MissingDateTest.php │ │ ├── MissingFromTest.php │ │ ├── MixedFilenameTest.php │ │ ├── MultipartWithoutBodyTest.php │ │ ├── MultipleHtmlPartsAndAttachmentsTest.php │ │ ├── MultipleNestedAttachmentsTest.php │ │ ├── NestesEmbeddedWithAttachmentTest.php │ │ ├── NullContentCharsetTest.php │ │ ├── PecTest.php │ │ ├── PlainOnlyTest.php │ │ ├── PlainTextAttachmentTest.php │ │ ├── ReferencesTest.php │ │ ├── SimpleMultipartTest.php │ │ ├── StructuredWithAttachmentTest.php │ │ ├── UndefinedCharsetHeaderTest.php │ │ ├── UndisclosedRecipientsMinusTest.php │ │ ├── UndisclosedRecipientsSpaceTest.php │ │ ├── UndisclosedRecipientsTest.php │ │ ├── UnknownEncodingTest.php │ │ ├── WithoutCharsetPlainOnlyTest.php │ │ └── WithoutCharsetSimpleMultipartTest.php │ │ ├── issues │ │ ├── Issue275Test.php │ │ ├── Issue355Test.php │ │ ├── Issue379Test.php │ │ ├── Issue382Test.php │ │ ├── Issue383Test.php │ │ ├── Issue393Test.php │ │ ├── Issue401Test.php │ │ ├── Issue407Test.php │ │ ├── Issue40Test.php │ │ ├── Issue410Test.php │ │ ├── Issue412Test.php │ │ ├── Issue413Test.php │ │ ├── Issue414Test.php │ │ ├── Issue420Test.php │ │ ├── Issue462Test.php │ │ ├── Issue469Test.php │ │ ├── Issue511Test.php │ │ └── Issue544Test.php │ │ ├── live │ │ ├── ClientTest.php │ │ ├── FolderTest.php │ │ ├── LegacyTest.php │ │ ├── LiveMailboxTestCase.php │ │ ├── MessageTest.php │ │ └── QueryTest.php │ │ └── messages │ │ ├── 1366671050@github.com.eml │ │ ├── attachment_encoded_filename.eml │ │ ├── attachment_long_filename.eml │ │ ├── attachment_no_disposition.eml │ │ ├── bcc.eml │ │ ├── boolean_decoded_content.eml │ │ ├── date-template.eml │ │ ├── email_address.eml │ │ ├── embedded_email.eml │ │ ├── embedded_email_without_content_disposition-embedded.eml │ │ ├── embedded_email_without_content_disposition.eml │ │ ├── example_attachment.eml │ │ ├── example_bounce.eml │ │ ├── four_nested_emails.eml │ │ ├── gbk_charset.eml │ │ ├── html_only.eml │ │ ├── imap_mime_header_decode_returns_false.eml │ │ ├── inline_attachment.eml │ │ ├── issue-275-2.eml │ │ ├── issue-275.eml │ │ ├── issue-348.eml │ │ ├── issue-382.eml │ │ ├── issue-40.eml │ │ ├── issue-401.eml │ │ ├── issue-410.eml │ │ ├── issue-410b.eml │ │ ├── issue-410symbols.eml │ │ ├── issue-412.eml │ │ ├── issue-413.eml │ │ ├── issue-414.eml │ │ ├── issue-462.eml │ │ ├── issue-511.eml │ │ ├── issue-544.eml │ │ ├── ks_c_5601-1987_headers.eml │ │ ├── mail_that_is_attachment.eml │ │ ├── missing_date.eml │ │ ├── missing_from.eml │ │ ├── mixed_filename.eml │ │ ├── multipart_without_body.eml │ │ ├── multiple_html_parts_and_attachments.eml │ │ ├── multiple_nested_attachments.eml │ │ ├── nestes_embedded_with_attachment.eml │ │ ├── null_content_charset.eml │ │ ├── pec.eml │ │ ├── plain.eml │ │ ├── plain_only.eml │ │ ├── plain_text_attachment.eml │ │ ├── references.eml │ │ ├── simple_multipart.eml │ │ ├── structured_with_attachment.eml │ │ ├── thread_my_topic.eml │ │ ├── thread_re_my_topic.eml │ │ ├── thread_unrelated.eml │ │ ├── undefined_charset_header.eml │ │ ├── undisclosed_recipients.eml │ │ ├── undisclosed_recipients_minus.eml │ │ ├── undisclosed_recipients_space.eml │ │ ├── unknown_encoding.eml │ │ ├── without_charset_plain_only.eml │ │ └── without_charset_simple_multipart.eml └── zapcal │ ├── README.md │ ├── includes │ ├── date.php │ ├── framework.php │ ├── ical.php │ ├── index.html │ ├── recurringdate.php │ └── timezone.php │ └── zapcallib.php ├── post ├── logout.php └── misc.php ├── robots.txt ├── scripts ├── .htaccess ├── custom │ └── readme.php ├── setup_cli.php └── update_cli.php ├── setup ├── custom │ └── readme.php ├── index.php └── setup_functions.php └── uploads ├── .htaccess ├── clients └── index.php ├── expenses └── index.php ├── index.php ├── settings └── index.php ├── tickets └── index.php ├── tmp └── index.php └── users └── index.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://services.itflow.org"] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/.github/ISSUE_TEMPLATE/support.md -------------------------------------------------------------------------------- /.github/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/.github/dash.png -------------------------------------------------------------------------------- /.github/readme.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/.github/readme.gif -------------------------------------------------------------------------------- /.github/workflows/dbsql-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/.github/workflows/dbsql-lint.yml -------------------------------------------------------------------------------- /.github/workflows/first-interaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/.github/workflows/first-interaction.yml -------------------------------------------------------------------------------- /.github/workflows/php-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/.github/workflows/php-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/.htaccess -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/SECURITY.md -------------------------------------------------------------------------------- /admin/ai_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/ai_model.php -------------------------------------------------------------------------------- /admin/ai_provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/ai_provider.php -------------------------------------------------------------------------------- /admin/api_keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/api_keys.php -------------------------------------------------------------------------------- /admin/app_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/app_log.php -------------------------------------------------------------------------------- /admin/audit_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/audit_log.php -------------------------------------------------------------------------------- /admin/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/backup.php -------------------------------------------------------------------------------- /admin/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/category.php -------------------------------------------------------------------------------- /admin/contract_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/contract_template.php -------------------------------------------------------------------------------- /admin/custom/readme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/custom/readme.php -------------------------------------------------------------------------------- /admin/custom_link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/custom_link.php -------------------------------------------------------------------------------- /admin/database_updates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/database_updates.php -------------------------------------------------------------------------------- /admin/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/debug.php -------------------------------------------------------------------------------- /admin/document_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/document_template.php -------------------------------------------------------------------------------- /admin/document_template_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/document_template_details.php -------------------------------------------------------------------------------- /admin/identity_provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/identity_provider.php -------------------------------------------------------------------------------- /admin/includes/inc_all_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/includes/inc_all_admin.php -------------------------------------------------------------------------------- /admin/includes/side_nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow/HEAD/admin/includes/side_nav.php -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- 1 |