├── .gitattributes ├── .gitignore ├── .htaccess ├── Gruntfile.js ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── composer.json ├── composer.lock ├── config │ ├── app-config.php │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── email.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Authentication.php │ ├── Check_emails.php │ ├── Clients.php │ ├── Consent.php │ ├── Contract.php │ ├── Cron.php │ ├── Download.php │ ├── Estimate.php │ ├── Forms.php │ ├── Invoice.php │ ├── Knowledge_base.php │ ├── Migration.php │ ├── Privacy_policy.php │ ├── Proposal.php │ ├── Subscription.php │ ├── Terms_and_conditions.php │ ├── Verification.php │ ├── admin │ │ ├── Announcements.php │ │ ├── Authentication.php │ │ ├── Auto_update.php │ │ ├── Clients.php │ │ ├── Contracts.php │ │ ├── Credit_notes.php │ │ ├── Currencies.php │ │ ├── Custom_fields.php │ │ ├── Dashboard.php │ │ ├── Departments.php │ │ ├── Emails.php │ │ ├── Estimates.php │ │ ├── Expenses.php │ │ ├── Gdpr.php │ │ ├── Invoice_items.php │ │ ├── Invoices.php │ │ ├── Knowledge_base.php │ │ ├── Leads.php │ │ ├── Misc.php │ │ ├── Mods.php │ │ ├── Newsfeed.php │ │ ├── Paymentmodes.php │ │ ├── Payments.php │ │ ├── Projects.php │ │ ├── Proposals.php │ │ ├── Reports.php │ │ ├── Roles.php │ │ ├── Settings.php │ │ ├── Spam_filters.php │ │ ├── Staff.php │ │ ├── Subscriptions.php │ │ ├── Tasks.php │ │ ├── Taxes.php │ │ ├── Tickets.php │ │ ├── Todo.php │ │ ├── Utilities.php │ │ └── index.html │ ├── gateways │ │ ├── Authorize_aim.php │ │ ├── Authorize_sim.php │ │ ├── Braintree.php │ │ ├── Instamojo.php │ │ ├── Mollie.php │ │ ├── Paypal.php │ │ ├── Paypal_checkout.php │ │ ├── Payu_money.php │ │ ├── Stripe.php │ │ ├── Stripe_ideal.php │ │ ├── Two_checkout.php │ │ └── index.html │ └── index.html ├── core │ ├── AdminController.php │ ├── Admin_controller.php │ ├── App_Controller.php │ ├── App_Loader.php │ ├── App_Model.php │ ├── App_Router.php │ ├── App_Security.php │ ├── CRM_Controller.php │ ├── CRM_Model.php │ ├── ClientsController.php │ ├── Clients_controller.php │ └── index.html ├── helpers │ ├── admin_helper.php │ ├── app_email_helper.php │ ├── app_html_helper.php │ ├── assets_helper.php │ ├── clients_helper.php │ ├── contracts_helper.php │ ├── core_hooks_helper.php │ ├── countries_helper.php │ ├── credit_notes_helper.php │ ├── custom_fields_helper.php │ ├── database_helper.php │ ├── datatables_helper.php │ ├── deprecated_helper.php │ ├── email_templates_helper.php │ ├── emails_tracking_helper.php │ ├── estimates_helper.php │ ├── fields_helper.php │ ├── files_helper.php │ ├── func_helper.php │ ├── gdpr_helper.php │ ├── general_helper.php │ ├── index.html │ ├── invoices_helper.php │ ├── leads_helper.php │ ├── menu_helper.php │ ├── misc_helper.php │ ├── modules_helper.php │ ├── payment_gateways_helper.php │ ├── pdf_helper.php │ ├── pre_query_data_formatters_helper.php │ ├── projects_helper.php │ ├── proposals_helper.php │ ├── relation_helper.php │ ├── sales_helper.php │ ├── settings_helper.php │ ├── sms_helper.php │ ├── staff_helper.php │ ├── subscriptions_helper.php │ ├── tags_helper.php │ ├── tasks_helper.php │ ├── template_helper.php │ ├── themes_helper.php │ ├── tickets_helper.php │ ├── upload_helper.php │ ├── user_meta_helper.php │ └── widgets_helper.php ├── hooks │ ├── App_Autoloader.php │ ├── BadUserAgentBlock.php │ ├── BadUserAgents.php │ ├── EloquentHook.php │ ├── InitHook.php │ └── index.html ├── index.html ├── language │ ├── bulgarian │ │ ├── bulgarian_lang.php │ │ └── bulgarian_num_words_lang.php │ ├── catalan │ │ ├── catalan_lang.php │ │ └── catalan_num_words_lang.php │ ├── chinese │ │ ├── chinese_lang.php │ │ └── chinese_num_words_lang.php │ ├── czech │ │ ├── czech_lang.php │ │ └── czech_num_words_lang.php │ ├── dutch │ │ ├── dutch_lang.php │ │ └── dutch_num_words_lang.php │ ├── english │ │ ├── english_lang.php │ │ └── english_num_words_lang.php │ ├── french │ │ ├── french_lang.php │ │ └── french_num_words_lang.php │ ├── german │ │ ├── german_lang.php │ │ └── german_num_words_lang.php │ ├── greek │ │ ├── greek_lang.php │ │ └── greek_num_words_lang.php │ ├── index.html │ ├── indonesia │ │ ├── indonesia_lang.php │ │ └── indonesia_num_words_lang.php │ ├── italian │ │ ├── italian_lang.php │ │ └── italian_num_words_lang.php │ ├── japanese │ │ ├── japanese_lang.php │ │ └── japanese_num_words_lang.php │ ├── persian │ │ ├── persian_lang.php │ │ └── persian_num_words_lang.php │ ├── polish │ │ ├── polish_lang.php │ │ └── polish_num_words_lang.php │ ├── portuguese │ │ ├── portuguese_lang.php │ │ └── portuguese_num_words_lang.php │ ├── portuguese_br │ │ ├── portuguese_br_lang.php │ │ └── portuguese_br_num_words_lang.php │ ├── romanian │ │ ├── romanian_lang.php │ │ └── romanian_num_words_lang.php │ ├── russian │ │ ├── russian_lang.php │ │ └── russian_num_words_lang.php │ ├── slovak │ │ ├── slovak_lang.php │ │ └── slovak_num_words_lang.php │ ├── spanish │ │ ├── spanish_lang.php │ │ └── spanish_num_words_lang.php │ ├── swedish │ │ ├── swedish_lang.php │ │ └── swedish_num_words_lang.php │ ├── turkish │ │ ├── turkish_lang.php │ │ └── turkish_num_words_lang.php │ └── vietnamese │ │ ├── vietnamese_lang.php │ │ └── vietnamese_num_words_lang.php ├── libraries │ ├── App.php │ ├── App_Email.php │ ├── App_Form_validation.php │ ├── App_bulk_pdf_export.php │ ├── App_clients_area_constructor.php │ ├── App_items_table.php │ ├── App_items_table_template.php │ ├── App_mailer.php │ ├── App_menu.php │ ├── App_module_installer.php │ ├── App_module_migration.php │ ├── App_modules.php │ ├── App_number_to_word.php │ ├── App_object_cache.php │ ├── App_pusher.php │ ├── App_tabs.php │ ├── App_tags.php │ ├── Stripe_core.php │ ├── Stripe_subscriptions.php │ ├── assets │ │ ├── App_assets.php │ │ ├── App_css.php │ │ ├── App_scripts.php │ │ └── index.html │ ├── gateways │ │ ├── App_gateway.php │ │ ├── Authorize_aim_gateway.php │ │ ├── Authorize_sim_gateway.php │ │ ├── Instamojo_gateway.php │ │ ├── Mollie_gateway.php │ │ ├── Paypal_braintree_gateway.php │ │ ├── Paypal_checkout_gateway.php │ │ ├── Paypal_gateway.php │ │ ├── Payu_money_gateway.php │ │ ├── Stripe_gateway.php │ │ ├── Stripe_ideal_gateway.php │ │ ├── Two_checkout_gateway.php │ │ └── index.html │ ├── gdpr │ │ ├── Gdpr_contact.php │ │ ├── Gdpr_contracts.php │ │ ├── Gdpr_credit_notes.php │ │ ├── Gdpr_estimates.php │ │ ├── Gdpr_expenses.php │ │ ├── Gdpr_invoices.php │ │ ├── Gdpr_lead.php │ │ ├── Gdpr_projects.php │ │ ├── Gdpr_proposals.php │ │ ├── Gdpr_subscriptions.php │ │ ├── Gdpr_tickets.php │ │ └── index.html │ ├── import │ │ ├── App_import.php │ │ ├── Import_customers.php │ │ ├── Import_items.php │ │ ├── Import_leads.php │ │ └── index.html │ ├── index.html │ ├── mails │ │ ├── App_mail_template.php │ │ ├── Contract_comment_to_customer.php │ │ ├── Contract_comment_to_staff.php │ │ ├── Contract_expiration_reminder_to_customer.php │ │ ├── Contract_expiration_reminder_to_staff.php │ │ ├── Contract_send_to_customer.php │ │ ├── Contract_signed_to_staff.php │ │ ├── Credit_note_send_to_customer.php │ │ ├── Customer_contact_forgot_password.php │ │ ├── Customer_contact_password_resetted.php │ │ ├── Customer_contact_set_password.php │ │ ├── Customer_contact_verification.php │ │ ├── Customer_created_welcome_mail.php │ │ ├── Customer_new_registration_to_admins.php │ │ ├── Customer_profile_uploaded_file_to_staff.php │ │ ├── Customer_registration_confirmed.php │ │ ├── Customer_statement.php │ │ ├── Estimate_accepted_to_customer.php │ │ ├── Estimate_accepted_to_staff.php │ │ ├── Estimate_declined_to_staff.php │ │ ├── Estimate_expiration_reminder.php │ │ ├── Estimate_send_to_customer.php │ │ ├── Estimate_send_to_customer_already_sent.php │ │ ├── Gdpr_removal_request_by_customer.php │ │ ├── Gdpr_removal_request_by_lead.php │ │ ├── Invoice_overdue_notice.php │ │ ├── Invoice_payment_recorded_to_customer.php │ │ ├── Invoice_payment_recorded_to_staff.php │ │ ├── Invoice_send_to_customer.php │ │ ├── Invoice_send_to_customer_already_sent.php │ │ ├── Lead_assigned.php │ │ ├── Lead_web_form_submitted.php │ │ ├── Project_created_to_customer.php │ │ ├── Project_discussion_created_to_customer.php │ │ ├── Project_discussion_created_to_staff.php │ │ ├── Project_file_to_customer.php │ │ ├── Project_file_to_staff.php │ │ ├── Project_marked_as_finished_to_customer.php │ │ ├── Project_new_discussion_comment_to_customer.php │ │ ├── Project_new_discussion_comment_to_staff.php │ │ ├── Project_staff_added_as_member.php │ │ ├── Proposal_accepted_to_customer.php │ │ ├── Proposal_accepted_to_staff.php │ │ ├── Proposal_comment_to_customer.php │ │ ├── Proposal_comment_to_staff.php │ │ ├── Proposal_declined_to_staff.php │ │ ├── Proposal_expiration_reminder.php │ │ ├── Proposal_send_to_customer.php │ │ ├── Staff_created.php │ │ ├── Staff_event_notification.php │ │ ├── Staff_forgot_password.php │ │ ├── Staff_password_resetted.php │ │ ├── Staff_reminder.php │ │ ├── Staff_two_factor_auth_key.php │ │ ├── Subscription_cancelled_to_customer.php │ │ ├── Subscription_customer_subscribed_to_staff.php │ │ ├── Subscription_payment_failed_to_customer.php │ │ ├── Subscription_payment_requires_action.php │ │ ├── Subscription_payment_succeeded.php │ │ ├── Subscription_send_to_customer.php │ │ ├── Task_added_as_follower_to_staff.php │ │ ├── Task_assigned_to_staff.php │ │ ├── Task_deadline_reminder_to_staff.php │ │ ├── Task_new_attachment_to_customer.php │ │ ├── Task_new_attachment_to_staff.php │ │ ├── Task_new_comment_to_customer.php │ │ ├── Task_new_comment_to_staff.php │ │ ├── Task_status_changed_to_customer.php │ │ ├── Task_status_changed_to_staff.php │ │ ├── Ticket_assigned_to_staff.php │ │ ├── Ticket_auto_close_to_customer.php │ │ ├── Ticket_autoresponse.php │ │ ├── Ticket_created_to_customer.php │ │ ├── Ticket_created_to_staff.php │ │ ├── Ticket_new_reply_to_customer.php │ │ ├── Ticket_new_reply_to_staff.php │ │ ├── index.html │ │ └── traits │ │ │ └── TicketTemplate.php │ ├── merge_fields │ │ ├── App_merge_fields.php │ │ ├── Client_merge_fields.php │ │ ├── Contract_merge_fields.php │ │ ├── Credit_note_merge_fields.php │ │ ├── Estimate_merge_fields.php │ │ ├── Event_merge_fields.php │ │ ├── Invoice_merge_fields.php │ │ ├── Leads_merge_fields.php │ │ ├── Other_merge_fields.php │ │ ├── Projects_merge_fields.php │ │ ├── Proposals_merge_fields.php │ │ ├── Staff_merge_fields.php │ │ ├── Subscriptions_merge_fields.php │ │ ├── Tasks_merge_fields.php │ │ ├── Ticket_merge_fields.php │ │ └── index.html │ ├── pdf │ │ ├── App_pdf.php │ │ ├── Contract_pdf.php │ │ ├── Credit_note_pdf.php │ │ ├── Estimate_pdf.php │ │ ├── Invoice_pdf.php │ │ ├── PDF_Signature.php │ │ ├── Payment_pdf.php │ │ ├── Project_data_pdf.php │ │ ├── Proposal_pdf.php │ │ ├── Statement_pdf.php │ │ └── index.html │ └── sms │ │ ├── App_sms.php │ │ ├── Sms_clickatell.php │ │ ├── Sms_msg91.php │ │ ├── Sms_twilio.php │ │ └── index.html ├── logs │ └── index.html ├── migrations │ ├── 101_version_101.php │ ├── 102_version_102.php │ ├── 103_version_103.php │ ├── 104_version_104.php │ ├── 105_version_105.php │ ├── 106_version_106.php │ ├── 107_version_107.php │ ├── 108_version_108.php │ ├── 109_version_109.php │ ├── 110_version_110.php │ ├── 111_version_111.php │ ├── 112_version_112.php │ ├── 113_version_113.php │ ├── 114_version_114.php │ ├── 115_version_115.php │ ├── 116_version_116.php │ ├── 117_version_117.php │ ├── 118_version_118.php │ ├── 119_version_119.php │ ├── 120_version_120.php │ ├── 121_version_121.php │ ├── 122_version_122.php │ ├── 123_version_123.php │ ├── 124_version_124.php │ ├── 125_version_125.php │ ├── 126_version_126.php │ ├── 127_version_127.php │ ├── 128_version_128.php │ ├── 129_version_129.php │ ├── 130_version_130.php │ ├── 131_version_131.php │ ├── 132_version_132.php │ ├── 133_version_133.php │ ├── 134_version_134.php │ ├── 135_version_135.php │ ├── 136_version_136.php │ ├── 137_version_137.php │ ├── 138_version_138.php │ ├── 139_version_139.php │ ├── 140_version_140.php │ ├── 141_version_141.php │ ├── 142_version_142.php │ ├── 143_version_143.php │ ├── 144_version_144.php │ ├── 145_version_145.php │ ├── 146_version_146.php │ ├── 147_version_147.php │ ├── 148_version_148.php │ ├── 149_version_149.php │ ├── 150_version_150.php │ ├── 151_version_151.php │ ├── 152_version_152.php │ ├── 153_version_153.php │ ├── 154_version_154.php │ ├── 155_version_155.php │ ├── 156_version_156.php │ ├── 157_version_157.php │ ├── 158_version_158.php │ ├── 159_version_159.php │ ├── 160_version_160.php │ ├── 161_version_161.php │ ├── 162_version_162.php │ ├── 163_version_163.php │ ├── 164_version_164.php │ ├── 165_version_165.php │ ├── 166_version_166.php │ ├── 167_version_167.php │ ├── 168_version_168.php │ ├── 169_version_169.php │ ├── 170_version_170.php │ ├── 171_version_171.php │ ├── 172_version_172.php │ ├── 173_version_173.php │ ├── 174_version_174.php │ ├── 175_version_175.php │ ├── 176_version_176.php │ ├── 177_version_177.php │ ├── 178_version_178.php │ ├── 179_version_179.php │ ├── 180_version_180.php │ ├── 181_version_181.php │ ├── 182_version_182.php │ ├── 183_version_183.php │ ├── 184_version_184.php │ ├── 185_version_185.php │ ├── 186_version_186.php │ ├── 187_version_187.php │ ├── 188_version_188.php │ ├── 189_version_189.php │ ├── 190_version_190.php │ ├── 191_version_191.php │ ├── 192_version_192.php │ ├── 193_version_193.php │ ├── 194_version_194.php │ ├── 195_version_195.php │ ├── 196_version_196.php │ ├── 197_version_197.php │ ├── 198_version_198.php │ ├── 199_version_199.php │ ├── 200_version_200.php │ ├── 201_version_201.php │ ├── 202_version_202.php │ ├── 203_version_203.php │ ├── 204_version_204.php │ ├── 205_version_205.php │ ├── 206_version_206.php │ ├── 207_version_207.php │ ├── 208_version_208.php │ ├── 209_version_209.php │ ├── 210_version_210.php │ ├── 211_version_211.php │ ├── 212_version_212.php │ ├── 213_version_213.php │ ├── 214_version_214.php │ ├── 215_version_215.php │ ├── 216_version_216.php │ ├── 217_version_217.php │ ├── 218_version_218.php │ ├── 219_version_219.php │ ├── 220_version_220.php │ ├── 221_version_221.php │ ├── 222_version_222.php │ ├── 223_version_223.php │ ├── 224_version_224.php │ ├── 225_version_225.php │ ├── 226_version_226.php │ ├── 227_version_227.php │ ├── 228_version_228.php │ ├── 229_version_229.php │ ├── 230_version_230.php │ ├── 231_version_231.php │ ├── 232_version_232.php │ ├── 233_version_233.php │ ├── 234_version_234.php │ ├── 235_version_235.php │ ├── 236_version_236.php │ ├── 237_version_237.php │ ├── 238_version_238.php │ ├── 239_version_239.php │ ├── 240_version_240.php │ └── index.html ├── models │ ├── Announcements_model.php │ ├── Authentication_model.php │ ├── Client_groups_model.php │ ├── Client_vault_entries_model.php │ ├── Clients_model.php │ ├── Contract_types_model.php │ ├── Contracts_model.php │ ├── Credit_notes_model.php │ ├── Cron_model.php │ ├── Currencies_model.php │ ├── Custom_fields_model.php │ ├── Dashboard_model.php │ ├── Departments_model.php │ ├── Emails_model.php │ ├── Estimates_model.php │ ├── Expenses_model.php │ ├── Gdpr_model.php │ ├── Invoice_items_model.php │ ├── Invoices_model.php │ ├── Knowledge_base_model.php │ ├── Leads_model.php │ ├── Misc_model.php │ ├── Newsfeed_model.php │ ├── Payment_modes_model.php │ ├── Payments_model.php │ ├── Projects_model.php │ ├── Proposals_model.php │ ├── Reports_model.php │ ├── Roles_model.php │ ├── Settings_model.php │ ├── Spam_filters_model.php │ ├── Staff_model.php │ ├── Statement_model.php │ ├── Subscriptions_model.php │ ├── Tasks_model.php │ ├── Taxes_model.php │ ├── Tickets_model.php │ ├── Todo_model.php │ ├── User_autologin.php │ ├── Utilities_model.php │ └── index.html ├── services │ ├── ActivityLogger.php │ ├── Timezones.php │ ├── ValidatesContact.php │ ├── ViewsTracking.php │ ├── index.html │ ├── messages │ │ ├── AbstractMessage.php │ │ ├── AbstractPopupMessage.php │ │ ├── CloudFlare.php │ │ ├── CronJobFailure.php │ │ ├── DatabaseNameHasDot.php │ │ ├── DevelopmentEnvironment.php │ │ ├── FirstLeadCreated.php │ │ ├── FirstTagCreated.php │ │ ├── FirstTicketCreated.php │ │ ├── Iconv.php │ │ ├── IsCronSetupRequired.php │ │ ├── MailConfigured.php │ │ ├── Message.php │ │ ├── ModSecurityEnabled.php │ │ ├── PopupMessage.php │ │ ├── ReOrderTaskChecklistItems.php │ │ ├── StartTimersWithNoTasks.php │ │ ├── StaticIndexHtml.php │ │ ├── TcpdfFileMissing.php │ │ ├── Timezone.php │ │ └── index.html │ ├── upgrade │ │ ├── AbstractCurlAdapter.php │ │ ├── Config.php │ │ ├── CoreInterface.php │ │ ├── CurlCoreUpgradeAdapter.php │ │ ├── GuzzleCoreUpgradeAdapter.php │ │ ├── Response.php │ │ ├── UpgradeCore.php │ │ └── index.html │ ├── utilities │ │ ├── Arr.php │ │ ├── Date.php │ │ ├── Format.php │ │ ├── Locale.php │ │ ├── Str.php │ │ ├── StrClickable.php │ │ ├── Utils.php │ │ └── index.html │ └── zip │ │ ├── ExtractException.php │ │ ├── Unzip.php │ │ └── index.html ├── third_party │ ├── JD_Geocoder_Request.php │ ├── MX │ │ ├── Base.php │ │ ├── Ci.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Modules.php │ │ └── Router.php │ ├── action_hooks.php │ ├── index.html │ ├── php-imap │ │ ├── Imap.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── index.html │ ├── phpass.php │ └── simple_html_dom.php ├── vendor │ ├── 2checkout │ │ └── 2checkout-php │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── lib │ │ │ ├── Twocheckout.php │ │ │ └── Twocheckout │ │ │ │ ├── Api │ │ │ │ ├── TwocheckoutAccount.php │ │ │ │ ├── TwocheckoutApi.php │ │ │ │ ├── TwocheckoutCoupon.php │ │ │ │ ├── TwocheckoutError.php │ │ │ │ ├── TwocheckoutOption.php │ │ │ │ ├── TwocheckoutPayment.php │ │ │ │ ├── TwocheckoutProduct.php │ │ │ │ ├── TwocheckoutSale.php │ │ │ │ └── TwocheckoutUtil.php │ │ │ │ ├── TwocheckoutCharge.php │ │ │ │ ├── TwocheckoutMessage.php │ │ │ │ ├── TwocheckoutNotification.php │ │ │ │ └── TwocheckoutReturn.php │ │ │ └── test │ │ │ ├── ChargeTest.php │ │ │ ├── CompanyTest.php │ │ │ ├── CouponTest.php │ │ │ ├── NotificationTest.php │ │ │ ├── OptionTest.php │ │ │ ├── ProductTest.php │ │ │ ├── ReturnTest.php │ │ │ └── SaleTest.php │ ├── autoload.php │ ├── bainternet │ │ └── php-hooks │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── license.txt │ │ │ └── php-hooks.php │ ├── braintree │ │ ├── braintree_php │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── ACKNOWLEDGEMENTS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── ci.sh │ │ │ ├── composer.json │ │ │ ├── lib │ │ │ │ ├── Braintree.php │ │ │ │ ├── Braintree │ │ │ │ │ ├── AccountUpdaterDailyReport.php │ │ │ │ │ ├── AchMandate.php │ │ │ │ │ ├── AddOn.php │ │ │ │ │ ├── AddOnGateway.php │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── AddressGateway.php │ │ │ │ │ ├── AmexExpressCheckoutCard.php │ │ │ │ │ ├── AndroidPayCard.php │ │ │ │ │ ├── ApplePayCard.php │ │ │ │ │ ├── ApplePayGateway.php │ │ │ │ │ ├── ApplePayOptions.php │ │ │ │ │ ├── AuthorizationAdjustment.php │ │ │ │ │ ├── Base.php │ │ │ │ │ ├── BinData.php │ │ │ │ │ ├── ClientToken.php │ │ │ │ │ ├── ClientTokenGateway.php │ │ │ │ │ ├── CoinbaseAccount.php │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Configuration.php │ │ │ │ │ ├── ConnectedMerchantPayPalStatusChanged.php │ │ │ │ │ ├── ConnectedMerchantStatusTransitioned.php │ │ │ │ │ ├── CredentialsParser.php │ │ │ │ │ ├── CreditCard.php │ │ │ │ │ ├── CreditCardGateway.php │ │ │ │ │ ├── CreditCardVerification.php │ │ │ │ │ ├── CreditCardVerificationGateway.php │ │ │ │ │ ├── CreditCardVerificationSearch.php │ │ │ │ │ ├── Customer.php │ │ │ │ │ ├── CustomerGateway.php │ │ │ │ │ ├── CustomerSearch.php │ │ │ │ │ ├── Descriptor.php │ │ │ │ │ ├── Digest.php │ │ │ │ │ ├── Disbursement.php │ │ │ │ │ ├── DisbursementDetails.php │ │ │ │ │ ├── Discount.php │ │ │ │ │ ├── DiscountGateway.php │ │ │ │ │ ├── Dispute.php │ │ │ │ │ ├── Dispute │ │ │ │ │ │ ├── EvidenceDetails.php │ │ │ │ │ │ ├── StatusHistoryDetails.php │ │ │ │ │ │ └── TransactionDetails.php │ │ │ │ │ ├── DisputeGateway.php │ │ │ │ │ ├── DisputeSearch.php │ │ │ │ │ ├── DocumentUpload.php │ │ │ │ │ ├── DocumentUploadGateway.php │ │ │ │ │ ├── EndsWithNode.php │ │ │ │ │ ├── EqualityNode.php │ │ │ │ │ ├── Error │ │ │ │ │ │ ├── Codes.php │ │ │ │ │ │ ├── ErrorCollection.php │ │ │ │ │ │ ├── Validation.php │ │ │ │ │ │ └── ValidationErrorCollection.php │ │ │ │ │ ├── EuropeBankAccount.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── Authentication.php │ │ │ │ │ │ ├── Authorization.php │ │ │ │ │ │ ├── Configuration.php │ │ │ │ │ │ ├── Connection.php │ │ │ │ │ │ ├── DownForMaintenance.php │ │ │ │ │ │ ├── ForgedQueryString.php │ │ │ │ │ │ ├── InvalidChallenge.php │ │ │ │ │ │ ├── InvalidSignature.php │ │ │ │ │ │ ├── NotFound.php │ │ │ │ │ │ ├── SSLCaFileNotFound.php │ │ │ │ │ │ ├── SSLCertificate.php │ │ │ │ │ │ ├── ServerError.php │ │ │ │ │ │ ├── TestOperationPerformedInProduction.php │ │ │ │ │ │ ├── Timeout.php │ │ │ │ │ │ ├── TooManyRequests.php │ │ │ │ │ │ ├── Unexpected.php │ │ │ │ │ │ ├── UpgradeRequired.php │ │ │ │ │ │ └── ValidationsFailed.php │ │ │ │ │ ├── FacilitatedDetails.php │ │ │ │ │ ├── FacilitatorDetails.php │ │ │ │ │ ├── Gateway.php │ │ │ │ │ ├── GrantedPaymentInstrumentUpdate.php │ │ │ │ │ ├── GraphQL.php │ │ │ │ │ ├── Http.php │ │ │ │ │ ├── IbanBankAccount.php │ │ │ │ │ ├── IdealPayment.php │ │ │ │ │ ├── IdealPaymentGateway.php │ │ │ │ │ ├── Instance.php │ │ │ │ │ ├── IsNode.php │ │ │ │ │ ├── KeyValueNode.php │ │ │ │ │ ├── LocalPaymentCompleted.php │ │ │ │ │ ├── MasterpassCard.php │ │ │ │ │ ├── Merchant.php │ │ │ │ │ ├── MerchantAccount.php │ │ │ │ │ ├── MerchantAccount │ │ │ │ │ │ ├── AddressDetails.php │ │ │ │ │ │ ├── BusinessDetails.php │ │ │ │ │ │ ├── FundingDetails.php │ │ │ │ │ │ └── IndividualDetails.php │ │ │ │ │ ├── MerchantAccountGateway.php │ │ │ │ │ ├── MerchantGateway.php │ │ │ │ │ ├── Modification.php │ │ │ │ │ ├── MultipleValueNode.php │ │ │ │ │ ├── MultipleValueOrTextNode.php │ │ │ │ │ ├── OAuthAccessRevocation.php │ │ │ │ │ ├── OAuthCredentials.php │ │ │ │ │ ├── OAuthGateway.php │ │ │ │ │ ├── OAuthResult.php │ │ │ │ │ ├── PaginatedCollection.php │ │ │ │ │ ├── PaginatedResult.php │ │ │ │ │ ├── PartialMatchNode.php │ │ │ │ │ ├── PartnerMerchant.php │ │ │ │ │ ├── PayPalAccount.php │ │ │ │ │ ├── PayPalAccountGateway.php │ │ │ │ │ ├── PaymentInstrumentType.php │ │ │ │ │ ├── PaymentMethod.php │ │ │ │ │ ├── PaymentMethodGateway.php │ │ │ │ │ ├── PaymentMethodNonce.php │ │ │ │ │ ├── PaymentMethodNonceGateway.php │ │ │ │ │ ├── PaymentMethodParser.php │ │ │ │ │ ├── Plan.php │ │ │ │ │ ├── PlanGateway.php │ │ │ │ │ ├── ProcessorResponseTypes.php │ │ │ │ │ ├── RangeNode.php │ │ │ │ │ ├── ResourceCollection.php │ │ │ │ │ ├── Result │ │ │ │ │ │ ├── CreditCardVerification.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── Successful.php │ │ │ │ │ │ └── UsBankAccountVerification.php │ │ │ │ │ ├── RevokedPaymentMethodMetadata.php │ │ │ │ │ ├── RiskData.php │ │ │ │ │ ├── SamsungPayCard.php │ │ │ │ │ ├── SettlementBatchSummary.php │ │ │ │ │ ├── SettlementBatchSummaryGateway.php │ │ │ │ │ ├── SignatureService.php │ │ │ │ │ ├── Subscription.php │ │ │ │ │ ├── Subscription │ │ │ │ │ │ └── StatusDetails.php │ │ │ │ │ ├── SubscriptionGateway.php │ │ │ │ │ ├── SubscriptionSearch.php │ │ │ │ │ ├── Test │ │ │ │ │ │ ├── CreditCardNumbers.php │ │ │ │ │ │ ├── MerchantAccount.php │ │ │ │ │ │ ├── Nonces.php │ │ │ │ │ │ ├── Transaction.php │ │ │ │ │ │ ├── TransactionAmounts.php │ │ │ │ │ │ └── VenmoSdk.php │ │ │ │ │ ├── TestingGateway.php │ │ │ │ │ ├── TextNode.php │ │ │ │ │ ├── ThreeDSecureInfo.php │ │ │ │ │ ├── Transaction.php │ │ │ │ │ ├── Transaction │ │ │ │ │ │ ├── AddressDetails.php │ │ │ │ │ │ ├── AmexExpressCheckoutCardDetails.php │ │ │ │ │ │ ├── AndroidPayCardDetails.php │ │ │ │ │ │ ├── ApplePayCardDetails.php │ │ │ │ │ │ ├── CoinbaseDetails.php │ │ │ │ │ │ ├── CreditCardDetails.php │ │ │ │ │ │ ├── CustomerDetails.php │ │ │ │ │ │ ├── EuropeBankAccountDetails.php │ │ │ │ │ │ ├── IdealPaymentDetails.php │ │ │ │ │ │ ├── LineItem.php │ │ │ │ │ │ ├── MasterpassCardDetails.php │ │ │ │ │ │ ├── PayPalDetails.php │ │ │ │ │ │ ├── SamsungPayCardDetails.php │ │ │ │ │ │ ├── StatusDetails.php │ │ │ │ │ │ ├── SubscriptionDetails.php │ │ │ │ │ │ ├── UsBankAccountDetails.php │ │ │ │ │ │ ├── VenmoAccountDetails.php │ │ │ │ │ │ └── VisaCheckoutCardDetails.php │ │ │ │ │ ├── TransactionGateway.php │ │ │ │ │ ├── TransactionLineItem.php │ │ │ │ │ ├── TransactionLineItemGateway.php │ │ │ │ │ ├── TransactionSearch.php │ │ │ │ │ ├── TransparentRedirect.php │ │ │ │ │ ├── TransparentRedirectGateway.php │ │ │ │ │ ├── UnknownPaymentMethod.php │ │ │ │ │ ├── UsBankAccount.php │ │ │ │ │ ├── UsBankAccountGateway.php │ │ │ │ │ ├── UsBankAccountVerification.php │ │ │ │ │ ├── UsBankAccountVerificationGateway.php │ │ │ │ │ ├── UsBankAccountVerificationSearch.php │ │ │ │ │ ├── Util.php │ │ │ │ │ ├── VenmoAccount.php │ │ │ │ │ ├── Version.php │ │ │ │ │ ├── VisaCheckoutCard.php │ │ │ │ │ ├── WebhookNotification.php │ │ │ │ │ ├── WebhookNotificationGateway.php │ │ │ │ │ ├── WebhookTesting.php │ │ │ │ │ ├── WebhookTestingGateway.php │ │ │ │ │ ├── Xml.php │ │ │ │ │ └── Xml │ │ │ │ │ │ ├── Generator.php │ │ │ │ │ │ └── Parser.php │ │ │ │ ├── autoload.php │ │ │ │ └── ssl │ │ │ │ │ └── api_braintreegateway_com.ca.crt │ │ │ └── phpunit.xml.dist │ │ └── braintreehttp │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── composer.json │ │ │ ├── lib │ │ │ └── BraintreeHttp │ │ │ │ ├── Curl.php │ │ │ │ ├── Encoder.php │ │ │ │ ├── Environment.php │ │ │ │ ├── HttpClient.php │ │ │ │ ├── HttpException.php │ │ │ │ ├── HttpRequest.php │ │ │ │ ├── HttpResponse.php │ │ │ │ ├── IOException.php │ │ │ │ ├── Injector.php │ │ │ │ ├── Serializer.php │ │ │ │ └── Serializer │ │ │ │ ├── Form.php │ │ │ │ ├── FormPart.php │ │ │ │ ├── Json.php │ │ │ │ ├── Multipart.php │ │ │ │ └── Text.php │ │ │ └── phpunit.xml │ ├── clue │ │ └── stream-filter │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── examples │ │ │ ├── base64_decode.php │ │ │ ├── base64_encode.php │ │ │ └── uppercase.php │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ ├── CallbackFilter.php │ │ │ └── functions.php │ │ │ └── tests │ │ │ ├── FilterTest.php │ │ │ ├── FunTest.php │ │ │ └── FunZlibTest.php │ ├── cocur │ │ └── slugify │ │ │ ├── LICENSE │ │ │ ├── Resources │ │ │ └── rules │ │ │ │ ├── arabic.json │ │ │ │ ├── armenian.json │ │ │ │ ├── austrian.json │ │ │ │ ├── azerbaijani.json │ │ │ │ ├── bulgarian.json │ │ │ │ ├── burmese.json │ │ │ │ ├── chinese.json │ │ │ │ ├── croatian.json │ │ │ │ ├── czech.json │ │ │ │ ├── danish.json │ │ │ │ ├── default.json │ │ │ │ ├── esperanto.json │ │ │ │ ├── estonian.json │ │ │ │ ├── finnish.json │ │ │ │ ├── french.json │ │ │ │ ├── georgian.json │ │ │ │ ├── german.json │ │ │ │ ├── greek.json │ │ │ │ ├── hindi.json │ │ │ │ ├── hungarian.json │ │ │ │ ├── italian.json │ │ │ │ ├── latvian.json │ │ │ │ ├── lithuanian.json │ │ │ │ ├── macedonian.json │ │ │ │ ├── norwegian.json │ │ │ │ ├── persian.json │ │ │ │ ├── polish.json │ │ │ │ ├── portuguese-brazil.json │ │ │ │ ├── romanian.json │ │ │ │ ├── russian.json │ │ │ │ ├── serbian.json │ │ │ │ ├── swedish.json │ │ │ │ ├── turkish.json │ │ │ │ ├── turkmen.json │ │ │ │ ├── ukrainian.json │ │ │ │ └── vietnamese.json │ │ │ ├── bin │ │ │ └── generate-default.php │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ └── src │ │ │ ├── Bridge │ │ │ ├── Laravel │ │ │ │ ├── SlugifyFacade.php │ │ │ │ └── SlugifyServiceProvider.php │ │ │ ├── Latte │ │ │ │ └── SlugifyHelper.php │ │ │ ├── League │ │ │ │ └── SlugifyServiceProvider.php │ │ │ ├── Nette │ │ │ │ └── SlugifyExtension.php │ │ │ ├── Plum │ │ │ │ └── SlugifyConverter.php │ │ │ ├── Silex │ │ │ │ └── SlugifyServiceProvider.php │ │ │ ├── Silex2 │ │ │ │ └── SlugifyServiceProvider.php │ │ │ ├── Symfony │ │ │ │ ├── CocurSlugifyBundle.php │ │ │ │ ├── CocurSlugifyExtension.php │ │ │ │ └── Configuration.php │ │ │ ├── Twig │ │ │ │ └── SlugifyExtension.php │ │ │ └── ZF2 │ │ │ │ ├── Module.php │ │ │ │ ├── SlugifyService.php │ │ │ │ ├── SlugifyViewHelper.php │ │ │ │ └── SlugifyViewHelperFactory.php │ │ │ ├── RuleProvider │ │ │ ├── DefaultRuleProvider.php │ │ │ ├── FileRuleProvider.php │ │ │ └── RuleProviderInterface.php │ │ │ ├── Slugify.php │ │ │ └── SlugifyInterface.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ ├── doctrine │ │ └── inflector │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── Inflector │ │ │ │ └── Inflector.php │ │ │ ├── phpunit.xml.dist │ │ │ └── tests │ │ │ └── Doctrine │ │ │ └── Tests │ │ │ ├── Common │ │ │ └── Inflector │ │ │ │ └── InflectorTest.php │ │ │ ├── DoctrineTestCase.php │ │ │ └── TestInit.php │ ├── erusev │ │ └── parsedown │ │ │ ├── LICENSE.txt │ │ │ ├── Parsedown.php │ │ │ ├── README.md │ │ │ └── composer.json │ ├── guzzlehttp │ │ ├── guzzle │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADING.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Client.php │ │ │ │ ├── ClientInterface.php │ │ │ │ ├── Cookie │ │ │ │ ├── CookieJar.php │ │ │ │ ├── CookieJarInterface.php │ │ │ │ ├── FileCookieJar.php │ │ │ │ ├── SessionCookieJar.php │ │ │ │ └── SetCookie.php │ │ │ │ ├── Exception │ │ │ │ ├── BadResponseException.php │ │ │ │ ├── ClientException.php │ │ │ │ ├── ConnectException.php │ │ │ │ ├── GuzzleException.php │ │ │ │ ├── RequestException.php │ │ │ │ ├── SeekException.php │ │ │ │ ├── ServerException.php │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ └── TransferException.php │ │ │ │ ├── Handler │ │ │ │ ├── CurlFactory.php │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ ├── CurlHandler.php │ │ │ │ ├── CurlMultiHandler.php │ │ │ │ ├── EasyHandle.php │ │ │ │ ├── MockHandler.php │ │ │ │ ├── Proxy.php │ │ │ │ └── StreamHandler.php │ │ │ │ ├── HandlerStack.php │ │ │ │ ├── MessageFormatter.php │ │ │ │ ├── Middleware.php │ │ │ │ ├── Pool.php │ │ │ │ ├── PrepareBodyMiddleware.php │ │ │ │ ├── RedirectMiddleware.php │ │ │ │ ├── RequestOptions.php │ │ │ │ ├── RetryMiddleware.php │ │ │ │ ├── TransferStats.php │ │ │ │ ├── UriTemplate.php │ │ │ │ ├── functions.php │ │ │ │ └── functions_include.php │ │ ├── promises │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── AggregateException.php │ │ │ │ ├── CancellationException.php │ │ │ │ ├── Coroutine.php │ │ │ │ ├── EachPromise.php │ │ │ │ ├── FulfilledPromise.php │ │ │ │ ├── Promise.php │ │ │ │ ├── PromiseInterface.php │ │ │ │ ├── PromisorInterface.php │ │ │ │ ├── RejectedPromise.php │ │ │ │ ├── RejectionException.php │ │ │ │ ├── TaskQueue.php │ │ │ │ ├── TaskQueueInterface.php │ │ │ │ ├── functions.php │ │ │ │ └── functions_include.php │ │ └── psr7 │ │ │ ├── .editorconfig │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── AppendStream.php │ │ │ ├── BufferStream.php │ │ │ ├── CachingStream.php │ │ │ ├── DroppingStream.php │ │ │ ├── FnStream.php │ │ │ ├── InflateStream.php │ │ │ ├── LazyOpenStream.php │ │ │ ├── LimitStream.php │ │ │ ├── MessageTrait.php │ │ │ ├── MultipartStream.php │ │ │ ├── NoSeekStream.php │ │ │ ├── PumpStream.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Rfc7230.php │ │ │ ├── ServerRequest.php │ │ │ ├── Stream.php │ │ │ ├── StreamDecoratorTrait.php │ │ │ ├── StreamWrapper.php │ │ │ ├── UploadedFile.php │ │ │ ├── Uri.php │ │ │ ├── UriNormalizer.php │ │ │ ├── UriResolver.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ ├── illuminate │ │ ├── container │ │ │ ├── BoundMethod.php │ │ │ ├── Container.php │ │ │ ├── ContextualBindingBuilder.php │ │ │ └── composer.json │ │ ├── contracts │ │ │ ├── Auth │ │ │ │ ├── Access │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ └── Gate.php │ │ │ │ ├── Authenticatable.php │ │ │ │ ├── CanResetPassword.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Guard.php │ │ │ │ ├── PasswordBroker.php │ │ │ │ ├── PasswordBrokerFactory.php │ │ │ │ ├── StatefulGuard.php │ │ │ │ ├── SupportsBasicAuth.php │ │ │ │ └── UserProvider.php │ │ │ ├── Broadcasting │ │ │ │ ├── Broadcaster.php │ │ │ │ ├── Factory.php │ │ │ │ ├── ShouldBroadcast.php │ │ │ │ └── ShouldBroadcastNow.php │ │ │ ├── Bus │ │ │ │ ├── Dispatcher.php │ │ │ │ └── QueueingDispatcher.php │ │ │ ├── Cache │ │ │ │ ├── Factory.php │ │ │ │ ├── Repository.php │ │ │ │ └── Store.php │ │ │ ├── Config │ │ │ │ └── Repository.php │ │ │ ├── Console │ │ │ │ ├── Application.php │ │ │ │ └── Kernel.php │ │ │ ├── Container │ │ │ │ ├── BindingResolutionException.php │ │ │ │ ├── Container.php │ │ │ │ └── ContextualBindingBuilder.php │ │ │ ├── Cookie │ │ │ │ ├── Factory.php │ │ │ │ └── QueueingFactory.php │ │ │ ├── Database │ │ │ │ └── ModelIdentifier.php │ │ │ ├── Debug │ │ │ │ └── ExceptionHandler.php │ │ │ ├── Encryption │ │ │ │ ├── DecryptException.php │ │ │ │ ├── EncryptException.php │ │ │ │ └── Encrypter.php │ │ │ ├── Events │ │ │ │ └── Dispatcher.php │ │ │ ├── Filesystem │ │ │ │ ├── Cloud.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ └── Filesystem.php │ │ │ ├── Foundation │ │ │ │ └── Application.php │ │ │ ├── Hashing │ │ │ │ └── Hasher.php │ │ │ ├── Http │ │ │ │ └── Kernel.php │ │ │ ├── Logging │ │ │ │ └── Log.php │ │ │ ├── Mail │ │ │ │ ├── MailQueue.php │ │ │ │ ├── Mailable.php │ │ │ │ └── Mailer.php │ │ │ ├── Notifications │ │ │ │ ├── Dispatcher.php │ │ │ │ └── Factory.php │ │ │ ├── Pagination │ │ │ │ ├── LengthAwarePaginator.php │ │ │ │ └── Paginator.php │ │ │ ├── Pipeline │ │ │ │ ├── Hub.php │ │ │ │ └── Pipeline.php │ │ │ ├── Queue │ │ │ │ ├── EntityNotFoundException.php │ │ │ │ ├── EntityResolver.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Job.php │ │ │ │ ├── Monitor.php │ │ │ │ ├── Queue.php │ │ │ │ ├── QueueableCollection.php │ │ │ │ ├── QueueableEntity.php │ │ │ │ └── ShouldQueue.php │ │ │ ├── Redis │ │ │ │ └── Factory.php │ │ │ ├── Routing │ │ │ │ ├── BindingRegistrar.php │ │ │ │ ├── Registrar.php │ │ │ │ ├── ResponseFactory.php │ │ │ │ ├── UrlGenerator.php │ │ │ │ └── UrlRoutable.php │ │ │ ├── Session │ │ │ │ └── Session.php │ │ │ ├── Support │ │ │ │ ├── Arrayable.php │ │ │ │ ├── Htmlable.php │ │ │ │ ├── Jsonable.php │ │ │ │ ├── MessageBag.php │ │ │ │ ├── MessageProvider.php │ │ │ │ └── Renderable.php │ │ │ ├── Translation │ │ │ │ └── Translator.php │ │ │ ├── Validation │ │ │ │ ├── Factory.php │ │ │ │ ├── ValidatesWhenResolved.php │ │ │ │ └── Validator.php │ │ │ ├── View │ │ │ │ ├── Factory.php │ │ │ │ └── View.php │ │ │ └── composer.json │ │ ├── database │ │ │ ├── Capsule │ │ │ │ └── Manager.php │ │ │ ├── Concerns │ │ │ │ ├── BuildsQueries.php │ │ │ │ └── ManagesTransactions.php │ │ │ ├── Connection.php │ │ │ ├── ConnectionInterface.php │ │ │ ├── ConnectionResolver.php │ │ │ ├── ConnectionResolverInterface.php │ │ │ ├── Connectors │ │ │ │ ├── ConnectionFactory.php │ │ │ │ ├── Connector.php │ │ │ │ ├── ConnectorInterface.php │ │ │ │ ├── MySqlConnector.php │ │ │ │ ├── PostgresConnector.php │ │ │ │ ├── SQLiteConnector.php │ │ │ │ └── SqlServerConnector.php │ │ │ ├── Console │ │ │ │ ├── Migrations │ │ │ │ │ ├── BaseCommand.php │ │ │ │ │ ├── InstallCommand.php │ │ │ │ │ ├── MigrateCommand.php │ │ │ │ │ ├── MigrateMakeCommand.php │ │ │ │ │ ├── RefreshCommand.php │ │ │ │ │ ├── ResetCommand.php │ │ │ │ │ ├── RollbackCommand.php │ │ │ │ │ └── StatusCommand.php │ │ │ │ └── Seeds │ │ │ │ │ ├── SeedCommand.php │ │ │ │ │ ├── SeederMakeCommand.php │ │ │ │ │ └── stubs │ │ │ │ │ └── seeder.stub │ │ │ ├── DatabaseManager.php │ │ │ ├── DatabaseServiceProvider.php │ │ │ ├── DetectsDeadlocks.php │ │ │ ├── DetectsLostConnections.php │ │ │ ├── Eloquent │ │ │ │ ├── Builder.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── GuardsAttributes.php │ │ │ │ │ ├── HasAttributes.php │ │ │ │ │ ├── HasEvents.php │ │ │ │ │ ├── HasGlobalScopes.php │ │ │ │ │ ├── HasRelationships.php │ │ │ │ │ ├── HasTimestamps.php │ │ │ │ │ ├── HidesAttributes.php │ │ │ │ │ └── QueriesRelationships.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FactoryBuilder.php │ │ │ │ ├── JsonEncodingException.php │ │ │ │ ├── MassAssignmentException.php │ │ │ │ ├── Model.php │ │ │ │ ├── ModelNotFoundException.php │ │ │ │ ├── QueueEntityResolver.php │ │ │ │ ├── RelationNotFoundException.php │ │ │ │ ├── Relations │ │ │ │ │ ├── BelongsTo.php │ │ │ │ │ ├── BelongsToMany.php │ │ │ │ │ ├── Concerns │ │ │ │ │ │ ├── InteractsWithPivotTable.php │ │ │ │ │ │ └── SupportsDefaultModels.php │ │ │ │ │ ├── HasMany.php │ │ │ │ │ ├── HasManyThrough.php │ │ │ │ │ ├── HasOne.php │ │ │ │ │ ├── HasOneOrMany.php │ │ │ │ │ ├── MorphMany.php │ │ │ │ │ ├── MorphOne.php │ │ │ │ │ ├── MorphOneOrMany.php │ │ │ │ │ ├── MorphPivot.php │ │ │ │ │ ├── MorphTo.php │ │ │ │ │ ├── MorphToMany.php │ │ │ │ │ ├── Pivot.php │ │ │ │ │ └── Relation.php │ │ │ │ ├── Scope.php │ │ │ │ ├── SoftDeletes.php │ │ │ │ └── SoftDeletingScope.php │ │ │ ├── Events │ │ │ │ ├── ConnectionEvent.php │ │ │ │ ├── QueryExecuted.php │ │ │ │ ├── StatementPrepared.php │ │ │ │ ├── TransactionBeginning.php │ │ │ │ ├── TransactionCommitted.php │ │ │ │ └── TransactionRolledBack.php │ │ │ ├── Grammar.php │ │ │ ├── MigrationServiceProvider.php │ │ │ ├── Migrations │ │ │ │ ├── DatabaseMigrationRepository.php │ │ │ │ ├── Migration.php │ │ │ │ ├── MigrationCreator.php │ │ │ │ ├── MigrationRepositoryInterface.php │ │ │ │ ├── Migrator.php │ │ │ │ └── stubs │ │ │ │ │ ├── blank.stub │ │ │ │ │ ├── create.stub │ │ │ │ │ └── update.stub │ │ │ ├── MySqlConnection.php │ │ │ ├── PostgresConnection.php │ │ │ ├── Query │ │ │ │ ├── Builder.php │ │ │ │ ├── Expression.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── JoinClause.php │ │ │ │ ├── JsonExpression.php │ │ │ │ └── Processors │ │ │ │ │ ├── MySqlProcessor.php │ │ │ │ │ ├── PostgresProcessor.php │ │ │ │ │ ├── Processor.php │ │ │ │ │ ├── SQLiteProcessor.php │ │ │ │ │ └── SqlServerProcessor.php │ │ │ ├── QueryException.php │ │ │ ├── README.md │ │ │ ├── SQLiteConnection.php │ │ │ ├── Schema │ │ │ │ ├── Blueprint.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── ChangeColumn.php │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── RenameColumn.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── MySqlBuilder.php │ │ │ │ └── PostgresBuilder.php │ │ │ ├── Seeder.php │ │ │ ├── SqlServerConnection.php │ │ │ └── composer.json │ │ ├── events │ │ │ ├── CallQueuedHandler.php │ │ │ ├── CallQueuedListener.php │ │ │ ├── Dispatcher.php │ │ │ ├── EventServiceProvider.php │ │ │ └── composer.json │ │ ├── pagination │ │ │ ├── AbstractPaginator.php │ │ │ ├── LengthAwarePaginator.php │ │ │ ├── PaginationServiceProvider.php │ │ │ ├── Paginator.php │ │ │ ├── UrlWindow.php │ │ │ ├── composer.json │ │ │ └── resources │ │ │ │ └── views │ │ │ │ ├── bootstrap-4.blade.php │ │ │ │ ├── default.blade.php │ │ │ │ ├── simple-bootstrap-4.blade.php │ │ │ │ └── simple-default.blade.php │ │ └── support │ │ │ ├── AggregateServiceProvider.php │ │ │ ├── Arr.php │ │ │ ├── Collection.php │ │ │ ├── Composer.php │ │ │ ├── Debug │ │ │ ├── Dumper.php │ │ │ └── HtmlDumper.php │ │ │ ├── Facades │ │ │ ├── App.php │ │ │ ├── Artisan.php │ │ │ ├── Auth.php │ │ │ ├── Blade.php │ │ │ ├── Broadcast.php │ │ │ ├── Bus.php │ │ │ ├── Cache.php │ │ │ ├── Config.php │ │ │ ├── Cookie.php │ │ │ ├── Crypt.php │ │ │ ├── DB.php │ │ │ ├── Event.php │ │ │ ├── Facade.php │ │ │ ├── File.php │ │ │ ├── Gate.php │ │ │ ├── Hash.php │ │ │ ├── Input.php │ │ │ ├── Lang.php │ │ │ ├── Log.php │ │ │ ├── Mail.php │ │ │ ├── Notification.php │ │ │ ├── Password.php │ │ │ ├── Queue.php │ │ │ ├── Redirect.php │ │ │ ├── Redis.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Route.php │ │ │ ├── Schema.php │ │ │ ├── Session.php │ │ │ ├── Storage.php │ │ │ ├── URL.php │ │ │ ├── Validator.php │ │ │ └── View.php │ │ │ ├── Fluent.php │ │ │ ├── HigherOrderCollectionProxy.php │ │ │ ├── HigherOrderTapProxy.php │ │ │ ├── HtmlString.php │ │ │ ├── Manager.php │ │ │ ├── MessageBag.php │ │ │ ├── NamespacedItemResolver.php │ │ │ ├── Pluralizer.php │ │ │ ├── ServiceProvider.php │ │ │ ├── Str.php │ │ │ ├── Testing │ │ │ └── Fakes │ │ │ │ ├── BusFake.php │ │ │ │ ├── EventFake.php │ │ │ │ ├── MailFake.php │ │ │ │ ├── NotificationFake.php │ │ │ │ ├── PendingMailFake.php │ │ │ │ └── QueueFake.php │ │ │ ├── Traits │ │ │ ├── CapsuleManagerTrait.php │ │ │ └── Macroable.php │ │ │ ├── ViewErrorBag.php │ │ │ ├── composer.json │ │ │ └── helpers.php │ ├── instamojo │ │ └── instamojo-php │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── OLD_API.md │ │ │ ├── README.md │ │ │ ├── REFUNDS.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── Instamojo.php │ │ │ └── cacert.pem │ ├── moneyphp │ │ └── money │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── resources │ │ │ ├── currency.php │ │ │ └── generate-money-factory.php │ │ │ └── src │ │ │ ├── Calculator.php │ │ │ ├── Calculator │ │ │ ├── BcMathCalculator.php │ │ │ ├── GmpCalculator.php │ │ │ └── PhpCalculator.php │ │ │ ├── Converter.php │ │ │ ├── Currencies.php │ │ │ ├── Currencies │ │ │ ├── AggregateCurrencies.php │ │ │ ├── BitcoinCurrencies.php │ │ │ ├── CachedCurrencies.php │ │ │ ├── CurrencyList.php │ │ │ └── ISOCurrencies.php │ │ │ ├── Currency.php │ │ │ ├── CurrencyPair.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ ├── FormatterException.php │ │ │ ├── ParserException.php │ │ │ ├── UnknownCurrencyException.php │ │ │ └── UnresolvableCurrencyPairException.php │ │ │ ├── Exchange.php │ │ │ ├── Exchange │ │ │ ├── ExchangerExchange.php │ │ │ ├── FixedExchange.php │ │ │ ├── IndirectExchange.php │ │ │ ├── ReversedCurrenciesExchange.php │ │ │ └── SwapExchange.php │ │ │ ├── Formatter │ │ │ ├── AggregateMoneyFormatter.php │ │ │ ├── BitcoinMoneyFormatter.php │ │ │ ├── DecimalMoneyFormatter.php │ │ │ ├── IntlLocalizedDecimalFormatter.php │ │ │ └── IntlMoneyFormatter.php │ │ │ ├── Money.php │ │ │ ├── MoneyFactory.php │ │ │ ├── MoneyFormatter.php │ │ │ ├── MoneyParser.php │ │ │ ├── Number.php │ │ │ ├── PHPUnit │ │ │ └── Comparator.php │ │ │ └── Parser │ │ │ ├── AggregateMoneyParser.php │ │ │ ├── BitcoinMoneyParser.php │ │ │ ├── DecimalMoneyParser.php │ │ │ ├── IntlLocalizedDecimalParser.php │ │ │ └── IntlMoneyParser.php │ ├── neitanod │ │ └── forceutf8 │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── resources │ │ │ └── wallet.jpg │ │ │ ├── src │ │ │ └── ForceUTF8 │ │ │ │ └── Encoding.php │ │ │ └── test │ │ │ ├── ForceUTF8Test.php │ │ │ ├── Test.class.php │ │ │ └── data │ │ │ ├── russian.txt │ │ │ ├── test1.txt │ │ │ └── test1Latin.txt │ ├── nesbot │ │ └── carbon │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ ├── readme.md │ │ │ └── src │ │ │ ├── Carbon │ │ │ ├── Carbon.php │ │ │ ├── CarbonInterval.php │ │ │ ├── CarbonPeriod.php │ │ │ ├── Exceptions │ │ │ │ └── InvalidDateException.php │ │ │ ├── Lang │ │ │ │ ├── af.php │ │ │ │ ├── ar.php │ │ │ │ ├── ar_Shakl.php │ │ │ │ ├── az.php │ │ │ │ ├── bg.php │ │ │ │ ├── bn.php │ │ │ │ ├── bs_BA.php │ │ │ │ ├── ca.php │ │ │ │ ├── cs.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── dv_MV.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── eo.php │ │ │ │ ├── es.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── id.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── ja.php │ │ │ │ ├── ka.php │ │ │ │ ├── kk.php │ │ │ │ ├── km.php │ │ │ │ ├── ko.php │ │ │ │ ├── lt.php │ │ │ │ ├── lv.php │ │ │ │ ├── mk.php │ │ │ │ ├── mn.php │ │ │ │ ├── ms.php │ │ │ │ ├── my.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── no.php │ │ │ │ ├── oc.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_BR.php │ │ │ │ ├── ro.php │ │ │ │ ├── ru.php │ │ │ │ ├── sh.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_Cyrl.php │ │ │ │ ├── sr_Cyrl_ME.php │ │ │ │ ├── sr_Latn_ME.php │ │ │ │ ├── sr_ME.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── th.php │ │ │ │ ├── tr.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── uz.php │ │ │ │ ├── vi.php │ │ │ │ ├── zh.php │ │ │ │ └── zh_TW.php │ │ │ ├── Laravel │ │ │ │ └── ServiceProvider.php │ │ │ └── Translator.php │ │ │ └── JsonSerializable.php │ ├── nuovo │ │ └── spreadsheet-reader │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── SpreadsheetReader.php │ │ │ ├── SpreadsheetReader_CSV.php │ │ │ ├── SpreadsheetReader_ODS.php │ │ │ ├── SpreadsheetReader_XLS.php │ │ │ ├── SpreadsheetReader_XLSX.php │ │ │ ├── composer.json │ │ │ ├── php-excel-reader │ │ │ └── excel_reader2.php │ │ │ └── test.php │ ├── omnipay │ │ ├── authorizenet │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── grumphp.yml │ │ │ ├── phpunit.xml.dist │ │ │ └── src │ │ │ │ ├── AIMGateway.php │ │ │ │ ├── CIMGateway.php │ │ │ │ ├── DPMGateway.php │ │ │ │ ├── Message │ │ │ │ ├── AIMAbstractRequest.php │ │ │ │ ├── AIMAuthorizeRequest.php │ │ │ │ ├── AIMCaptureOnlyRequest.php │ │ │ │ ├── AIMCaptureRequest.php │ │ │ │ ├── AIMPurchaseRequest.php │ │ │ │ ├── AIMRefundRequest.php │ │ │ │ ├── AIMResponse.php │ │ │ │ ├── AIMVoidRequest.php │ │ │ │ ├── CIMAbstractRequest.php │ │ │ │ ├── CIMAbstractResponse.php │ │ │ │ ├── CIMAuthorizeRequest.php │ │ │ │ ├── CIMCaptureRequest.php │ │ │ │ ├── CIMCreateCardRequest.php │ │ │ │ ├── CIMCreateCardResponse.php │ │ │ │ ├── CIMCreatePaymentProfileRequest.php │ │ │ │ ├── CIMCreatePaymentProfileResponse.php │ │ │ │ ├── CIMDeletePaymentProfileRequest.php │ │ │ │ ├── CIMDeletePaymentProfileResponse.php │ │ │ │ ├── CIMGetPaymentProfileRequest.php │ │ │ │ ├── CIMGetPaymentProfileResponse.php │ │ │ │ ├── CIMGetProfileRequest.php │ │ │ │ ├── CIMGetProfileResponse.php │ │ │ │ ├── CIMPurchaseRequest.php │ │ │ │ ├── CIMRefundRequest.php │ │ │ │ ├── CIMResponse.php │ │ │ │ ├── CIMUpdatePaymentProfileRequest.php │ │ │ │ ├── CIMUpdatePaymentProfileResponse.php │ │ │ │ ├── CIMVoidRequest.php │ │ │ │ ├── DPMAuthorizeRequest.php │ │ │ │ ├── DPMCompleteRequest.php │ │ │ │ ├── DPMCompleteResponse.php │ │ │ │ ├── DPMPurchaseRequest.php │ │ │ │ ├── DPMResponse.php │ │ │ │ ├── Query │ │ │ │ │ ├── AIMAbstractQueryRequest.php │ │ │ │ │ ├── AIMPaymentPlanQueryRequest.php │ │ │ │ │ ├── AIMPaymentPlanQueryResponse.php │ │ │ │ │ ├── AIMPaymentPlansQueryRequest.php │ │ │ │ │ ├── AIMPaymentPlansQueryResponse.php │ │ │ │ │ ├── AbstractQueryResponse.php │ │ │ │ │ ├── QueryBatchDetailRequest.php │ │ │ │ │ ├── QueryBatchDetailResponse.php │ │ │ │ │ ├── QueryBatchRequest.php │ │ │ │ │ ├── QueryBatchResponse.php │ │ │ │ │ ├── QueryDetailRequest.php │ │ │ │ │ ├── QueryDetailResponse.php │ │ │ │ │ ├── QueryRequest.php │ │ │ │ │ └── QueryResponse.php │ │ │ │ ├── SIMAbstractRequest.php │ │ │ │ ├── SIMAuthorizeRequest.php │ │ │ │ ├── SIMAuthorizeResponse.php │ │ │ │ ├── SIMCaptureRequest.php │ │ │ │ ├── SIMCompleteAuthorizeRequest.php │ │ │ │ ├── SIMCompleteAuthorizeResponse.php │ │ │ │ ├── SIMPurchaseRequest.php │ │ │ │ └── SIMVoidRequest.php │ │ │ │ ├── Model │ │ │ │ ├── CardReference.php │ │ │ │ └── TransactionReference.php │ │ │ │ └── SIMGateway.php │ │ ├── braintree │ │ │ ├── .phpstorm.meta.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Gateway.php │ │ │ │ ├── MerchantBusiness.php │ │ │ │ ├── MerchantFunding.php │ │ │ │ ├── MerchantIndividual.php │ │ │ │ └── Message │ │ │ │ ├── AbstractMerchantAccountRequest.php │ │ │ │ ├── AbstractRequest.php │ │ │ │ ├── AuthorizeRequest.php │ │ │ │ ├── CancelSubscriptionRequest.php │ │ │ │ ├── CaptureRequest.php │ │ │ │ ├── ClientTokenRequest.php │ │ │ │ ├── ClientTokenResponse.php │ │ │ │ ├── CreateCustomerRequest.php │ │ │ │ ├── CreateMerchantAccountRequest.php │ │ │ │ ├── CreatePaymentMethodRequest.php │ │ │ │ ├── CreateSubscriptionRequest.php │ │ │ │ ├── CustomerResponse.php │ │ │ │ ├── DeleteCustomerRequest.php │ │ │ │ ├── DeletePaymentMethodRequest.php │ │ │ │ ├── FindCustomerRequest.php │ │ │ │ ├── FindRequest.php │ │ │ │ ├── PlanRequest.php │ │ │ │ ├── PlanResponse.php │ │ │ │ ├── PurchaseRequest.php │ │ │ │ ├── RefundRequest.php │ │ │ │ ├── ReleaseFromEscrowRequest.php │ │ │ │ ├── Response.php │ │ │ │ ├── SubscriptionResponse.php │ │ │ │ ├── UpdateCustomerRequest.php │ │ │ │ ├── UpdateMerchantAccountRequest.php │ │ │ │ ├── UpdatePaymentMethodRequest.php │ │ │ │ └── VoidRequest.php │ │ ├── common │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADE.md │ │ │ ├── composer.json │ │ │ ├── grumphp.yml │ │ │ └── src │ │ │ │ ├── Common │ │ │ │ ├── AbstractGateway.php │ │ │ │ ├── CreditCard.php │ │ │ │ ├── Exception │ │ │ │ │ ├── BadMethodCallException.php │ │ │ │ │ ├── InvalidCreditCardException.php │ │ │ │ │ ├── InvalidRequestException.php │ │ │ │ │ ├── InvalidResponseException.php │ │ │ │ │ ├── OmnipayException.php │ │ │ │ │ └── RuntimeException.php │ │ │ │ ├── GatewayFactory.php │ │ │ │ ├── GatewayInterface.php │ │ │ │ ├── Helper.php │ │ │ │ ├── Http │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ClientInterface.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ └── Exception │ │ │ │ │ │ ├── NetworkException.php │ │ │ │ │ │ └── RequestException.php │ │ │ │ ├── Issuer.php │ │ │ │ ├── Item.php │ │ │ │ ├── ItemBag.php │ │ │ │ ├── ItemInterface.php │ │ │ │ ├── Message │ │ │ │ │ ├── AbstractRequest.php │ │ │ │ │ ├── AbstractResponse.php │ │ │ │ │ ├── FetchIssuersResponseInterface.php │ │ │ │ │ ├── FetchPaymentMethodsResponseInterface.php │ │ │ │ │ ├── MessageInterface.php │ │ │ │ │ ├── NotificationInterface.php │ │ │ │ │ ├── RedirectResponseInterface.php │ │ │ │ │ ├── RequestInterface.php │ │ │ │ │ └── ResponseInterface.php │ │ │ │ └── PaymentMethod.php │ │ │ │ └── Omnipay.php │ │ ├── mollie │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── grumphp.yml │ │ │ ├── phpunit.xml.dist │ │ │ └── src │ │ │ │ ├── Gateway.php │ │ │ │ └── Message │ │ │ │ ├── AbstractRequest.php │ │ │ │ ├── AbstractResponse.php │ │ │ │ ├── CompletePurchaseRequest.php │ │ │ │ ├── CompletePurchaseResponse.php │ │ │ │ ├── CreateCustomerRequest.php │ │ │ │ ├── CreateCustomerResponse.php │ │ │ │ ├── FetchCustomerRequest.php │ │ │ │ ├── FetchCustomerResponse.php │ │ │ │ ├── FetchIssuersRequest.php │ │ │ │ ├── FetchIssuersResponse.php │ │ │ │ ├── FetchPaymentMethodsRequest.php │ │ │ │ ├── FetchPaymentMethodsResponse.php │ │ │ │ ├── FetchTransactionRequest.php │ │ │ │ ├── FetchTransactionResponse.php │ │ │ │ ├── PurchaseRequest.php │ │ │ │ ├── PurchaseResponse.php │ │ │ │ ├── RefundRequest.php │ │ │ │ ├── RefundResponse.php │ │ │ │ ├── UpdateCustomerRequest.php │ │ │ │ └── UpdateCustomerResponse.php │ │ └── paypal │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── grumphp.yml │ │ │ ├── makedoc.sh │ │ │ ├── phpunit.xml.dist │ │ │ ├── phpunit.xml.dist~ │ │ │ └── src │ │ │ ├── ExpressGateway.php │ │ │ ├── ExpressInContextGateway.php │ │ │ ├── Message │ │ │ ├── AbstractRequest.php │ │ │ ├── AbstractRestRequest.php │ │ │ ├── CaptureRequest.php │ │ │ ├── ExpressAuthorizeRequest.php │ │ │ ├── ExpressAuthorizeResponse.php │ │ │ ├── ExpressCompleteAuthorizeRequest.php │ │ │ ├── ExpressCompleteOrderRequest.php │ │ │ ├── ExpressCompletePurchaseRequest.php │ │ │ ├── ExpressCompletePurchaseResponse.php │ │ │ ├── ExpressFetchCheckoutRequest.php │ │ │ ├── ExpressInContextAuthorizeRequest.php │ │ │ ├── ExpressInContextAuthorizeResponse.php │ │ │ ├── ExpressInContextOrderRequest.php │ │ │ ├── ExpressOrderRequest.php │ │ │ ├── ExpressTransactionSearchRequest.php │ │ │ ├── ExpressTransactionSearchResponse.php │ │ │ ├── ExpressVoidRequest.php │ │ │ ├── FetchTransactionRequest.php │ │ │ ├── ProAuthorizeRequest.php │ │ │ ├── ProPurchaseRequest.php │ │ │ ├── RefundRequest.php │ │ │ ├── Response.php │ │ │ ├── RestAuthorizeRequest.php │ │ │ ├── RestAuthorizeResponse.php │ │ │ ├── RestCancelSubscriptionRequest.php │ │ │ ├── RestCaptureRequest.php │ │ │ ├── RestCompletePurchaseRequest.php │ │ │ ├── RestCompleteSubscriptionRequest.php │ │ │ ├── RestCreateCardRequest.php │ │ │ ├── RestCreatePlanRequest.php │ │ │ ├── RestCreateSubscriptionRequest.php │ │ │ ├── RestDeleteCardRequest.php │ │ │ ├── RestFetchPurchaseRequest.php │ │ │ ├── RestFetchTransactionRequest.php │ │ │ ├── RestListPlanRequest.php │ │ │ ├── RestListPurchaseRequest.php │ │ │ ├── RestPurchaseRequest.php │ │ │ ├── RestReactivateSubscriptionRequest.php │ │ │ ├── RestRefundCaptureRequest.php │ │ │ ├── RestRefundRequest.php │ │ │ ├── RestResponse.php │ │ │ ├── RestSearchTransactionRequest.php │ │ │ ├── RestSuspendSubscriptionRequest.php │ │ │ ├── RestTokenRequest.php │ │ │ ├── RestUpdatePlanRequest.php │ │ │ └── RestVoidRequest.php │ │ │ ├── PayPalItem.php │ │ │ ├── PayPalItemBag.php │ │ │ ├── ProGateway.php │ │ │ ├── RestGateway.php │ │ │ └── Support │ │ │ └── InstantUpdateApi │ │ │ ├── BillingAgreement.php │ │ │ └── ShippingOption.php │ ├── paragonie │ │ ├── random_compat │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ │ ├── random_compat.phar.pubkey │ │ │ │ └── random_compat.phar.pubkey.asc │ │ │ └── lib │ │ │ │ ├── byte_safe_strings.php │ │ │ │ ├── cast_to_int.php │ │ │ │ ├── error_polyfill.php │ │ │ │ ├── random.php │ │ │ │ ├── random_bytes_com_dotnet.php │ │ │ │ ├── random_bytes_dev_urandom.php │ │ │ │ ├── random_bytes_libsodium.php │ │ │ │ ├── random_bytes_libsodium_legacy.php │ │ │ │ ├── random_bytes_mcrypt.php │ │ │ │ └── random_int.php │ │ └── sodium_compat │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── autoload-fast.php │ │ │ ├── autoload-pedantic.php │ │ │ ├── autoload.php │ │ │ ├── build-phar.sh │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ ├── Makefile │ │ │ └── box.json │ │ │ ├── lib │ │ │ ├── constants.php │ │ │ ├── namespaced.php │ │ │ ├── php72compat.php │ │ │ └── sodium_compat.php │ │ │ ├── namespaced │ │ │ ├── Compat.php │ │ │ ├── Core │ │ │ │ ├── BLAKE2b.php │ │ │ │ ├── ChaCha20.php │ │ │ │ ├── ChaCha20 │ │ │ │ │ ├── Ctx.php │ │ │ │ │ └── IetfCtx.php │ │ │ │ ├── Curve25519.php │ │ │ │ ├── Curve25519 │ │ │ │ │ ├── Fe.php │ │ │ │ │ ├── Ge │ │ │ │ │ │ ├── Cached.php │ │ │ │ │ │ ├── P1p1.php │ │ │ │ │ │ ├── P2.php │ │ │ │ │ │ ├── P3.php │ │ │ │ │ │ └── Precomp.php │ │ │ │ │ └── H.php │ │ │ │ ├── Ed25519.php │ │ │ │ ├── HChaCha20.php │ │ │ │ ├── HSalsa20.php │ │ │ │ ├── Poly1305.php │ │ │ │ ├── Poly1305 │ │ │ │ │ └── State.php │ │ │ │ ├── Salsa20.php │ │ │ │ ├── SipHash.php │ │ │ │ ├── Util.php │ │ │ │ ├── X25519.php │ │ │ │ ├── XChaCha20.php │ │ │ │ └── Xsalsa20.php │ │ │ ├── Crypto.php │ │ │ └── File.php │ │ │ ├── phpunit.xml.dist │ │ │ └── src │ │ │ ├── Compat.php │ │ │ ├── Core │ │ │ ├── BLAKE2b.php │ │ │ ├── ChaCha20.php │ │ │ ├── ChaCha20 │ │ │ │ ├── Ctx.php │ │ │ │ └── IetfCtx.php │ │ │ ├── Curve25519.php │ │ │ ├── Curve25519 │ │ │ │ ├── Fe.php │ │ │ │ ├── Ge │ │ │ │ │ ├── Cached.php │ │ │ │ │ ├── P1p1.php │ │ │ │ │ ├── P2.php │ │ │ │ │ ├── P3.php │ │ │ │ │ └── Precomp.php │ │ │ │ ├── H.php │ │ │ │ └── README.md │ │ │ ├── Ed25519.php │ │ │ ├── HChaCha20.php │ │ │ ├── HSalsa20.php │ │ │ ├── Poly1305.php │ │ │ ├── Poly1305 │ │ │ │ └── State.php │ │ │ ├── Salsa20.php │ │ │ ├── SipHash.php │ │ │ ├── Util.php │ │ │ ├── X25519.php │ │ │ ├── XChaCha20.php │ │ │ └── XSalsa20.php │ │ │ ├── Core32 │ │ │ ├── BLAKE2b.php │ │ │ ├── ChaCha20.php │ │ │ ├── ChaCha20 │ │ │ │ ├── Ctx.php │ │ │ │ └── IetfCtx.php │ │ │ ├── Curve25519.php │ │ │ ├── Curve25519 │ │ │ │ ├── Fe.php │ │ │ │ ├── Ge │ │ │ │ │ ├── Cached.php │ │ │ │ │ ├── P1p1.php │ │ │ │ │ ├── P2.php │ │ │ │ │ ├── P3.php │ │ │ │ │ └── Precomp.php │ │ │ │ ├── H.php │ │ │ │ └── README.md │ │ │ ├── Ed25519.php │ │ │ ├── HChaCha20.php │ │ │ ├── HSalsa20.php │ │ │ ├── Int32.php │ │ │ ├── Int64.php │ │ │ ├── Poly1305.php │ │ │ ├── Poly1305 │ │ │ │ └── State.php │ │ │ ├── Salsa20.php │ │ │ ├── SipHash.php │ │ │ ├── Util.php │ │ │ ├── X25519.php │ │ │ ├── XChaCha20.php │ │ │ └── XSalsa20.php │ │ │ ├── Crypto.php │ │ │ ├── Crypto32.php │ │ │ ├── File.php │ │ │ └── SodiumException.php │ ├── paypal │ │ └── paypal-checkout-sdk │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── composer.phar │ │ │ ├── gen.yml │ │ │ ├── homepage.jpg │ │ │ ├── init │ │ │ ├── lib │ │ │ └── PayPalCheckoutSdk │ │ │ │ ├── Core │ │ │ │ ├── AccessToken.php │ │ │ │ ├── AccessTokenRequest.php │ │ │ │ ├── AuthorizationInjector.php │ │ │ │ ├── FPTIInstrumentationInjector.php │ │ │ │ ├── GzipInjector.php │ │ │ │ ├── PayPalEnvironment.php │ │ │ │ ├── PayPalHttpClient.php │ │ │ │ ├── ProductionEnvironment.php │ │ │ │ ├── RefreshTokenRequest.php │ │ │ │ ├── SandboxEnvironment.php │ │ │ │ ├── UserAgent.php │ │ │ │ └── Version.php │ │ │ │ ├── Orders │ │ │ │ ├── OrdersAuthorizeRequest.php │ │ │ │ ├── OrdersCaptureRequest.php │ │ │ │ ├── OrdersCreateRequest.php │ │ │ │ ├── OrdersGetRequest.php │ │ │ │ ├── OrdersPatchRequest.php │ │ │ │ └── OrdersValidateRequest.php │ │ │ │ └── Payments │ │ │ │ ├── AuthorizationsCaptureRequest.php │ │ │ │ ├── AuthorizationsGetRequest.php │ │ │ │ ├── AuthorizationsReauthorizeRequest.php │ │ │ │ ├── AuthorizationsVoidRequest.php │ │ │ │ ├── CapturesGetRequest.php │ │ │ │ ├── CapturesRefundRequest.php │ │ │ │ └── RefundsGetRequest.php │ │ │ ├── phpunit.xml │ │ │ ├── samples │ │ │ ├── AuthorizeIntentExamples │ │ │ │ ├── AuthorizeOrder.php │ │ │ │ ├── CaptureOrder.php │ │ │ │ ├── CreateOrder.php │ │ │ │ └── RunAll.php │ │ │ ├── CaptureIntentExamples │ │ │ │ ├── CaptureOrder.php │ │ │ │ ├── CreateOrder.php │ │ │ │ └── RunAll.php │ │ │ ├── ErrorSample.php │ │ │ ├── GetOrder.php │ │ │ ├── PatchOrder.php │ │ │ ├── PayPalClient.php │ │ │ └── RefundOrder.php │ │ │ └── tests │ │ │ ├── Orders │ │ │ ├── OrdersAuthorizeTest.php │ │ │ ├── OrdersCaptureTest.php │ │ │ ├── OrdersCreateTest.php │ │ │ ├── OrdersGetTest.php │ │ │ └── OrdersPatchTest.php │ │ │ └── TestHarness.php │ ├── php-http │ │ ├── discovery │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── ClassDiscovery.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ ├── ClassInstantiationFailedException.php │ │ │ │ ├── DiscoveryFailedException.php │ │ │ │ ├── NoCandidateFoundException.php │ │ │ │ ├── NotFoundException.php │ │ │ │ ├── PuliUnavailableException.php │ │ │ │ └── StrategyUnavailableException.php │ │ │ │ ├── HttpAsyncClientDiscovery.php │ │ │ │ ├── HttpClientDiscovery.php │ │ │ │ ├── MessageFactoryDiscovery.php │ │ │ │ ├── NotFoundException.php │ │ │ │ ├── Psr17FactoryDiscovery.php │ │ │ │ ├── Psr18ClientDiscovery.php │ │ │ │ ├── Strategy │ │ │ │ ├── CommonClassesStrategy.php │ │ │ │ ├── CommonPsr17ClassesStrategy.php │ │ │ │ ├── DiscoveryStrategy.php │ │ │ │ ├── MockClientStrategy.php │ │ │ │ └── PuliBetaStrategy.php │ │ │ │ ├── StreamFactoryDiscovery.php │ │ │ │ └── UriFactoryDiscovery.php │ │ ├── guzzle6-adapter │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── puli.json │ │ │ └── src │ │ │ │ ├── Client.php │ │ │ │ └── Promise.php │ │ ├── httplug │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── puli.json │ │ │ └── src │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ ├── HttpException.php │ │ │ │ ├── NetworkException.php │ │ │ │ ├── RequestException.php │ │ │ │ └── TransferException.php │ │ │ │ ├── HttpAsyncClient.php │ │ │ │ ├── HttpClient.php │ │ │ │ └── Promise │ │ │ │ ├── HttpFulfilledPromise.php │ │ │ │ └── HttpRejectedPromise.php │ │ ├── message-factory │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── puli.json │ │ │ └── src │ │ │ │ ├── MessageFactory.php │ │ │ │ ├── RequestFactory.php │ │ │ │ ├── ResponseFactory.php │ │ │ │ ├── StreamFactory.php │ │ │ │ └── UriFactory.php │ │ ├── message │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── apigen.neon │ │ │ ├── composer.json │ │ │ ├── puli.json │ │ │ └── src │ │ │ │ ├── Authentication.php │ │ │ │ ├── Authentication │ │ │ │ ├── AutoBasicAuth.php │ │ │ │ ├── BasicAuth.php │ │ │ │ ├── Bearer.php │ │ │ │ ├── Chain.php │ │ │ │ ├── Matching.php │ │ │ │ ├── QueryParam.php │ │ │ │ ├── RequestConditional.php │ │ │ │ └── Wsse.php │ │ │ │ ├── Builder │ │ │ │ └── ResponseBuilder.php │ │ │ │ ├── Cookie.php │ │ │ │ ├── CookieJar.php │ │ │ │ ├── CookieUtil.php │ │ │ │ ├── Decorator │ │ │ │ ├── MessageDecorator.php │ │ │ │ ├── RequestDecorator.php │ │ │ │ ├── ResponseDecorator.php │ │ │ │ └── StreamDecorator.php │ │ │ │ ├── Encoding │ │ │ │ ├── ChunkStream.php │ │ │ │ ├── CompressStream.php │ │ │ │ ├── DechunkStream.php │ │ │ │ ├── DecompressStream.php │ │ │ │ ├── DeflateStream.php │ │ │ │ ├── Filter │ │ │ │ │ └── Chunk.php │ │ │ │ ├── FilteredStream.php │ │ │ │ ├── GzipDecodeStream.php │ │ │ │ ├── GzipEncodeStream.php │ │ │ │ └── InflateStream.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ └── UnexpectedValueException.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Formatter │ │ │ │ ├── CurlCommandFormatter.php │ │ │ │ ├── FullHttpMessageFormatter.php │ │ │ │ └── SimpleFormatter.php │ │ │ │ ├── MessageFactory │ │ │ │ ├── DiactorosMessageFactory.php │ │ │ │ ├── GuzzleMessageFactory.php │ │ │ │ └── SlimMessageFactory.php │ │ │ │ ├── RequestMatcher.php │ │ │ │ ├── RequestMatcher │ │ │ │ ├── CallbackRequestMatcher.php │ │ │ │ ├── RegexRequestMatcher.php │ │ │ │ └── RequestMatcher.php │ │ │ │ ├── Stream │ │ │ │ └── BufferedStream.php │ │ │ │ ├── StreamFactory │ │ │ │ ├── DiactorosStreamFactory.php │ │ │ │ ├── GuzzleStreamFactory.php │ │ │ │ └── SlimStreamFactory.php │ │ │ │ ├── UriFactory │ │ │ │ ├── DiactorosUriFactory.php │ │ │ │ ├── GuzzleUriFactory.php │ │ │ │ └── SlimUriFactory.php │ │ │ │ └── filters.php │ │ └── promise │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── FulfilledPromise.php │ │ │ ├── Promise.php │ │ │ └── RejectedPromise.php │ ├── phpmailer │ │ └── phpmailer │ │ │ ├── LICENSE │ │ │ ├── PHPMailerAutoload.php │ │ │ ├── VERSION │ │ │ ├── class.phpmailer.php │ │ │ ├── class.phpmaileroauth.php │ │ │ ├── class.phpmaileroauthgoogle.php │ │ │ ├── class.pop3.php │ │ │ ├── class.smtp.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── extras │ │ │ ├── EasyPeasyICS.php │ │ │ ├── README.md │ │ │ ├── htmlfilter.php │ │ │ └── ntlm_sasl_client.php │ │ │ ├── get_oauth_token.php │ │ │ └── language │ │ │ ├── phpmailer.lang-am.php │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-az.php │ │ │ ├── phpmailer.lang-ba.php │ │ │ ├── phpmailer.lang-be.php │ │ │ ├── phpmailer.lang-bg.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-ch.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-hr.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-id.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-ka.php │ │ │ ├── phpmailer.lang-ko.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.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-rs.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-sl.php │ │ │ ├── phpmailer.lang-sv.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-vi.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ ├── psr │ │ ├── http-message │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── MessageInterface.php │ │ │ │ ├── RequestInterface.php │ │ │ │ ├── ResponseInterface.php │ │ │ │ ├── ServerRequestInterface.php │ │ │ │ ├── StreamInterface.php │ │ │ │ ├── UploadedFileInterface.php │ │ │ │ └── UriInterface.php │ │ └── log │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ ├── NullLogger.php │ │ │ │ └── Test │ │ │ │ ├── LoggerInterfaceTest.php │ │ │ │ └── TestLogger.php │ │ │ ├── README.md │ │ │ └── composer.json │ ├── pusher │ │ └── pusher-php-server │ │ │ ├── CHANGELOG.md │ │ │ ├── composer.json │ │ │ ├── encryption.ini │ │ │ └── src │ │ │ ├── Pusher.php │ │ │ ├── PusherCrypto.php │ │ │ ├── PusherException.php │ │ │ ├── PusherInstance.php │ │ │ └── Webhook.php │ ├── ralouphie │ │ └── getallheaders │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ └── getallheaders.php │ │ │ └── tests │ │ │ └── GetAllHeadersTest.php │ ├── stripe │ │ └── stripe-php │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ ├── build.php │ │ │ ├── composer.json │ │ │ ├── data │ │ │ └── ca-certificates.crt │ │ │ ├── init.php │ │ │ ├── lib │ │ │ ├── Account.php │ │ │ ├── AccountLink.php │ │ │ ├── AlipayAccount.php │ │ │ ├── ApiOperations │ │ │ │ ├── All.php │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ ├── NestedResource.php │ │ │ │ ├── Request.php │ │ │ │ ├── Retrieve.php │ │ │ │ └── Update.php │ │ │ ├── ApiRequestor.php │ │ │ ├── ApiResource.php │ │ │ ├── ApiResponse.php │ │ │ ├── ApplePayDomain.php │ │ │ ├── ApplicationFee.php │ │ │ ├── ApplicationFeeRefund.php │ │ │ ├── Balance.php │ │ │ ├── BalanceTransaction.php │ │ │ ├── BankAccount.php │ │ │ ├── BitcoinReceiver.php │ │ │ ├── BitcoinTransaction.php │ │ │ ├── Capability.php │ │ │ ├── Card.php │ │ │ ├── Charge.php │ │ │ ├── Checkout │ │ │ │ └── Session.php │ │ │ ├── Collection.php │ │ │ ├── CountrySpec.php │ │ │ ├── Coupon.php │ │ │ ├── CreditNote.php │ │ │ ├── Customer.php │ │ │ ├── CustomerBalanceTransaction.php │ │ │ ├── Discount.php │ │ │ ├── Dispute.php │ │ │ ├── EphemeralKey.php │ │ │ ├── Error │ │ │ │ ├── Api.php │ │ │ │ ├── ApiConnection.php │ │ │ │ ├── Authentication.php │ │ │ │ ├── Base.php │ │ │ │ ├── Card.php │ │ │ │ ├── Idempotency.php │ │ │ │ ├── InvalidRequest.php │ │ │ │ ├── OAuth │ │ │ │ │ ├── InvalidClient.php │ │ │ │ │ ├── InvalidGrant.php │ │ │ │ │ ├── InvalidRequest.php │ │ │ │ │ ├── InvalidScope.php │ │ │ │ │ ├── OAuthBase.php │ │ │ │ │ ├── UnsupportedGrantType.php │ │ │ │ │ └── UnsupportedResponseType.php │ │ │ │ ├── Permission.php │ │ │ │ ├── RateLimit.php │ │ │ │ └── SignatureVerification.php │ │ │ ├── Event.php │ │ │ ├── ExchangeRate.php │ │ │ ├── File.php │ │ │ ├── FileLink.php │ │ │ ├── FileUpload.php │ │ │ ├── HttpClient │ │ │ │ ├── ClientInterface.php │ │ │ │ └── CurlClient.php │ │ │ ├── Invoice.php │ │ │ ├── InvoiceItem.php │ │ │ ├── InvoiceLineItem.php │ │ │ ├── IssuerFraudRecord.php │ │ │ ├── Issuing │ │ │ │ ├── Authorization.php │ │ │ │ ├── Card.php │ │ │ │ ├── CardDetails.php │ │ │ │ ├── Cardholder.php │ │ │ │ ├── Dispute.php │ │ │ │ └── Transaction.php │ │ │ ├── LoginLink.php │ │ │ ├── OAuth.php │ │ │ ├── Order.php │ │ │ ├── OrderItem.php │ │ │ ├── OrderReturn.php │ │ │ ├── PaymentIntent.php │ │ │ ├── PaymentMethod.php │ │ │ ├── Payout.php │ │ │ ├── Person.php │ │ │ ├── Plan.php │ │ │ ├── Product.php │ │ │ ├── Radar │ │ │ │ ├── EarlyFraudWarning.php │ │ │ │ ├── ValueList.php │ │ │ │ └── ValueListItem.php │ │ │ ├── Recipient.php │ │ │ ├── RecipientTransfer.php │ │ │ ├── Refund.php │ │ │ ├── Reporting │ │ │ │ ├── ReportRun.php │ │ │ │ └── ReportType.php │ │ │ ├── RequestTelemetry.php │ │ │ ├── Review.php │ │ │ ├── SKU.php │ │ │ ├── SetupIntent.php │ │ │ ├── Sigma │ │ │ │ └── ScheduledQueryRun.php │ │ │ ├── SingletonApiResource.php │ │ │ ├── Source.php │ │ │ ├── SourceTransaction.php │ │ │ ├── Stripe.php │ │ │ ├── StripeObject.php │ │ │ ├── Subscription.php │ │ │ ├── SubscriptionItem.php │ │ │ ├── SubscriptionSchedule.php │ │ │ ├── TaxId.php │ │ │ ├── TaxRate.php │ │ │ ├── Terminal │ │ │ │ ├── ConnectionToken.php │ │ │ │ ├── Location.php │ │ │ │ └── Reader.php │ │ │ ├── ThreeDSecure.php │ │ │ ├── Token.php │ │ │ ├── Topup.php │ │ │ ├── Transfer.php │ │ │ ├── TransferReversal.php │ │ │ ├── UsageRecord.php │ │ │ ├── UsageRecordSummary.php │ │ │ ├── Util │ │ │ │ ├── AutoPagingIterator.php │ │ │ │ ├── CaseInsensitiveArray.php │ │ │ │ ├── DefaultLogger.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── RandomGenerator.php │ │ │ │ ├── RequestOptions.php │ │ │ │ ├── Set.php │ │ │ │ └── Util.php │ │ │ ├── Webhook.php │ │ │ ├── WebhookEndpoint.php │ │ │ └── WebhookSignature.php │ │ │ └── update_certs.php │ ├── studio-42 │ │ └── elfinder │ │ │ ├── .gitignore │ │ │ ├── Changelog │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── elfinder.html │ │ │ ├── elfinder.legacy.html │ │ │ ├── files │ │ │ ├── .gitkeep │ │ │ └── .trash │ │ │ │ └── .gitkeep │ │ │ ├── main.default.js │ │ │ ├── package.json │ │ │ └── php │ │ │ ├── .tmp │ │ │ └── .htaccess │ │ │ ├── MySQLStorage.sql │ │ │ ├── autoload.php │ │ │ ├── connector.minimal.php-dist │ │ │ ├── editors │ │ │ ├── OnlineConvert │ │ │ │ └── editor.php │ │ │ ├── ZipArchive │ │ │ │ └── editor.php │ │ │ ├── ZohoOffice │ │ │ │ └── editor.php │ │ │ └── editor.php │ │ │ ├── elFinder.class.php │ │ │ ├── elFinderConnector.class.php │ │ │ ├── elFinderFlysystemGoogleDriveNetmount.php │ │ │ ├── elFinderPlugin.php │ │ │ ├── elFinderSession.php │ │ │ ├── elFinderSessionInterface.php │ │ │ ├── elFinderVolumeBox.class.php │ │ │ ├── elFinderVolumeDriver.class.php │ │ │ ├── elFinderVolumeDropbox.class.php │ │ │ ├── elFinderVolumeDropbox2.class.php │ │ │ ├── elFinderVolumeFTP.class.php │ │ │ ├── elFinderVolumeGoogleDrive.class.php │ │ │ ├── elFinderVolumeGroup.class.php │ │ │ ├── elFinderVolumeLocalFileSystem.class.php │ │ │ ├── elFinderVolumeMySQL.class.php │ │ │ ├── elFinderVolumeOneDrive.class.php │ │ │ ├── elFinderVolumeTrash.class.php │ │ │ ├── elFinderVolumeTrashMySQL.class.php │ │ │ ├── libs │ │ │ └── GdBmp.php │ │ │ ├── mime.types │ │ │ ├── plugins │ │ │ ├── AutoResize │ │ │ │ └── plugin.php │ │ │ ├── AutoRotate │ │ │ │ └── plugin.php │ │ │ ├── Normalizer │ │ │ │ └── plugin.php │ │ │ ├── Sanitizer │ │ │ │ └── plugin.php │ │ │ └── Watermark │ │ │ │ ├── logo.png │ │ │ │ └── plugin.php │ │ │ └── resources │ │ │ ├── image.png │ │ │ └── video.png │ ├── symfony │ │ ├── http-foundation │ │ │ ├── .gitignore │ │ │ ├── AcceptHeader.php │ │ │ ├── AcceptHeaderItem.php │ │ │ ├── ApacheRequest.php │ │ │ ├── BinaryFileResponse.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Cookie.php │ │ │ ├── Exception │ │ │ │ ├── ConflictingHeadersException.php │ │ │ │ ├── RequestExceptionInterface.php │ │ │ │ └── SuspiciousOperationException.php │ │ │ ├── ExpressionRequestMatcher.php │ │ │ ├── File │ │ │ │ ├── Exception │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ ├── FileException.php │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ │ └── UploadException.php │ │ │ │ ├── File.php │ │ │ │ ├── MimeType │ │ │ │ │ ├── ExtensionGuesser.php │ │ │ │ │ ├── ExtensionGuesserInterface.php │ │ │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ │ │ ├── MimeTypeGuesser.php │ │ │ │ │ └── MimeTypeGuesserInterface.php │ │ │ │ ├── Stream.php │ │ │ │ └── UploadedFile.php │ │ │ ├── FileBag.php │ │ │ ├── HeaderBag.php │ │ │ ├── IpUtils.php │ │ │ ├── JsonResponse.php │ │ │ ├── LICENSE │ │ │ ├── ParameterBag.php │ │ │ ├── README.md │ │ │ ├── RedirectResponse.php │ │ │ ├── Request.php │ │ │ ├── RequestMatcher.php │ │ │ ├── RequestMatcherInterface.php │ │ │ ├── RequestStack.php │ │ │ ├── Response.php │ │ │ ├── ResponseHeaderBag.php │ │ │ ├── ServerBag.php │ │ │ ├── Session │ │ │ │ ├── Attribute │ │ │ │ │ ├── AttributeBag.php │ │ │ │ │ ├── AttributeBagInterface.php │ │ │ │ │ └── NamespacedAttributeBag.php │ │ │ │ ├── Flash │ │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ │ ├── FlashBag.php │ │ │ │ │ └── FlashBagInterface.php │ │ │ │ ├── Session.php │ │ │ │ ├── SessionBagInterface.php │ │ │ │ ├── SessionBagProxy.php │ │ │ │ ├── SessionInterface.php │ │ │ │ └── Storage │ │ │ │ │ ├── Handler │ │ │ │ │ ├── AbstractSessionHandler.php │ │ │ │ │ ├── MemcacheSessionHandler.php │ │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ │ ├── NativeSessionHandler.php │ │ │ │ │ ├── NullSessionHandler.php │ │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ │ ├── StrictSessionHandler.php │ │ │ │ │ └── WriteCheckSessionHandler.php │ │ │ │ │ ├── MetadataBag.php │ │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ │ ├── Proxy │ │ │ │ │ ├── AbstractProxy.php │ │ │ │ │ ├── NativeProxy.php │ │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ │ └── SessionStorageInterface.php │ │ │ ├── StreamedResponse.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── polyfill-mbstring │ │ │ ├── LICENSE │ │ │ ├── Mbstring.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── unidata │ │ │ │ │ ├── lowerCase.php │ │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ │ └── upperCase.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── polyfill-php70 │ │ │ ├── LICENSE │ │ │ ├── Php70.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── stubs │ │ │ │ │ ├── ArithmeticError.php │ │ │ │ │ ├── AssertionError.php │ │ │ │ │ ├── DivisionByZeroError.php │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── ParseError.php │ │ │ │ │ ├── SessionUpdateTimestampHandlerInterface.php │ │ │ │ │ └── TypeError.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ └── translation │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Catalogue │ │ │ ├── AbstractOperation.php │ │ │ ├── MergeOperation.php │ │ │ ├── OperationInterface.php │ │ │ └── TargetOperation.php │ │ │ ├── Command │ │ │ └── XliffLintCommand.php │ │ │ ├── DataCollector │ │ │ └── TranslationDataCollector.php │ │ │ ├── DataCollectorTranslator.php │ │ │ ├── DependencyInjection │ │ │ ├── TranslationDumperPass.php │ │ │ ├── TranslationExtractorPass.php │ │ │ └── TranslatorPass.php │ │ │ ├── Dumper │ │ │ ├── CsvFileDumper.php │ │ │ ├── DumperInterface.php │ │ │ ├── FileDumper.php │ │ │ ├── IcuResFileDumper.php │ │ │ ├── IniFileDumper.php │ │ │ ├── JsonFileDumper.php │ │ │ ├── MoFileDumper.php │ │ │ ├── PhpFileDumper.php │ │ │ ├── PoFileDumper.php │ │ │ ├── QtFileDumper.php │ │ │ ├── XliffFileDumper.php │ │ │ └── YamlFileDumper.php │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidResourceException.php │ │ │ ├── LogicException.php │ │ │ ├── NotFoundResourceException.php │ │ │ └── RuntimeException.php │ │ │ ├── Extractor │ │ │ ├── AbstractFileExtractor.php │ │ │ ├── ChainExtractor.php │ │ │ ├── ExtractorInterface.php │ │ │ ├── PhpExtractor.php │ │ │ └── PhpStringTokenParser.php │ │ │ ├── Formatter │ │ │ ├── ChoiceMessageFormatterInterface.php │ │ │ ├── MessageFormatter.php │ │ │ └── MessageFormatterInterface.php │ │ │ ├── IdentityTranslator.php │ │ │ ├── Interval.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 │ │ │ └── schema │ │ │ │ └── dic │ │ │ │ └── xliff-core │ │ │ │ ├── xliff-core-1.2-strict.xsd │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ └── xml.xsd │ │ │ ├── LoggingTranslator.php │ │ │ ├── MessageCatalogue.php │ │ │ ├── MessageCatalogueInterface.php │ │ │ ├── MessageSelector.php │ │ │ ├── MetadataAwareInterface.php │ │ │ ├── PluralizationRules.php │ │ │ ├── README.md │ │ │ ├── Reader │ │ │ ├── TranslationReader.php │ │ │ └── TranslationReaderInterface.php │ │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── translation-status.php │ │ │ └── schemas │ │ │ │ └── xliff-core-1.2-strict.xsd │ │ │ ├── Translator.php │ │ │ ├── TranslatorBagInterface.php │ │ │ ├── TranslatorInterface.php │ │ │ ├── Util │ │ │ └── ArrayConverter.php │ │ │ ├── Writer │ │ │ ├── TranslationWriter.php │ │ │ └── TranslationWriterInterface.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ ├── tecnickcom │ │ └── tcpdf │ │ │ ├── LICENSE.TXT │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── config │ │ │ └── tcpdf_config.php │ │ │ ├── fonts │ │ │ ├── aealarabiya.ctg.z │ │ │ ├── aealarabiya.php │ │ │ ├── aealarabiya.z │ │ │ ├── aefurat.ctg.z │ │ │ ├── aefurat.php │ │ │ ├── aefurat.z │ │ │ ├── angsanaupc.ctg.z │ │ │ ├── angsanaupc.php │ │ │ ├── angsanaupc.z │ │ │ ├── angsanaupcb.ctg.z │ │ │ ├── angsanaupcb.php │ │ │ ├── angsanaupcb.z │ │ │ ├── angsanaupcbi.ctg.z │ │ │ ├── angsanaupcbi.php │ │ │ ├── angsanaupcbi.z │ │ │ ├── angsanaupci.ctg.z │ │ │ ├── angsanaupci.php │ │ │ ├── angsanaupci.z │ │ │ ├── cid0cs.php │ │ │ ├── cid0ct.php │ │ │ ├── cid0jp.php │ │ │ ├── cid0kr.php │ │ │ ├── cordiaupc.ctg.z │ │ │ ├── cordiaupc.php │ │ │ ├── cordiaupc.z │ │ │ ├── cordiaupcb.ctg.z │ │ │ ├── cordiaupcb.php │ │ │ ├── cordiaupcb.z │ │ │ ├── cordiaupcbi.ctg.z │ │ │ ├── cordiaupcbi.php │ │ │ ├── cordiaupcbi.z │ │ │ ├── cordiaupci.ctg.z │ │ │ ├── cordiaupci.php │ │ │ ├── cordiaupci.z │ │ │ ├── courier.php │ │ │ ├── courierb.php │ │ │ ├── courierbi.php │ │ │ ├── courieri.php │ │ │ ├── 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 │ │ │ ├── droidsansfallback.ctg.z │ │ │ ├── droidsansfallback.php │ │ │ ├── droidsansfallback.z │ │ │ ├── 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 │ │ │ ├── hind.ctg.z │ │ │ ├── hind.php │ │ │ ├── hind.z │ │ │ ├── hindb.ctg.z │ │ │ ├── hindb.php │ │ │ ├── hindb.z │ │ │ ├── hysmyeongjostdmedium.php │ │ │ ├── kozgopromedium.php │ │ │ ├── kozminproregular.php │ │ │ ├── msungstdlight.php │ │ │ ├── notosans.ctg.z │ │ │ ├── notosans.php │ │ │ ├── notosans.z │ │ │ ├── notosansb.ctg.z │ │ │ ├── notosansb.php │ │ │ ├── notosansb.z │ │ │ ├── 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 │ │ │ ├── roboto.ctg.z │ │ │ ├── roboto.php │ │ │ ├── roboto.z │ │ │ ├── robotob.ctg.z │ │ │ ├── robotob.php │ │ │ ├── robotob.z │ │ │ ├── stsongstdlight.php │ │ │ ├── symbol.php │ │ │ ├── thniramitas.ctg.z │ │ │ ├── thniramitas.php │ │ │ ├── thniramitas.z │ │ │ ├── thniramitasb.ctg.z │ │ │ ├── thniramitasb.php │ │ │ ├── thniramitasb.z │ │ │ ├── thniramitasbi.ctg.z │ │ │ ├── thniramitasbi.php │ │ │ ├── thniramitasbi.z │ │ │ ├── thniramitasi.ctg.z │ │ │ ├── thniramitasi.php │ │ │ ├── thniramitasi.z │ │ │ ├── thsarabun.ctg.z │ │ │ ├── thsarabun.php │ │ │ ├── thsarabun.z │ │ │ ├── thsarabunb.ctg.z │ │ │ ├── thsarabunb.php │ │ │ ├── thsarabunb.z │ │ │ ├── thsarabunbi.ctg.z │ │ │ ├── thsarabunbi.php │ │ │ ├── thsarabunbi.z │ │ │ ├── thsarabuni.ctg.z │ │ │ ├── thsarabuni.php │ │ │ ├── thsarabuni.z │ │ │ ├── times.php │ │ │ ├── timesb.php │ │ │ ├── timesbi.php │ │ │ ├── timesi.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 │ │ │ ├── tcpdf_import.php │ │ │ ├── tcpdf_parser.php │ │ │ └── tools │ │ │ ├── .htaccess │ │ │ ├── convert_fonts_examples.txt │ │ │ └── tcpdf_addfont.php │ ├── twilio │ │ └── sdk │ │ │ ├── Dockerfile │ │ │ ├── Services │ │ │ └── Twilio.php │ │ │ ├── Twilio │ │ │ ├── Deserialize.php │ │ │ ├── Domain.php │ │ │ ├── Exceptions │ │ │ │ ├── ConfigurationException.php │ │ │ │ ├── DeserializeException.php │ │ │ │ ├── EnvironmentException.php │ │ │ │ ├── HttpException.php │ │ │ │ ├── RestException.php │ │ │ │ ├── TwilioException.php │ │ │ │ └── TwimlException.php │ │ │ ├── Http │ │ │ │ ├── Client.php │ │ │ │ ├── CurlClient.php │ │ │ │ └── Response.php │ │ │ ├── InstanceContext.php │ │ │ ├── InstanceResource.php │ │ │ ├── Jwt │ │ │ │ ├── AccessToken.php │ │ │ │ ├── Client │ │ │ │ │ └── ScopeURI.php │ │ │ │ ├── ClientToken.php │ │ │ │ ├── Grants │ │ │ │ │ ├── ChatGrant.php │ │ │ │ │ ├── ConversationsGrant.php │ │ │ │ │ ├── Grant.php │ │ │ │ │ ├── IpMessagingGrant.php │ │ │ │ │ ├── SyncGrant.php │ │ │ │ │ ├── TaskRouterGrant.php │ │ │ │ │ ├── VideoGrant.php │ │ │ │ │ └── VoiceGrant.php │ │ │ │ ├── JWT.php │ │ │ │ └── TaskRouter │ │ │ │ │ ├── CapabilityToken.php │ │ │ │ │ ├── Policy.php │ │ │ │ │ ├── TaskQueueCapability.php │ │ │ │ │ ├── WorkerCapability.php │ │ │ │ │ └── WorkspaceCapability.php │ │ │ ├── ListResource.php │ │ │ ├── Options.php │ │ │ ├── Page.php │ │ │ ├── Rest │ │ │ │ ├── Accounts.php │ │ │ │ ├── Accounts │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── Credential │ │ │ │ │ │ ├── AwsContext.php │ │ │ │ │ │ ├── AwsInstance.php │ │ │ │ │ │ ├── AwsList.php │ │ │ │ │ │ ├── AwsOptions.php │ │ │ │ │ │ ├── AwsPage.php │ │ │ │ │ │ ├── PublicKeyContext.php │ │ │ │ │ │ ├── PublicKeyInstance.php │ │ │ │ │ │ ├── PublicKeyList.php │ │ │ │ │ │ ├── PublicKeyOptions.php │ │ │ │ │ │ └── PublicKeyPage.php │ │ │ │ │ │ ├── CredentialInstance.php │ │ │ │ │ │ ├── CredentialList.php │ │ │ │ │ │ └── CredentialPage.php │ │ │ │ ├── Api.php │ │ │ │ ├── Api │ │ │ │ │ ├── V2010.php │ │ │ │ │ └── V2010 │ │ │ │ │ │ ├── Account │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ ├── DependentPhoneNumberInstance.php │ │ │ │ │ │ │ ├── DependentPhoneNumberList.php │ │ │ │ │ │ │ └── DependentPhoneNumberPage.php │ │ │ │ │ │ ├── AddressContext.php │ │ │ │ │ │ ├── AddressInstance.php │ │ │ │ │ │ ├── AddressList.php │ │ │ │ │ │ ├── AddressOptions.php │ │ │ │ │ │ ├── AddressPage.php │ │ │ │ │ │ ├── ApplicationContext.php │ │ │ │ │ │ ├── ApplicationInstance.php │ │ │ │ │ │ ├── ApplicationList.php │ │ │ │ │ │ ├── ApplicationOptions.php │ │ │ │ │ │ ├── ApplicationPage.php │ │ │ │ │ │ ├── AuthorizedConnectAppContext.php │ │ │ │ │ │ ├── AuthorizedConnectAppInstance.php │ │ │ │ │ │ ├── AuthorizedConnectAppList.php │ │ │ │ │ │ ├── AuthorizedConnectAppPage.php │ │ │ │ │ │ ├── AvailablePhoneNumberCountry │ │ │ │ │ │ │ ├── LocalInstance.php │ │ │ │ │ │ │ ├── LocalList.php │ │ │ │ │ │ │ ├── LocalOptions.php │ │ │ │ │ │ │ ├── LocalPage.php │ │ │ │ │ │ │ ├── MachineToMachineInstance.php │ │ │ │ │ │ │ ├── MachineToMachineList.php │ │ │ │ │ │ │ ├── MachineToMachineOptions.php │ │ │ │ │ │ │ ├── MachineToMachinePage.php │ │ │ │ │ │ │ ├── MobileInstance.php │ │ │ │ │ │ │ ├── MobileList.php │ │ │ │ │ │ │ ├── MobileOptions.php │ │ │ │ │ │ │ ├── MobilePage.php │ │ │ │ │ │ │ ├── NationalInstance.php │ │ │ │ │ │ │ ├── NationalList.php │ │ │ │ │ │ │ ├── NationalOptions.php │ │ │ │ │ │ │ ├── NationalPage.php │ │ │ │ │ │ │ ├── SharedCostInstance.php │ │ │ │ │ │ │ ├── SharedCostList.php │ │ │ │ │ │ │ ├── SharedCostOptions.php │ │ │ │ │ │ │ ├── SharedCostPage.php │ │ │ │ │ │ │ ├── TollFreeInstance.php │ │ │ │ │ │ │ ├── TollFreeList.php │ │ │ │ │ │ │ ├── TollFreeOptions.php │ │ │ │ │ │ │ ├── TollFreePage.php │ │ │ │ │ │ │ ├── VoipInstance.php │ │ │ │ │ │ │ ├── VoipList.php │ │ │ │ │ │ │ ├── VoipOptions.php │ │ │ │ │ │ │ └── VoipPage.php │ │ │ │ │ │ ├── AvailablePhoneNumberCountryContext.php │ │ │ │ │ │ ├── AvailablePhoneNumberCountryInstance.php │ │ │ │ │ │ ├── AvailablePhoneNumberCountryList.php │ │ │ │ │ │ ├── AvailablePhoneNumberCountryPage.php │ │ │ │ │ │ ├── BalanceInstance.php │ │ │ │ │ │ ├── BalanceList.php │ │ │ │ │ │ ├── BalancePage.php │ │ │ │ │ │ ├── Call │ │ │ │ │ │ │ ├── FeedbackContext.php │ │ │ │ │ │ │ ├── FeedbackInstance.php │ │ │ │ │ │ │ ├── FeedbackList.php │ │ │ │ │ │ │ ├── FeedbackOptions.php │ │ │ │ │ │ │ ├── FeedbackPage.php │ │ │ │ │ │ │ ├── FeedbackSummaryContext.php │ │ │ │ │ │ │ ├── FeedbackSummaryInstance.php │ │ │ │ │ │ │ ├── FeedbackSummaryList.php │ │ │ │ │ │ │ ├── FeedbackSummaryOptions.php │ │ │ │ │ │ │ ├── FeedbackSummaryPage.php │ │ │ │ │ │ │ ├── NotificationContext.php │ │ │ │ │ │ │ ├── NotificationInstance.php │ │ │ │ │ │ │ ├── NotificationList.php │ │ │ │ │ │ │ ├── NotificationOptions.php │ │ │ │ │ │ │ ├── NotificationPage.php │ │ │ │ │ │ │ ├── RecordingContext.php │ │ │ │ │ │ │ ├── RecordingInstance.php │ │ │ │ │ │ │ ├── RecordingList.php │ │ │ │ │ │ │ ├── RecordingOptions.php │ │ │ │ │ │ │ └── RecordingPage.php │ │ │ │ │ │ ├── CallContext.php │ │ │ │ │ │ ├── CallInstance.php │ │ │ │ │ │ ├── CallList.php │ │ │ │ │ │ ├── CallOptions.php │ │ │ │ │ │ ├── CallPage.php │ │ │ │ │ │ ├── Conference │ │ │ │ │ │ │ ├── ParticipantContext.php │ │ │ │ │ │ │ ├── ParticipantInstance.php │ │ │ │ │ │ │ ├── ParticipantList.php │ │ │ │ │ │ │ ├── ParticipantOptions.php │ │ │ │ │ │ │ ├── ParticipantPage.php │ │ │ │ │ │ │ ├── RecordingContext.php │ │ │ │ │ │ │ ├── RecordingInstance.php │ │ │ │ │ │ │ ├── RecordingList.php │ │ │ │ │ │ │ ├── RecordingOptions.php │ │ │ │ │ │ │ └── RecordingPage.php │ │ │ │ │ │ ├── ConferenceContext.php │ │ │ │ │ │ ├── ConferenceInstance.php │ │ │ │ │ │ ├── ConferenceList.php │ │ │ │ │ │ ├── ConferenceOptions.php │ │ │ │ │ │ ├── ConferencePage.php │ │ │ │ │ │ ├── ConnectAppContext.php │ │ │ │ │ │ ├── ConnectAppInstance.php │ │ │ │ │ │ ├── ConnectAppList.php │ │ │ │ │ │ ├── ConnectAppOptions.php │ │ │ │ │ │ ├── ConnectAppPage.php │ │ │ │ │ │ ├── IncomingPhoneNumber │ │ │ │ │ │ │ ├── AssignedAddOn │ │ │ │ │ │ │ │ ├── AssignedAddOnExtensionContext.php │ │ │ │ │ │ │ │ ├── AssignedAddOnExtensionInstance.php │ │ │ │ │ │ │ │ ├── AssignedAddOnExtensionList.php │ │ │ │ │ │ │ │ └── AssignedAddOnExtensionPage.php │ │ │ │ │ │ │ ├── AssignedAddOnContext.php │ │ │ │ │ │ │ ├── AssignedAddOnInstance.php │ │ │ │ │ │ │ ├── AssignedAddOnList.php │ │ │ │ │ │ │ ├── AssignedAddOnPage.php │ │ │ │ │ │ │ ├── LocalInstance.php │ │ │ │ │ │ │ ├── LocalList.php │ │ │ │ │ │ │ ├── LocalOptions.php │ │ │ │ │ │ │ ├── LocalPage.php │ │ │ │ │ │ │ ├── MobileInstance.php │ │ │ │ │ │ │ ├── MobileList.php │ │ │ │ │ │ │ ├── MobileOptions.php │ │ │ │ │ │ │ ├── MobilePage.php │ │ │ │ │ │ │ ├── TollFreeInstance.php │ │ │ │ │ │ │ ├── TollFreeList.php │ │ │ │ │ │ │ ├── TollFreeOptions.php │ │ │ │ │ │ │ └── TollFreePage.php │ │ │ │ │ │ ├── IncomingPhoneNumberContext.php │ │ │ │ │ │ ├── IncomingPhoneNumberInstance.php │ │ │ │ │ │ ├── IncomingPhoneNumberList.php │ │ │ │ │ │ ├── IncomingPhoneNumberOptions.php │ │ │ │ │ │ ├── IncomingPhoneNumberPage.php │ │ │ │ │ │ ├── KeyContext.php │ │ │ │ │ │ ├── KeyInstance.php │ │ │ │ │ │ ├── KeyList.php │ │ │ │ │ │ ├── KeyOptions.php │ │ │ │ │ │ ├── KeyPage.php │ │ │ │ │ │ ├── Message │ │ │ │ │ │ │ ├── FeedbackInstance.php │ │ │ │ │ │ │ ├── FeedbackList.php │ │ │ │ │ │ │ ├── FeedbackOptions.php │ │ │ │ │ │ │ ├── FeedbackPage.php │ │ │ │ │ │ │ ├── MediaContext.php │ │ │ │ │ │ │ ├── MediaInstance.php │ │ │ │ │ │ │ ├── MediaList.php │ │ │ │ │ │ │ ├── MediaOptions.php │ │ │ │ │ │ │ └── MediaPage.php │ │ │ │ │ │ ├── MessageContext.php │ │ │ │ │ │ ├── MessageInstance.php │ │ │ │ │ │ ├── MessageList.php │ │ │ │ │ │ ├── MessageOptions.php │ │ │ │ │ │ ├── MessagePage.php │ │ │ │ │ │ ├── NewKeyInstance.php │ │ │ │ │ │ ├── NewKeyList.php │ │ │ │ │ │ ├── NewKeyOptions.php │ │ │ │ │ │ ├── NewKeyPage.php │ │ │ │ │ │ ├── NewSigningKeyInstance.php │ │ │ │ │ │ ├── NewSigningKeyList.php │ │ │ │ │ │ ├── NewSigningKeyOptions.php │ │ │ │ │ │ ├── NewSigningKeyPage.php │ │ │ │ │ │ ├── NotificationContext.php │ │ │ │ │ │ ├── NotificationInstance.php │ │ │ │ │ │ ├── NotificationList.php │ │ │ │ │ │ ├── NotificationOptions.php │ │ │ │ │ │ ├── NotificationPage.php │ │ │ │ │ │ ├── OutgoingCallerIdContext.php │ │ │ │ │ │ ├── OutgoingCallerIdInstance.php │ │ │ │ │ │ ├── OutgoingCallerIdList.php │ │ │ │ │ │ ├── OutgoingCallerIdOptions.php │ │ │ │ │ │ ├── OutgoingCallerIdPage.php │ │ │ │ │ │ ├── Queue │ │ │ │ │ │ │ ├── MemberContext.php │ │ │ │ │ │ │ ├── MemberInstance.php │ │ │ │ │ │ │ ├── MemberList.php │ │ │ │ │ │ │ └── MemberPage.php │ │ │ │ │ │ ├── QueueContext.php │ │ │ │ │ │ ├── QueueInstance.php │ │ │ │ │ │ ├── QueueList.php │ │ │ │ │ │ ├── QueueOptions.php │ │ │ │ │ │ ├── QueuePage.php │ │ │ │ │ │ ├── Recording │ │ │ │ │ │ │ ├── AddOnResult │ │ │ │ │ │ │ │ ├── PayloadContext.php │ │ │ │ │ │ │ │ ├── PayloadInstance.php │ │ │ │ │ │ │ │ ├── PayloadList.php │ │ │ │ │ │ │ │ └── PayloadPage.php │ │ │ │ │ │ │ ├── AddOnResultContext.php │ │ │ │ │ │ │ ├── AddOnResultInstance.php │ │ │ │ │ │ │ ├── AddOnResultList.php │ │ │ │ │ │ │ ├── AddOnResultPage.php │ │ │ │ │ │ │ ├── TranscriptionContext.php │ │ │ │ │ │ │ ├── TranscriptionInstance.php │ │ │ │ │ │ │ ├── TranscriptionList.php │ │ │ │ │ │ │ └── TranscriptionPage.php │ │ │ │ │ │ ├── RecordingContext.php │ │ │ │ │ │ ├── RecordingInstance.php │ │ │ │ │ │ ├── RecordingList.php │ │ │ │ │ │ ├── RecordingOptions.php │ │ │ │ │ │ ├── RecordingPage.php │ │ │ │ │ │ ├── ShortCodeContext.php │ │ │ │ │ │ ├── ShortCodeInstance.php │ │ │ │ │ │ ├── ShortCodeList.php │ │ │ │ │ │ ├── ShortCodeOptions.php │ │ │ │ │ │ ├── ShortCodePage.php │ │ │ │ │ │ ├── SigningKeyContext.php │ │ │ │ │ │ ├── SigningKeyInstance.php │ │ │ │ │ │ ├── SigningKeyList.php │ │ │ │ │ │ ├── SigningKeyOptions.php │ │ │ │ │ │ ├── SigningKeyPage.php │ │ │ │ │ │ ├── Sip │ │ │ │ │ │ │ ├── CredentialList │ │ │ │ │ │ │ │ ├── CredentialContext.php │ │ │ │ │ │ │ │ ├── CredentialInstance.php │ │ │ │ │ │ │ │ ├── CredentialList.php │ │ │ │ │ │ │ │ ├── CredentialOptions.php │ │ │ │ │ │ │ │ └── CredentialPage.php │ │ │ │ │ │ │ ├── CredentialListContext.php │ │ │ │ │ │ │ ├── CredentialListInstance.php │ │ │ │ │ │ │ ├── CredentialListList.php │ │ │ │ │ │ │ ├── CredentialListPage.php │ │ │ │ │ │ │ ├── Domain │ │ │ │ │ │ │ │ ├── AuthTypes │ │ │ │ │ │ │ │ │ ├── AuthTypeCalls │ │ │ │ │ │ │ │ │ │ ├── AuthCallsCredentialListMappingContext.php │ │ │ │ │ │ │ │ │ │ ├── AuthCallsCredentialListMappingInstance.php │ │ │ │ │ │ │ │ │ │ ├── AuthCallsCredentialListMappingList.php │ │ │ │ │ │ │ │ │ │ ├── AuthCallsCredentialListMappingPage.php │ │ │ │ │ │ │ │ │ │ ├── AuthCallsIpAccessControlListMappingContext.php │ │ │ │ │ │ │ │ │ │ ├── AuthCallsIpAccessControlListMappingInstance.php │ │ │ │ │ │ │ │ │ │ ├── AuthCallsIpAccessControlListMappingList.php │ │ │ │ │ │ │ │ │ │ └── AuthCallsIpAccessControlListMappingPage.php │ │ │ │ │ │ │ │ │ ├── AuthTypeCallsInstance.php │ │ │ │ │ │ │ │ │ ├── AuthTypeCallsList.php │ │ │ │ │ │ │ │ │ ├── AuthTypeCallsPage.php │ │ │ │ │ │ │ │ │ ├── AuthTypeRegistrations │ │ │ │ │ │ │ │ │ │ ├── AuthRegistrationsCredentialListMappingContext.php │ │ │ │ │ │ │ │ │ │ ├── AuthRegistrationsCredentialListMappingInstance.php │ │ │ │ │ │ │ │ │ │ ├── AuthRegistrationsCredentialListMappingList.php │ │ │ │ │ │ │ │ │ │ └── AuthRegistrationsCredentialListMappingPage.php │ │ │ │ │ │ │ │ │ ├── AuthTypeRegistrationsInstance.php │ │ │ │ │ │ │ │ │ ├── AuthTypeRegistrationsList.php │ │ │ │ │ │ │ │ │ └── AuthTypeRegistrationsPage.php │ │ │ │ │ │ │ │ ├── AuthTypesInstance.php │ │ │ │ │ │ │ │ ├── AuthTypesList.php │ │ │ │ │ │ │ │ ├── AuthTypesPage.php │ │ │ │ │ │ │ │ ├── CredentialListMappingContext.php │ │ │ │ │ │ │ │ ├── CredentialListMappingInstance.php │ │ │ │ │ │ │ │ ├── CredentialListMappingList.php │ │ │ │ │ │ │ │ ├── CredentialListMappingPage.php │ │ │ │ │ │ │ │ ├── IpAccessControlListMappingContext.php │ │ │ │ │ │ │ │ ├── IpAccessControlListMappingInstance.php │ │ │ │ │ │ │ │ ├── IpAccessControlListMappingList.php │ │ │ │ │ │ │ │ └── IpAccessControlListMappingPage.php │ │ │ │ │ │ │ ├── DomainContext.php │ │ │ │ │ │ │ ├── DomainInstance.php │ │ │ │ │ │ │ ├── DomainList.php │ │ │ │ │ │ │ ├── DomainOptions.php │ │ │ │ │ │ │ ├── DomainPage.php │ │ │ │ │ │ │ ├── IpAccessControlList │ │ │ │ │ │ │ │ ├── IpAddressContext.php │ │ │ │ │ │ │ │ ├── IpAddressInstance.php │ │ │ │ │ │ │ │ ├── IpAddressList.php │ │ │ │ │ │ │ │ ├── IpAddressOptions.php │ │ │ │ │ │ │ │ └── IpAddressPage.php │ │ │ │ │ │ │ ├── IpAccessControlListContext.php │ │ │ │ │ │ │ ├── IpAccessControlListInstance.php │ │ │ │ │ │ │ ├── IpAccessControlListList.php │ │ │ │ │ │ │ └── IpAccessControlListPage.php │ │ │ │ │ │ ├── SipInstance.php │ │ │ │ │ │ ├── SipList.php │ │ │ │ │ │ ├── SipPage.php │ │ │ │ │ │ ├── TokenInstance.php │ │ │ │ │ │ ├── TokenList.php │ │ │ │ │ │ ├── TokenOptions.php │ │ │ │ │ │ ├── TokenPage.php │ │ │ │ │ │ ├── TranscriptionContext.php │ │ │ │ │ │ ├── TranscriptionInstance.php │ │ │ │ │ │ ├── TranscriptionList.php │ │ │ │ │ │ ├── TranscriptionPage.php │ │ │ │ │ │ ├── Usage │ │ │ │ │ │ │ ├── Record │ │ │ │ │ │ │ │ ├── AllTimeInstance.php │ │ │ │ │ │ │ │ ├── AllTimeList.php │ │ │ │ │ │ │ │ ├── AllTimeOptions.php │ │ │ │ │ │ │ │ ├── AllTimePage.php │ │ │ │ │ │ │ │ ├── DailyInstance.php │ │ │ │ │ │ │ │ ├── DailyList.php │ │ │ │ │ │ │ │ ├── DailyOptions.php │ │ │ │ │ │ │ │ ├── DailyPage.php │ │ │ │ │ │ │ │ ├── LastMonthInstance.php │ │ │ │ │ │ │ │ ├── LastMonthList.php │ │ │ │ │ │ │ │ ├── LastMonthOptions.php │ │ │ │ │ │ │ │ ├── LastMonthPage.php │ │ │ │ │ │ │ │ ├── MonthlyInstance.php │ │ │ │ │ │ │ │ ├── MonthlyList.php │ │ │ │ │ │ │ │ ├── MonthlyOptions.php │ │ │ │ │ │ │ │ ├── MonthlyPage.php │ │ │ │ │ │ │ │ ├── ThisMonthInstance.php │ │ │ │ │ │ │ │ ├── ThisMonthList.php │ │ │ │ │ │ │ │ ├── ThisMonthOptions.php │ │ │ │ │ │ │ │ ├── ThisMonthPage.php │ │ │ │ │ │ │ │ ├── TodayInstance.php │ │ │ │ │ │ │ │ ├── TodayList.php │ │ │ │ │ │ │ │ ├── TodayOptions.php │ │ │ │ │ │ │ │ ├── TodayPage.php │ │ │ │ │ │ │ │ ├── YearlyInstance.php │ │ │ │ │ │ │ │ ├── YearlyList.php │ │ │ │ │ │ │ │ ├── YearlyOptions.php │ │ │ │ │ │ │ │ ├── YearlyPage.php │ │ │ │ │ │ │ │ ├── YesterdayInstance.php │ │ │ │ │ │ │ │ ├── YesterdayList.php │ │ │ │ │ │ │ │ ├── YesterdayOptions.php │ │ │ │ │ │ │ │ └── YesterdayPage.php │ │ │ │ │ │ │ ├── RecordInstance.php │ │ │ │ │ │ │ ├── RecordList.php │ │ │ │ │ │ │ ├── RecordOptions.php │ │ │ │ │ │ │ ├── RecordPage.php │ │ │ │ │ │ │ ├── TriggerContext.php │ │ │ │ │ │ │ ├── TriggerInstance.php │ │ │ │ │ │ │ ├── TriggerList.php │ │ │ │ │ │ │ ├── TriggerOptions.php │ │ │ │ │ │ │ └── TriggerPage.php │ │ │ │ │ │ ├── UsageInstance.php │ │ │ │ │ │ ├── UsageList.php │ │ │ │ │ │ ├── UsagePage.php │ │ │ │ │ │ ├── ValidationRequestInstance.php │ │ │ │ │ │ ├── ValidationRequestList.php │ │ │ │ │ │ ├── ValidationRequestOptions.php │ │ │ │ │ │ └── ValidationRequestPage.php │ │ │ │ │ │ ├── AccountContext.php │ │ │ │ │ │ ├── AccountInstance.php │ │ │ │ │ │ ├── AccountList.php │ │ │ │ │ │ ├── AccountOptions.php │ │ │ │ │ │ └── AccountPage.php │ │ │ │ ├── Authy.php │ │ │ │ ├── Authy │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── FormContext.php │ │ │ │ │ │ ├── FormInstance.php │ │ │ │ │ │ ├── FormList.php │ │ │ │ │ │ ├── FormPage.php │ │ │ │ │ │ ├── Service │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ ├── Factor │ │ │ │ │ │ │ │ ├── ChallengeContext.php │ │ │ │ │ │ │ │ ├── ChallengeInstance.php │ │ │ │ │ │ │ │ ├── ChallengeList.php │ │ │ │ │ │ │ │ ├── ChallengeOptions.php │ │ │ │ │ │ │ │ └── ChallengePage.php │ │ │ │ │ │ │ ├── FactorContext.php │ │ │ │ │ │ │ ├── FactorInstance.php │ │ │ │ │ │ │ ├── FactorList.php │ │ │ │ │ │ │ ├── FactorOptions.php │ │ │ │ │ │ │ └── FactorPage.php │ │ │ │ │ │ ├── EntityContext.php │ │ │ │ │ │ ├── EntityInstance.php │ │ │ │ │ │ ├── EntityList.php │ │ │ │ │ │ └── EntityPage.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── ServiceInstance.php │ │ │ │ │ │ ├── ServiceList.php │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ └── ServicePage.php │ │ │ │ ├── Autopilot.php │ │ │ │ ├── Autopilot │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── Assistant │ │ │ │ │ │ ├── DefaultsContext.php │ │ │ │ │ │ ├── DefaultsInstance.php │ │ │ │ │ │ ├── DefaultsList.php │ │ │ │ │ │ ├── DefaultsOptions.php │ │ │ │ │ │ ├── DefaultsPage.php │ │ │ │ │ │ ├── DialogueContext.php │ │ │ │ │ │ ├── DialogueInstance.php │ │ │ │ │ │ ├── DialogueList.php │ │ │ │ │ │ ├── DialoguePage.php │ │ │ │ │ │ ├── FieldType │ │ │ │ │ │ │ ├── FieldValueContext.php │ │ │ │ │ │ │ ├── FieldValueInstance.php │ │ │ │ │ │ │ ├── FieldValueList.php │ │ │ │ │ │ │ ├── FieldValueOptions.php │ │ │ │ │ │ │ └── FieldValuePage.php │ │ │ │ │ │ ├── FieldTypeContext.php │ │ │ │ │ │ ├── FieldTypeInstance.php │ │ │ │ │ │ ├── FieldTypeList.php │ │ │ │ │ │ ├── FieldTypeOptions.php │ │ │ │ │ │ ├── FieldTypePage.php │ │ │ │ │ │ ├── ModelBuildContext.php │ │ │ │ │ │ ├── ModelBuildInstance.php │ │ │ │ │ │ ├── ModelBuildList.php │ │ │ │ │ │ ├── ModelBuildOptions.php │ │ │ │ │ │ ├── ModelBuildPage.php │ │ │ │ │ │ ├── QueryContext.php │ │ │ │ │ │ ├── QueryInstance.php │ │ │ │ │ │ ├── QueryList.php │ │ │ │ │ │ ├── QueryOptions.php │ │ │ │ │ │ ├── QueryPage.php │ │ │ │ │ │ ├── StyleSheetContext.php │ │ │ │ │ │ ├── StyleSheetInstance.php │ │ │ │ │ │ ├── StyleSheetList.php │ │ │ │ │ │ ├── StyleSheetOptions.php │ │ │ │ │ │ ├── StyleSheetPage.php │ │ │ │ │ │ ├── Task │ │ │ │ │ │ │ ├── FieldContext.php │ │ │ │ │ │ │ ├── FieldInstance.php │ │ │ │ │ │ │ ├── FieldList.php │ │ │ │ │ │ │ ├── FieldPage.php │ │ │ │ │ │ │ ├── SampleContext.php │ │ │ │ │ │ │ ├── SampleInstance.php │ │ │ │ │ │ │ ├── SampleList.php │ │ │ │ │ │ │ ├── SampleOptions.php │ │ │ │ │ │ │ ├── SamplePage.php │ │ │ │ │ │ │ ├── TaskActionsContext.php │ │ │ │ │ │ │ ├── TaskActionsInstance.php │ │ │ │ │ │ │ ├── TaskActionsList.php │ │ │ │ │ │ │ ├── TaskActionsOptions.php │ │ │ │ │ │ │ ├── TaskActionsPage.php │ │ │ │ │ │ │ ├── TaskStatisticsContext.php │ │ │ │ │ │ │ ├── TaskStatisticsInstance.php │ │ │ │ │ │ │ ├── TaskStatisticsList.php │ │ │ │ │ │ │ └── TaskStatisticsPage.php │ │ │ │ │ │ ├── TaskContext.php │ │ │ │ │ │ ├── TaskInstance.php │ │ │ │ │ │ ├── TaskList.php │ │ │ │ │ │ ├── TaskOptions.php │ │ │ │ │ │ └── TaskPage.php │ │ │ │ │ │ ├── AssistantContext.php │ │ │ │ │ │ ├── AssistantInstance.php │ │ │ │ │ │ ├── AssistantList.php │ │ │ │ │ │ ├── AssistantOptions.php │ │ │ │ │ │ └── AssistantPage.php │ │ │ │ ├── Chat.php │ │ │ │ ├── Chat │ │ │ │ │ ├── V1.php │ │ │ │ │ ├── V1 │ │ │ │ │ │ ├── CredentialContext.php │ │ │ │ │ │ ├── CredentialInstance.php │ │ │ │ │ │ ├── CredentialList.php │ │ │ │ │ │ ├── CredentialOptions.php │ │ │ │ │ │ ├── CredentialPage.php │ │ │ │ │ │ ├── Service │ │ │ │ │ │ │ ├── Channel │ │ │ │ │ │ │ │ ├── InviteContext.php │ │ │ │ │ │ │ │ ├── InviteInstance.php │ │ │ │ │ │ │ │ ├── InviteList.php │ │ │ │ │ │ │ │ ├── InviteOptions.php │ │ │ │ │ │ │ │ ├── InvitePage.php │ │ │ │ │ │ │ │ ├── MemberContext.php │ │ │ │ │ │ │ │ ├── MemberInstance.php │ │ │ │ │ │ │ │ ├── MemberList.php │ │ │ │ │ │ │ │ ├── MemberOptions.php │ │ │ │ │ │ │ │ ├── MemberPage.php │ │ │ │ │ │ │ │ ├── MessageContext.php │ │ │ │ │ │ │ │ ├── MessageInstance.php │ │ │ │ │ │ │ │ ├── MessageList.php │ │ │ │ │ │ │ │ ├── MessageOptions.php │ │ │ │ │ │ │ │ └── MessagePage.php │ │ │ │ │ │ │ ├── ChannelContext.php │ │ │ │ │ │ │ ├── ChannelInstance.php │ │ │ │ │ │ │ ├── ChannelList.php │ │ │ │ │ │ │ ├── ChannelOptions.php │ │ │ │ │ │ │ ├── ChannelPage.php │ │ │ │ │ │ │ ├── RoleContext.php │ │ │ │ │ │ │ ├── RoleInstance.php │ │ │ │ │ │ │ ├── RoleList.php │ │ │ │ │ │ │ ├── RolePage.php │ │ │ │ │ │ │ ├── User │ │ │ │ │ │ │ │ ├── UserChannelInstance.php │ │ │ │ │ │ │ │ ├── UserChannelList.php │ │ │ │ │ │ │ │ └── UserChannelPage.php │ │ │ │ │ │ │ ├── UserContext.php │ │ │ │ │ │ │ ├── UserInstance.php │ │ │ │ │ │ │ ├── UserList.php │ │ │ │ │ │ │ ├── UserOptions.php │ │ │ │ │ │ │ └── UserPage.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── ServiceInstance.php │ │ │ │ │ │ ├── ServiceList.php │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ └── ServicePage.php │ │ │ │ │ ├── V2.php │ │ │ │ │ └── V2 │ │ │ │ │ │ ├── CredentialContext.php │ │ │ │ │ │ ├── CredentialInstance.php │ │ │ │ │ │ ├── CredentialList.php │ │ │ │ │ │ ├── CredentialOptions.php │ │ │ │ │ │ ├── CredentialPage.php │ │ │ │ │ │ ├── Service │ │ │ │ │ │ ├── BindingContext.php │ │ │ │ │ │ ├── BindingInstance.php │ │ │ │ │ │ ├── BindingList.php │ │ │ │ │ │ ├── BindingOptions.php │ │ │ │ │ │ ├── BindingPage.php │ │ │ │ │ │ ├── Channel │ │ │ │ │ │ │ ├── InviteContext.php │ │ │ │ │ │ │ ├── InviteInstance.php │ │ │ │ │ │ │ ├── InviteList.php │ │ │ │ │ │ │ ├── InviteOptions.php │ │ │ │ │ │ │ ├── InvitePage.php │ │ │ │ │ │ │ ├── MemberContext.php │ │ │ │ │ │ │ ├── MemberInstance.php │ │ │ │ │ │ │ ├── MemberList.php │ │ │ │ │ │ │ ├── MemberOptions.php │ │ │ │ │ │ │ ├── MemberPage.php │ │ │ │ │ │ │ ├── MessageContext.php │ │ │ │ │ │ │ ├── MessageInstance.php │ │ │ │ │ │ │ ├── MessageList.php │ │ │ │ │ │ │ ├── MessageOptions.php │ │ │ │ │ │ │ ├── MessagePage.php │ │ │ │ │ │ │ ├── WebhookContext.php │ │ │ │ │ │ │ ├── WebhookInstance.php │ │ │ │ │ │ │ ├── WebhookList.php │ │ │ │ │ │ │ ├── WebhookOptions.php │ │ │ │ │ │ │ └── WebhookPage.php │ │ │ │ │ │ ├── ChannelContext.php │ │ │ │ │ │ ├── ChannelInstance.php │ │ │ │ │ │ ├── ChannelList.php │ │ │ │ │ │ ├── ChannelOptions.php │ │ │ │ │ │ ├── ChannelPage.php │ │ │ │ │ │ ├── RoleContext.php │ │ │ │ │ │ ├── RoleInstance.php │ │ │ │ │ │ ├── RoleList.php │ │ │ │ │ │ ├── RolePage.php │ │ │ │ │ │ ├── User │ │ │ │ │ │ │ ├── UserBindingContext.php │ │ │ │ │ │ │ ├── UserBindingInstance.php │ │ │ │ │ │ │ ├── UserBindingList.php │ │ │ │ │ │ │ ├── UserBindingOptions.php │ │ │ │ │ │ │ ├── UserBindingPage.php │ │ │ │ │ │ │ ├── UserChannelContext.php │ │ │ │ │ │ │ ├── UserChannelInstance.php │ │ │ │ │ │ │ ├── UserChannelList.php │ │ │ │ │ │ │ └── UserChannelPage.php │ │ │ │ │ │ ├── UserContext.php │ │ │ │ │ │ ├── UserInstance.php │ │ │ │ │ │ ├── UserList.php │ │ │ │ │ │ ├── UserOptions.php │ │ │ │ │ │ └── UserPage.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── ServiceInstance.php │ │ │ │ │ │ ├── ServiceList.php │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ └── ServicePage.php │ │ │ │ ├── Client.php │ │ │ │ ├── Fax.php │ │ │ │ ├── Fax │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── Fax │ │ │ │ │ │ ├── FaxMediaContext.php │ │ │ │ │ │ ├── FaxMediaInstance.php │ │ │ │ │ │ ├── FaxMediaList.php │ │ │ │ │ │ └── FaxMediaPage.php │ │ │ │ │ │ ├── FaxContext.php │ │ │ │ │ │ ├── FaxInstance.php │ │ │ │ │ │ ├── FaxList.php │ │ │ │ │ │ ├── FaxOptions.php │ │ │ │ │ │ └── FaxPage.php │ │ │ │ ├── FlexApi.php │ │ │ │ ├── FlexApi │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── ConfigurationContext.php │ │ │ │ │ │ ├── ConfigurationInstance.php │ │ │ │ │ │ ├── ConfigurationList.php │ │ │ │ │ │ ├── ConfigurationOptions.php │ │ │ │ │ │ └── ConfigurationPage.php │ │ │ │ ├── Insights.php │ │ │ │ ├── Insights │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── CallSummaryContext.php │ │ │ │ │ │ ├── CallSummaryInstance.php │ │ │ │ │ │ ├── CallSummaryList.php │ │ │ │ │ │ └── CallSummaryPage.php │ │ │ │ ├── IpMessaging.php │ │ │ │ ├── IpMessaging │ │ │ │ │ ├── V1.php │ │ │ │ │ ├── V1 │ │ │ │ │ │ ├── CredentialContext.php │ │ │ │ │ │ ├── CredentialInstance.php │ │ │ │ │ │ ├── CredentialList.php │ │ │ │ │ │ ├── CredentialOptions.php │ │ │ │ │ │ ├── CredentialPage.php │ │ │ │ │ │ ├── Service │ │ │ │ │ │ │ ├── Channel │ │ │ │ │ │ │ │ ├── InviteContext.php │ │ │ │ │ │ │ │ ├── InviteInstance.php │ │ │ │ │ │ │ │ ├── InviteList.php │ │ │ │ │ │ │ │ ├── InviteOptions.php │ │ │ │ │ │ │ │ ├── InvitePage.php │ │ │ │ │ │ │ │ ├── MemberContext.php │ │ │ │ │ │ │ │ ├── MemberInstance.php │ │ │ │ │ │ │ │ ├── MemberList.php │ │ │ │ │ │ │ │ ├── MemberOptions.php │ │ │ │ │ │ │ │ ├── MemberPage.php │ │ │ │ │ │ │ │ ├── MessageContext.php │ │ │ │ │ │ │ │ ├── MessageInstance.php │ │ │ │ │ │ │ │ ├── MessageList.php │ │ │ │ │ │ │ │ ├── MessageOptions.php │ │ │ │ │ │ │ │ └── MessagePage.php │ │ │ │ │ │ │ ├── ChannelContext.php │ │ │ │ │ │ │ ├── ChannelInstance.php │ │ │ │ │ │ │ ├── ChannelList.php │ │ │ │ │ │ │ ├── ChannelOptions.php │ │ │ │ │ │ │ ├── ChannelPage.php │ │ │ │ │ │ │ ├── RoleContext.php │ │ │ │ │ │ │ ├── RoleInstance.php │ │ │ │ │ │ │ ├── RoleList.php │ │ │ │ │ │ │ ├── RolePage.php │ │ │ │ │ │ │ ├── User │ │ │ │ │ │ │ │ ├── UserChannelInstance.php │ │ │ │ │ │ │ │ ├── UserChannelList.php │ │ │ │ │ │ │ │ └── UserChannelPage.php │ │ │ │ │ │ │ ├── UserContext.php │ │ │ │ │ │ │ ├── UserInstance.php │ │ │ │ │ │ │ ├── UserList.php │ │ │ │ │ │ │ ├── UserOptions.php │ │ │ │ │ │ │ └── UserPage.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── ServiceInstance.php │ │ │ │ │ │ ├── ServiceList.php │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ └── ServicePage.php │ │ │ │ │ ├── V2.php │ │ │ │ │ └── V2 │ │ │ │ │ │ ├── CredentialContext.php │ │ │ │ │ │ ├── CredentialInstance.php │ │ │ │ │ │ ├── CredentialList.php │ │ │ │ │ │ ├── CredentialOptions.php │ │ │ │ │ │ ├── CredentialPage.php │ │ │ │ │ │ ├── Service │ │ │ │ │ │ ├── BindingContext.php │ │ │ │ │ │ ├── BindingInstance.php │ │ │ │ │ │ ├── BindingList.php │ │ │ │ │ │ ├── BindingOptions.php │ │ │ │ │ │ ├── BindingPage.php │ │ │ │ │ │ ├── Channel │ │ │ │ │ │ │ ├── InviteContext.php │ │ │ │ │ │ │ ├── InviteInstance.php │ │ │ │ │ │ │ ├── InviteList.php │ │ │ │ │ │ │ ├── InviteOptions.php │ │ │ │ │ │ │ ├── InvitePage.php │ │ │ │ │ │ │ ├── MemberContext.php │ │ │ │ │ │ │ ├── MemberInstance.php │ │ │ │ │ │ │ ├── MemberList.php │ │ │ │ │ │ │ ├── MemberOptions.php │ │ │ │ │ │ │ ├── MemberPage.php │ │ │ │ │ │ │ ├── MessageContext.php │ │ │ │ │ │ │ ├── MessageInstance.php │ │ │ │ │ │ │ ├── MessageList.php │ │ │ │ │ │ │ ├── MessageOptions.php │ │ │ │ │ │ │ ├── MessagePage.php │ │ │ │ │ │ │ ├── WebhookContext.php │ │ │ │ │ │ │ ├── WebhookInstance.php │ │ │ │ │ │ │ ├── WebhookList.php │ │ │ │ │ │ │ ├── WebhookOptions.php │ │ │ │ │ │ │ └── WebhookPage.php │ │ │ │ │ │ ├── ChannelContext.php │ │ │ │ │ │ ├── ChannelInstance.php │ │ │ │ │ │ ├── ChannelList.php │ │ │ │ │ │ ├── ChannelOptions.php │ │ │ │ │ │ ├── ChannelPage.php │ │ │ │ │ │ ├── RoleContext.php │ │ │ │ │ │ ├── RoleInstance.php │ │ │ │ │ │ ├── RoleList.php │ │ │ │ │ │ ├── RolePage.php │ │ │ │ │ │ ├── User │ │ │ │ │ │ │ ├── UserBindingContext.php │ │ │ │ │ │ │ ├── UserBindingInstance.php │ │ │ │ │ │ │ ├── UserBindingList.php │ │ │ │ │ │ │ ├── UserBindingOptions.php │ │ │ │ │ │ │ ├── UserBindingPage.php │ │ │ │ │ │ │ ├── UserChannelContext.php │ │ │ │ │ │ │ ├── UserChannelInstance.php │ │ │ │ │ │ │ ├── UserChannelList.php │ │ │ │ │ │ │ └── UserChannelPage.php │ │ │ │ │ │ ├── UserContext.php │ │ │ │ │ │ ├── UserInstance.php │ │ │ │ │ │ ├── UserList.php │ │ │ │ │ │ ├── UserOptions.php │ │ │ │ │ │ └── UserPage.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── ServiceInstance.php │ │ │ │ │ │ ├── ServiceList.php │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ └── ServicePage.php │ │ │ │ ├── Lookups.php │ │ │ │ ├── Lookups │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── PhoneNumberContext.php │ │ │ │ │ │ ├── PhoneNumberInstance.php │ │ │ │ │ │ ├── PhoneNumberList.php │ │ │ │ │ │ ├── PhoneNumberOptions.php │ │ │ │ │ │ └── PhoneNumberPage.php │ │ │ │ ├── Messaging.php │ │ │ │ ├── Messaging │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── Service │ │ │ │ │ │ ├── AlphaSenderContext.php │ │ │ │ │ │ ├── AlphaSenderInstance.php │ │ │ │ │ │ ├── AlphaSenderList.php │ │ │ │ │ │ ├── AlphaSenderPage.php │ │ │ │ │ │ ├── PhoneNumberContext.php │ │ │ │ │ │ ├── PhoneNumberInstance.php │ │ │ │ │ │ ├── PhoneNumberList.php │ │ │ │ │ │ ├── PhoneNumberPage.php │ │ │ │ │ │ ├── ShortCodeContext.php │ │ │ │ │ │ ├── ShortCodeInstance.php │ │ │ │ │ │ ├── ShortCodeList.php │ │ │ │ │ │ └── ShortCodePage.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── ServiceInstance.php │ │ │ │ │ │ ├── ServiceList.php │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ ├── ServicePage.php │ │ │ │ │ │ ├── Session │ │ │ │ │ │ ├── MessageContext.php │ │ │ │ │ │ ├── MessageInstance.php │ │ │ │ │ │ ├── MessageList.php │ │ │ │ │ │ ├── MessageOptions.php │ │ │ │ │ │ ├── MessagePage.php │ │ │ │ │ │ ├── ParticipantContext.php │ │ │ │ │ │ ├── ParticipantInstance.php │ │ │ │ │ │ ├── ParticipantList.php │ │ │ │ │ │ ├── ParticipantOptions.php │ │ │ │ │ │ └── ParticipantPage.php │ │ │ │ │ │ ├── SessionContext.php │ │ │ │ │ │ ├── SessionInstance.php │ │ │ │ │ │ ├── SessionList.php │ │ │ │ │ │ ├── SessionOptions.php │ │ │ │ │ │ ├── SessionPage.php │ │ │ │ │ │ ├── WebhookContext.php │ │ │ │ │ │ ├── WebhookInstance.php │ │ │ │ │ │ ├── WebhookList.php │ │ │ │ │ │ ├── WebhookOptions.php │ │ │ │ │ │ └── WebhookPage.php │ │ │ │ ├── Monitor.php │ │ │ │ ├── Monitor │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── AlertContext.php │ │ │ │ │ │ ├── AlertInstance.php │ │ │ │ │ │ ├── AlertList.php │ │ │ │ │ │ ├── AlertOptions.php │ │ │ │ │ │ ├── AlertPage.php │ │ │ │ │ │ ├── EventContext.php │ │ │ │ │ │ ├── EventInstance.php │ │ │ │ │ │ ├── EventList.php │ │ │ │ │ │ ├── EventOptions.php │ │ │ │ │ │ └── EventPage.php │ │ │ │ ├── Notify.php │ │ │ │ ├── Notify │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── CredentialContext.php │ │ │ │ │ │ ├── CredentialInstance.php │ │ │ │ │ │ ├── CredentialList.php │ │ │ │ │ │ ├── CredentialOptions.php │ │ │ │ │ │ ├── CredentialPage.php │ │ │ │ │ │ ├── Service │ │ │ │ │ │ ├── BindingContext.php │ │ │ │ │ │ ├── BindingInstance.php │ │ │ │ │ │ ├── BindingList.php │ │ │ │ │ │ ├── BindingOptions.php │ │ │ │ │ │ ├── BindingPage.php │ │ │ │ │ │ ├── NotificationInstance.php │ │ │ │ │ │ ├── NotificationList.php │ │ │ │ │ │ ├── NotificationOptions.php │ │ │ │ │ │ └── NotificationPage.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── ServiceInstance.php │ │ │ │ │ │ ├── ServiceList.php │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ └── ServicePage.php │ │ │ │ ├── Preview.php │ │ │ │ ├── Preview │ │ │ │ │ ├── AccSecurity.php │ │ │ │ │ ├── AccSecurity │ │ │ │ │ │ ├── Service │ │ │ │ │ │ │ ├── VerificationCheckInstance.php │ │ │ │ │ │ │ ├── VerificationCheckList.php │ │ │ │ │ │ │ ├── VerificationCheckOptions.php │ │ │ │ │ │ │ ├── VerificationCheckPage.php │ │ │ │ │ │ │ ├── VerificationInstance.php │ │ │ │ │ │ │ ├── VerificationList.php │ │ │ │ │ │ │ ├── VerificationOptions.php │ │ │ │ │ │ │ └── VerificationPage.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── ServiceInstance.php │ │ │ │ │ │ ├── ServiceList.php │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ └── ServicePage.php │ │ │ │ │ ├── BulkExports.php │ │ │ │ │ ├── BulkExports │ │ │ │ │ │ ├── Export │ │ │ │ │ │ │ ├── DayInstance.php │ │ │ │ │ │ │ ├── DayList.php │ │ │ │ │ │ │ └── DayPage.php │ │ │ │ │ │ ├── ExportConfigurationContext.php │ │ │ │ │ │ ├── ExportConfigurationInstance.php │ │ │ │ │ │ ├── ExportConfigurationList.php │ │ │ │ │ │ ├── ExportConfigurationOptions.php │ │ │ │ │ │ ├── ExportConfigurationPage.php │ │ │ │ │ │ ├── ExportContext.php │ │ │ │ │ │ ├── ExportInstance.php │ │ │ │ │ │ ├── ExportList.php │ │ │ │ │ │ └── ExportPage.php │ │ │ │ │ ├── DeployedDevices.php │ │ │ │ │ ├── DeployedDevices │ │ │ │ │ │ ├── Fleet │ │ │ │ │ │ │ ├── CertificateContext.php │ │ │ │ │ │ │ ├── CertificateInstance.php │ │ │ │ │ │ │ ├── CertificateList.php │ │ │ │ │ │ │ ├── CertificateOptions.php │ │ │ │ │ │ │ ├── CertificatePage.php │ │ │ │ │ │ │ ├── DeploymentContext.php │ │ │ │ │ │ │ ├── DeploymentInstance.php │ │ │ │ │ │ │ ├── DeploymentList.php │ │ │ │ │ │ │ ├── DeploymentOptions.php │ │ │ │ │ │ │ ├── DeploymentPage.php │ │ │ │ │ │ │ ├── DeviceContext.php │ │ │ │ │ │ │ ├── DeviceInstance.php │ │ │ │ │ │ │ ├── DeviceList.php │ │ │ │ │ │ │ ├── DeviceOptions.php │ │ │ │ │ │ │ ├── DevicePage.php │ │ │ │ │ │ │ ├── KeyContext.php │ │ │ │ │ │ │ ├── KeyInstance.php │ │ │ │ │ │ │ ├── KeyList.php │ │ │ │ │ │ │ ├── KeyOptions.php │ │ │ │ │ │ │ └── KeyPage.php │ │ │ │ │ │ ├── FleetContext.php │ │ │ │ │ │ ├── FleetInstance.php │ │ │ │ │ │ ├── FleetList.php │ │ │ │ │ │ ├── FleetOptions.php │ │ │ │ │ │ └── FleetPage.php │ │ │ │ │ ├── HostedNumbers.php │ │ │ │ │ ├── HostedNumbers │ │ │ │ │ │ ├── AuthorizationDocument │ │ │ │ │ │ │ ├── DependentHostedNumberOrderInstance.php │ │ │ │ │ │ │ ├── DependentHostedNumberOrderList.php │ │ │ │ │ │ │ ├── DependentHostedNumberOrderOptions.php │ │ │ │ │ │ │ └── DependentHostedNumberOrderPage.php │ │ │ │ │ │ ├── AuthorizationDocumentContext.php │ │ │ │ │ │ ├── AuthorizationDocumentInstance.php │ │ │ │ │ │ ├── AuthorizationDocumentList.php │ │ │ │ │ │ ├── AuthorizationDocumentOptions.php │ │ │ │ │ │ ├── AuthorizationDocumentPage.php │ │ │ │ │ │ ├── HostedNumberOrderContext.php │ │ │ │ │ │ ├── HostedNumberOrderInstance.php │ │ │ │ │ │ ├── HostedNumberOrderList.php │ │ │ │ │ │ ├── HostedNumberOrderOptions.php │ │ │ │ │ │ └── HostedNumberOrderPage.php │ │ │ │ │ ├── Marketplace.php │ │ │ │ │ ├── Marketplace │ │ │ │ │ │ ├── AvailableAddOn │ │ │ │ │ │ │ ├── AvailableAddOnExtensionContext.php │ │ │ │ │ │ │ ├── AvailableAddOnExtensionInstance.php │ │ │ │ │ │ │ ├── AvailableAddOnExtensionList.php │ │ │ │ │ │ │ └── AvailableAddOnExtensionPage.php │ │ │ │ │ │ ├── AvailableAddOnContext.php │ │ │ │ │ │ ├── AvailableAddOnInstance.php │ │ │ │ │ │ ├── AvailableAddOnList.php │ │ │ │ │ │ ├── AvailableAddOnPage.php │ │ │ │ │ │ ├── InstalledAddOn │ │ │ │ │ │ │ ├── InstalledAddOnExtensionContext.php │ │ │ │ │ │ │ ├── InstalledAddOnExtensionInstance.php │ │ │ │ │ │ │ ├── InstalledAddOnExtensionList.php │ │ │ │ │ │ │ └── InstalledAddOnExtensionPage.php │ │ │ │ │ │ ├── InstalledAddOnContext.php │ │ │ │ │ │ ├── InstalledAddOnInstance.php │ │ │ │ │ │ ├── InstalledAddOnList.php │ │ │ │ │ │ ├── InstalledAddOnOptions.php │ │ │ │ │ │ └── InstalledAddOnPage.php │ │ │ │ │ ├── Sync.php │ │ │ │ │ ├── Sync │ │ │ │ │ │ ├── Service │ │ │ │ │ │ │ ├── Document │ │ │ │ │ │ │ │ ├── DocumentPermissionContext.php │ │ │ │ │ │ │ │ ├── DocumentPermissionInstance.php │ │ │ │ │ │ │ │ ├── DocumentPermissionList.php │ │ │ │ │ │ │ │ └── DocumentPermissionPage.php │ │ │ │ │ │ │ ├── DocumentContext.php │ │ │ │ │ │ │ ├── DocumentInstance.php │ │ │ │ │ │ │ ├── DocumentList.php │ │ │ │ │ │ │ ├── DocumentOptions.php │ │ │ │ │ │ │ ├── DocumentPage.php │ │ │ │ │ │ │ ├── SyncList │ │ │ │ │ │ │ │ ├── SyncListItemContext.php │ │ │ │ │ │ │ │ ├── SyncListItemInstance.php │ │ │ │ │ │ │ │ ├── SyncListItemList.php │ │ │ │ │ │ │ │ ├── SyncListItemOptions.php │ │ │ │ │ │ │ │ ├── SyncListItemPage.php │ │ │ │ │ │ │ │ ├── SyncListPermissionContext.php │ │ │ │ │ │ │ │ ├── SyncListPermissionInstance.php │ │ │ │ │ │ │ │ ├── SyncListPermissionList.php │ │ │ │ │ │ │ │ └── SyncListPermissionPage.php │ │ │ │ │ │ │ ├── SyncListContext.php │ │ │ │ │ │ │ ├── SyncListInstance.php │ │ │ │ │ │ │ ├── SyncListList.php │ │ │ │ │ │ │ ├── SyncListOptions.php │ │ │ │ │ │ │ ├── SyncListPage.php │ │ │ │ │ │ │ ├── SyncMap │ │ │ │ │ │ │ │ ├── SyncMapItemContext.php │ │ │ │ │ │ │ │ ├── SyncMapItemInstance.php │ │ │ │ │ │ │ │ ├── SyncMapItemList.php │ │ │ │ │ │ │ │ ├── SyncMapItemOptions.php │ │ │ │ │ │ │ │ ├── SyncMapItemPage.php │ │ │ │ │ │ │ │ ├── SyncMapPermissionContext.php │ │ │ │ │ │ │ │ ├── SyncMapPermissionInstance.php │ │ │ │ │ │ │ │ ├── SyncMapPermissionList.php │ │ │ │ │ │ │ │ └── SyncMapPermissionPage.php │ │ │ │ │ │ │ ├── SyncMapContext.php │ │ │ │ │ │ │ ├── SyncMapInstance.php │ │ │ │ │ │ │ ├── SyncMapList.php │ │ │ │ │ │ │ ├── SyncMapOptions.php │ │ │ │ │ │ │ └── SyncMapPage.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── ServiceInstance.php │ │ │ │ │ │ ├── ServiceList.php │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ └── ServicePage.php │ │ │ │ │ ├── Understand.php │ │ │ │ │ ├── Understand │ │ │ │ │ │ ├── Assistant │ │ │ │ │ │ │ ├── AssistantFallbackActionsContext.php │ │ │ │ │ │ │ ├── AssistantFallbackActionsInstance.php │ │ │ │ │ │ │ ├── AssistantFallbackActionsList.php │ │ │ │ │ │ │ ├── AssistantFallbackActionsOptions.php │ │ │ │ │ │ │ ├── AssistantFallbackActionsPage.php │ │ │ │ │ │ │ ├── AssistantInitiationActionsContext.php │ │ │ │ │ │ │ ├── AssistantInitiationActionsInstance.php │ │ │ │ │ │ │ ├── AssistantInitiationActionsList.php │ │ │ │ │ │ │ ├── AssistantInitiationActionsOptions.php │ │ │ │ │ │ │ ├── AssistantInitiationActionsPage.php │ │ │ │ │ │ │ ├── DialogueContext.php │ │ │ │ │ │ │ ├── DialogueInstance.php │ │ │ │ │ │ │ ├── DialogueList.php │ │ │ │ │ │ │ ├── DialoguePage.php │ │ │ │ │ │ │ ├── FieldType │ │ │ │ │ │ │ │ ├── FieldValueContext.php │ │ │ │ │ │ │ │ ├── FieldValueInstance.php │ │ │ │ │ │ │ │ ├── FieldValueList.php │ │ │ │ │ │ │ │ ├── FieldValueOptions.php │ │ │ │ │ │ │ │ └── FieldValuePage.php │ │ │ │ │ │ │ ├── FieldTypeContext.php │ │ │ │ │ │ │ ├── FieldTypeInstance.php │ │ │ │ │ │ │ ├── FieldTypeList.php │ │ │ │ │ │ │ ├── FieldTypeOptions.php │ │ │ │ │ │ │ ├── FieldTypePage.php │ │ │ │ │ │ │ ├── ModelBuildContext.php │ │ │ │ │ │ │ ├── ModelBuildInstance.php │ │ │ │ │ │ │ ├── ModelBuildList.php │ │ │ │ │ │ │ ├── ModelBuildOptions.php │ │ │ │ │ │ │ ├── ModelBuildPage.php │ │ │ │ │ │ │ ├── QueryContext.php │ │ │ │ │ │ │ ├── QueryInstance.php │ │ │ │ │ │ │ ├── QueryList.php │ │ │ │ │ │ │ ├── QueryOptions.php │ │ │ │ │ │ │ ├── QueryPage.php │ │ │ │ │ │ │ ├── StyleSheetContext.php │ │ │ │ │ │ │ ├── StyleSheetInstance.php │ │ │ │ │ │ │ ├── StyleSheetList.php │ │ │ │ │ │ │ ├── StyleSheetOptions.php │ │ │ │ │ │ │ ├── StyleSheetPage.php │ │ │ │ │ │ │ ├── Task │ │ │ │ │ │ │ │ ├── FieldContext.php │ │ │ │ │ │ │ │ ├── FieldInstance.php │ │ │ │ │ │ │ │ ├── FieldList.php │ │ │ │ │ │ │ │ ├── FieldPage.php │ │ │ │ │ │ │ │ ├── SampleContext.php │ │ │ │ │ │ │ │ ├── SampleInstance.php │ │ │ │ │ │ │ │ ├── SampleList.php │ │ │ │ │ │ │ │ ├── SampleOptions.php │ │ │ │ │ │ │ │ ├── SamplePage.php │ │ │ │ │ │ │ │ ├── TaskActionsContext.php │ │ │ │ │ │ │ │ ├── TaskActionsInstance.php │ │ │ │ │ │ │ │ ├── TaskActionsList.php │ │ │ │ │ │ │ │ ├── TaskActionsOptions.php │ │ │ │ │ │ │ │ ├── TaskActionsPage.php │ │ │ │ │ │ │ │ ├── TaskStatisticsContext.php │ │ │ │ │ │ │ │ ├── TaskStatisticsInstance.php │ │ │ │ │ │ │ │ ├── TaskStatisticsList.php │ │ │ │ │ │ │ │ └── TaskStatisticsPage.php │ │ │ │ │ │ │ ├── TaskContext.php │ │ │ │ │ │ │ ├── TaskInstance.php │ │ │ │ │ │ │ ├── TaskList.php │ │ │ │ │ │ │ ├── TaskOptions.php │ │ │ │ │ │ │ └── TaskPage.php │ │ │ │ │ │ ├── AssistantContext.php │ │ │ │ │ │ ├── AssistantInstance.php │ │ │ │ │ │ ├── AssistantList.php │ │ │ │ │ │ ├── AssistantOptions.php │ │ │ │ │ │ └── AssistantPage.php │ │ │ │ │ ├── Wireless.php │ │ │ │ │ └── Wireless │ │ │ │ │ │ ├── CommandContext.php │ │ │ │ │ │ ├── CommandInstance.php │ │ │ │ │ │ ├── CommandList.php │ │ │ │ │ │ ├── CommandOptions.php │ │ │ │ │ │ ├── CommandPage.php │ │ │ │ │ │ ├── RatePlanContext.php │ │ │ │ │ │ ├── RatePlanInstance.php │ │ │ │ │ │ ├── RatePlanList.php │ │ │ │ │ │ ├── RatePlanOptions.php │ │ │ │ │ │ ├── RatePlanPage.php │ │ │ │ │ │ ├── Sim │ │ │ │ │ │ ├── UsageContext.php │ │ │ │ │ │ ├── UsageInstance.php │ │ │ │ │ │ ├── UsageList.php │ │ │ │ │ │ ├── UsageOptions.php │ │ │ │ │ │ └── UsagePage.php │ │ │ │ │ │ ├── SimContext.php │ │ │ │ │ │ ├── SimInstance.php │ │ │ │ │ │ ├── SimList.php │ │ │ │ │ │ ├── SimOptions.php │ │ │ │ │ │ └── SimPage.php │ │ │ │ ├── Pricing.php │ │ │ │ ├── Pricing │ │ │ │ │ ├── V1.php │ │ │ │ │ ├── V1 │ │ │ │ │ │ ├── Messaging │ │ │ │ │ │ │ ├── CountryContext.php │ │ │ │ │ │ │ ├── CountryInstance.php │ │ │ │ │ │ │ ├── CountryList.php │ │ │ │ │ │ │ └── CountryPage.php │ │ │ │ │ │ ├── MessagingInstance.php │ │ │ │ │ │ ├── MessagingList.php │ │ │ │ │ │ ├── MessagingPage.php │ │ │ │ │ │ ├── PhoneNumber │ │ │ │ │ │ │ ├── CountryContext.php │ │ │ │ │ │ │ ├── CountryInstance.php │ │ │ │ │ │ │ ├── CountryList.php │ │ │ │ │ │ │ └── CountryPage.php │ │ │ │ │ │ ├── PhoneNumberInstance.php │ │ │ │ │ │ ├── PhoneNumberList.php │ │ │ │ │ │ ├── PhoneNumberPage.php │ │ │ │ │ │ ├── Voice │ │ │ │ │ │ │ ├── CountryContext.php │ │ │ │ │ │ │ ├── CountryInstance.php │ │ │ │ │ │ │ ├── CountryList.php │ │ │ │ │ │ │ ├── CountryPage.php │ │ │ │ │ │ │ ├── NumberContext.php │ │ │ │ │ │ │ ├── NumberInstance.php │ │ │ │ │ │ │ ├── NumberList.php │ │ │ │ │ │ │ └── NumberPage.php │ │ │ │ │ │ ├── VoiceInstance.php │ │ │ │ │ │ ├── VoiceList.php │ │ │ │ │ │ └── VoicePage.php │ │ │ │ │ ├── V2.php │ │ │ │ │ └── V2 │ │ │ │ │ │ ├── Voice │ │ │ │ │ │ ├── CountryContext.php │ │ │ │ │ │ ├── CountryInstance.php │ │ │ │ │ │ ├── CountryList.php │ │ │ │ │ │ ├── CountryPage.php │ │ │ │ │ │ ├── NumberContext.php │ │ │ │ │ │ ├── NumberInstance.php │ │ │ │ │ │ ├── NumberList.php │ │ │ │ │ │ ├── NumberOptions.php │ │ │ │ │ │ └── NumberPage.php │ │ │ │ │ │ ├── VoiceInstance.php │ │ │ │ │ │ ├── VoiceList.php │ │ │ │ │ │ └── VoicePage.php │ │ │ │ ├── Proxy.php │ │ │ │ ├── Proxy │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── Service │ │ │ │ │ │ ├── PhoneNumberContext.php │ │ │ │ │ │ ├── PhoneNumberInstance.php │ │ │ │ │ │ ├── PhoneNumberList.php │ │ │ │ │ │ ├── PhoneNumberOptions.php │ │ │ │ │ │ ├── PhoneNumberPage.php │ │ │ │ │ │ ├── Session │ │ │ │ │ │ │ ├── InteractionContext.php │ │ │ │ │ │ │ ├── InteractionInstance.php │ │ │ │ │ │ │ ├── InteractionList.php │ │ │ │ │ │ │ ├── InteractionPage.php │ │ │ │ │ │ │ ├── Participant │ │ │ │ │ │ │ │ ├── MessageInteractionContext.php │ │ │ │ │ │ │ │ ├── MessageInteractionInstance.php │ │ │ │ │ │ │ │ ├── MessageInteractionList.php │ │ │ │ │ │ │ │ ├── MessageInteractionOptions.php │ │ │ │ │ │ │ │ └── MessageInteractionPage.php │ │ │ │ │ │ │ ├── ParticipantContext.php │ │ │ │ │ │ │ ├── ParticipantInstance.php │ │ │ │ │ │ │ ├── ParticipantList.php │ │ │ │ │ │ │ ├── ParticipantOptions.php │ │ │ │ │ │ │ └── ParticipantPage.php │ │ │ │ │ │ ├── SessionContext.php │ │ │ │ │ │ ├── SessionInstance.php │ │ │ │ │ │ ├── SessionList.php │ │ │ │ │ │ ├── SessionOptions.php │ │ │ │ │ │ ├── SessionPage.php │ │ │ │ │ │ ├── ShortCodeContext.php │ │ │ │ │ │ ├── ShortCodeInstance.php │ │ │ │ │ │ ├── ShortCodeList.php │ │ │ │ │ │ ├── ShortCodeOptions.php │ │ │ │ │ │ └── ShortCodePage.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── ServiceInstance.php │ │ │ │ │ │ ├── ServiceList.php │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ └── ServicePage.php │ │ │ │ ├── Studio.php │ │ │ │ ├── Studio │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── Flow │ │ │ │ │ │ ├── Engagement │ │ │ │ │ │ │ ├── EngagementContextContext.php │ │ │ │ │ │ │ ├── EngagementContextInstance.php │ │ │ │ │ │ │ ├── EngagementContextList.php │ │ │ │ │ │ │ ├── EngagementContextPage.php │ │ │ │ │ │ │ ├── Step │ │ │ │ │ │ │ │ ├── StepContextContext.php │ │ │ │ │ │ │ │ ├── StepContextInstance.php │ │ │ │ │ │ │ │ ├── StepContextList.php │ │ │ │ │ │ │ │ └── StepContextPage.php │ │ │ │ │ │ │ ├── StepContext.php │ │ │ │ │ │ │ ├── StepInstance.php │ │ │ │ │ │ │ ├── StepList.php │ │ │ │ │ │ │ └── StepPage.php │ │ │ │ │ │ ├── EngagementContext.php │ │ │ │ │ │ ├── EngagementInstance.php │ │ │ │ │ │ ├── EngagementList.php │ │ │ │ │ │ ├── EngagementOptions.php │ │ │ │ │ │ ├── EngagementPage.php │ │ │ │ │ │ ├── Execution │ │ │ │ │ │ │ ├── ExecutionContextContext.php │ │ │ │ │ │ │ ├── ExecutionContextInstance.php │ │ │ │ │ │ │ ├── ExecutionContextList.php │ │ │ │ │ │ │ ├── ExecutionContextPage.php │ │ │ │ │ │ │ ├── ExecutionStep │ │ │ │ │ │ │ │ ├── ExecutionStepContextContext.php │ │ │ │ │ │ │ │ ├── ExecutionStepContextInstance.php │ │ │ │ │ │ │ │ ├── ExecutionStepContextList.php │ │ │ │ │ │ │ │ └── ExecutionStepContextPage.php │ │ │ │ │ │ │ ├── ExecutionStepContext.php │ │ │ │ │ │ │ ├── ExecutionStepInstance.php │ │ │ │ │ │ │ ├── ExecutionStepList.php │ │ │ │ │ │ │ └── ExecutionStepPage.php │ │ │ │ │ │ ├── ExecutionContext.php │ │ │ │ │ │ ├── ExecutionInstance.php │ │ │ │ │ │ ├── ExecutionList.php │ │ │ │ │ │ ├── ExecutionOptions.php │ │ │ │ │ │ └── ExecutionPage.php │ │ │ │ │ │ ├── FlowContext.php │ │ │ │ │ │ ├── FlowInstance.php │ │ │ │ │ │ ├── FlowList.php │ │ │ │ │ │ └── FlowPage.php │ │ │ │ ├── Sync.php │ │ │ │ ├── Sync │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── Service │ │ │ │ │ │ ├── Document │ │ │ │ │ │ │ ├── DocumentPermissionContext.php │ │ │ │ │ │ │ ├── DocumentPermissionInstance.php │ │ │ │ │ │ │ ├── DocumentPermissionList.php │ │ │ │ │ │ │ └── DocumentPermissionPage.php │ │ │ │ │ │ ├── DocumentContext.php │ │ │ │ │ │ ├── DocumentInstance.php │ │ │ │ │ │ ├── DocumentList.php │ │ │ │ │ │ ├── DocumentOptions.php │ │ │ │ │ │ ├── DocumentPage.php │ │ │ │ │ │ ├── SyncList │ │ │ │ │ │ │ ├── SyncListItemContext.php │ │ │ │ │ │ │ ├── SyncListItemInstance.php │ │ │ │ │ │ │ ├── SyncListItemList.php │ │ │ │ │ │ │ ├── SyncListItemOptions.php │ │ │ │ │ │ │ ├── SyncListItemPage.php │ │ │ │ │ │ │ ├── SyncListPermissionContext.php │ │ │ │ │ │ │ ├── SyncListPermissionInstance.php │ │ │ │ │ │ │ ├── SyncListPermissionList.php │ │ │ │ │ │ │ └── SyncListPermissionPage.php │ │ │ │ │ │ ├── SyncListContext.php │ │ │ │ │ │ ├── SyncListInstance.php │ │ │ │ │ │ ├── SyncListList.php │ │ │ │ │ │ ├── SyncListOptions.php │ │ │ │ │ │ ├── SyncListPage.php │ │ │ │ │ │ ├── SyncMap │ │ │ │ │ │ │ ├── SyncMapItemContext.php │ │ │ │ │ │ │ ├── SyncMapItemInstance.php │ │ │ │ │ │ │ ├── SyncMapItemList.php │ │ │ │ │ │ │ ├── SyncMapItemOptions.php │ │ │ │ │ │ │ ├── SyncMapItemPage.php │ │ │ │ │ │ │ ├── SyncMapPermissionContext.php │ │ │ │ │ │ │ ├── SyncMapPermissionInstance.php │ │ │ │ │ │ │ ├── SyncMapPermissionList.php │ │ │ │ │ │ │ └── SyncMapPermissionPage.php │ │ │ │ │ │ ├── SyncMapContext.php │ │ │ │ │ │ ├── SyncMapInstance.php │ │ │ │ │ │ ├── SyncMapList.php │ │ │ │ │ │ ├── SyncMapOptions.php │ │ │ │ │ │ ├── SyncMapPage.php │ │ │ │ │ │ ├── SyncStream │ │ │ │ │ │ │ ├── StreamMessageInstance.php │ │ │ │ │ │ │ ├── StreamMessageList.php │ │ │ │ │ │ │ └── StreamMessagePage.php │ │ │ │ │ │ ├── SyncStreamContext.php │ │ │ │ │ │ ├── SyncStreamInstance.php │ │ │ │ │ │ ├── SyncStreamList.php │ │ │ │ │ │ ├── SyncStreamOptions.php │ │ │ │ │ │ └── SyncStreamPage.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── ServiceInstance.php │ │ │ │ │ │ ├── ServiceList.php │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ └── ServicePage.php │ │ │ │ ├── Taskrouter.php │ │ │ │ ├── Taskrouter │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── Workspace │ │ │ │ │ │ ├── ActivityContext.php │ │ │ │ │ │ ├── ActivityInstance.php │ │ │ │ │ │ ├── ActivityList.php │ │ │ │ │ │ ├── ActivityOptions.php │ │ │ │ │ │ ├── ActivityPage.php │ │ │ │ │ │ ├── EventContext.php │ │ │ │ │ │ ├── EventInstance.php │ │ │ │ │ │ ├── EventList.php │ │ │ │ │ │ ├── EventOptions.php │ │ │ │ │ │ ├── EventPage.php │ │ │ │ │ │ ├── Task │ │ │ │ │ │ │ ├── ReservationContext.php │ │ │ │ │ │ │ ├── ReservationInstance.php │ │ │ │ │ │ │ ├── ReservationList.php │ │ │ │ │ │ │ ├── ReservationOptions.php │ │ │ │ │ │ │ └── ReservationPage.php │ │ │ │ │ │ ├── TaskChannelContext.php │ │ │ │ │ │ ├── TaskChannelInstance.php │ │ │ │ │ │ ├── TaskChannelList.php │ │ │ │ │ │ ├── TaskChannelOptions.php │ │ │ │ │ │ ├── TaskChannelPage.php │ │ │ │ │ │ ├── TaskContext.php │ │ │ │ │ │ ├── TaskInstance.php │ │ │ │ │ │ ├── TaskList.php │ │ │ │ │ │ ├── TaskOptions.php │ │ │ │ │ │ ├── TaskPage.php │ │ │ │ │ │ ├── TaskQueue │ │ │ │ │ │ │ ├── TaskQueueCumulativeStatisticsContext.php │ │ │ │ │ │ │ ├── TaskQueueCumulativeStatisticsInstance.php │ │ │ │ │ │ │ ├── TaskQueueCumulativeStatisticsList.php │ │ │ │ │ │ │ ├── TaskQueueCumulativeStatisticsOptions.php │ │ │ │ │ │ │ ├── TaskQueueCumulativeStatisticsPage.php │ │ │ │ │ │ │ ├── TaskQueueRealTimeStatisticsContext.php │ │ │ │ │ │ │ ├── TaskQueueRealTimeStatisticsInstance.php │ │ │ │ │ │ │ ├── TaskQueueRealTimeStatisticsList.php │ │ │ │ │ │ │ ├── TaskQueueRealTimeStatisticsOptions.php │ │ │ │ │ │ │ ├── TaskQueueRealTimeStatisticsPage.php │ │ │ │ │ │ │ ├── TaskQueueStatisticsContext.php │ │ │ │ │ │ │ ├── TaskQueueStatisticsInstance.php │ │ │ │ │ │ │ ├── TaskQueueStatisticsList.php │ │ │ │ │ │ │ ├── TaskQueueStatisticsOptions.php │ │ │ │ │ │ │ ├── TaskQueueStatisticsPage.php │ │ │ │ │ │ │ ├── TaskQueuesStatisticsInstance.php │ │ │ │ │ │ │ ├── TaskQueuesStatisticsList.php │ │ │ │ │ │ │ ├── TaskQueuesStatisticsOptions.php │ │ │ │ │ │ │ └── TaskQueuesStatisticsPage.php │ │ │ │ │ │ ├── TaskQueueContext.php │ │ │ │ │ │ ├── TaskQueueInstance.php │ │ │ │ │ │ ├── TaskQueueList.php │ │ │ │ │ │ ├── TaskQueueOptions.php │ │ │ │ │ │ ├── TaskQueuePage.php │ │ │ │ │ │ ├── Worker │ │ │ │ │ │ │ ├── ReservationContext.php │ │ │ │ │ │ │ ├── ReservationInstance.php │ │ │ │ │ │ │ ├── ReservationList.php │ │ │ │ │ │ │ ├── ReservationOptions.php │ │ │ │ │ │ │ ├── ReservationPage.php │ │ │ │ │ │ │ ├── WorkerChannelContext.php │ │ │ │ │ │ │ ├── WorkerChannelInstance.php │ │ │ │ │ │ │ ├── WorkerChannelList.php │ │ │ │ │ │ │ ├── WorkerChannelOptions.php │ │ │ │ │ │ │ ├── WorkerChannelPage.php │ │ │ │ │ │ │ ├── WorkerStatisticsContext.php │ │ │ │ │ │ │ ├── WorkerStatisticsInstance.php │ │ │ │ │ │ │ ├── WorkerStatisticsList.php │ │ │ │ │ │ │ ├── WorkerStatisticsOptions.php │ │ │ │ │ │ │ ├── WorkerStatisticsPage.php │ │ │ │ │ │ │ ├── WorkersCumulativeStatisticsContext.php │ │ │ │ │ │ │ ├── WorkersCumulativeStatisticsInstance.php │ │ │ │ │ │ │ ├── WorkersCumulativeStatisticsList.php │ │ │ │ │ │ │ ├── WorkersCumulativeStatisticsOptions.php │ │ │ │ │ │ │ ├── WorkersCumulativeStatisticsPage.php │ │ │ │ │ │ │ ├── WorkersRealTimeStatisticsContext.php │ │ │ │ │ │ │ ├── WorkersRealTimeStatisticsInstance.php │ │ │ │ │ │ │ ├── WorkersRealTimeStatisticsList.php │ │ │ │ │ │ │ ├── WorkersRealTimeStatisticsOptions.php │ │ │ │ │ │ │ ├── WorkersRealTimeStatisticsPage.php │ │ │ │ │ │ │ ├── WorkersStatisticsContext.php │ │ │ │ │ │ │ ├── WorkersStatisticsInstance.php │ │ │ │ │ │ │ ├── WorkersStatisticsList.php │ │ │ │ │ │ │ ├── WorkersStatisticsOptions.php │ │ │ │ │ │ │ └── WorkersStatisticsPage.php │ │ │ │ │ │ ├── WorkerContext.php │ │ │ │ │ │ ├── WorkerInstance.php │ │ │ │ │ │ ├── WorkerList.php │ │ │ │ │ │ ├── WorkerOptions.php │ │ │ │ │ │ ├── WorkerPage.php │ │ │ │ │ │ ├── Workflow │ │ │ │ │ │ │ ├── WorkflowCumulativeStatisticsContext.php │ │ │ │ │ │ │ ├── WorkflowCumulativeStatisticsInstance.php │ │ │ │ │ │ │ ├── WorkflowCumulativeStatisticsList.php │ │ │ │ │ │ │ ├── WorkflowCumulativeStatisticsOptions.php │ │ │ │ │ │ │ ├── WorkflowCumulativeStatisticsPage.php │ │ │ │ │ │ │ ├── WorkflowRealTimeStatisticsContext.php │ │ │ │ │ │ │ ├── WorkflowRealTimeStatisticsInstance.php │ │ │ │ │ │ │ ├── WorkflowRealTimeStatisticsList.php │ │ │ │ │ │ │ ├── WorkflowRealTimeStatisticsOptions.php │ │ │ │ │ │ │ ├── WorkflowRealTimeStatisticsPage.php │ │ │ │ │ │ │ ├── WorkflowStatisticsContext.php │ │ │ │ │ │ │ ├── WorkflowStatisticsInstance.php │ │ │ │ │ │ │ ├── WorkflowStatisticsList.php │ │ │ │ │ │ │ ├── WorkflowStatisticsOptions.php │ │ │ │ │ │ │ └── WorkflowStatisticsPage.php │ │ │ │ │ │ ├── WorkflowContext.php │ │ │ │ │ │ ├── WorkflowInstance.php │ │ │ │ │ │ ├── WorkflowList.php │ │ │ │ │ │ ├── WorkflowOptions.php │ │ │ │ │ │ ├── WorkflowPage.php │ │ │ │ │ │ ├── WorkspaceCumulativeStatisticsContext.php │ │ │ │ │ │ ├── WorkspaceCumulativeStatisticsInstance.php │ │ │ │ │ │ ├── WorkspaceCumulativeStatisticsList.php │ │ │ │ │ │ ├── WorkspaceCumulativeStatisticsOptions.php │ │ │ │ │ │ ├── WorkspaceCumulativeStatisticsPage.php │ │ │ │ │ │ ├── WorkspaceRealTimeStatisticsContext.php │ │ │ │ │ │ ├── WorkspaceRealTimeStatisticsInstance.php │ │ │ │ │ │ ├── WorkspaceRealTimeStatisticsList.php │ │ │ │ │ │ ├── WorkspaceRealTimeStatisticsOptions.php │ │ │ │ │ │ ├── WorkspaceRealTimeStatisticsPage.php │ │ │ │ │ │ ├── WorkspaceStatisticsContext.php │ │ │ │ │ │ ├── WorkspaceStatisticsInstance.php │ │ │ │ │ │ ├── WorkspaceStatisticsList.php │ │ │ │ │ │ ├── WorkspaceStatisticsOptions.php │ │ │ │ │ │ └── WorkspaceStatisticsPage.php │ │ │ │ │ │ ├── WorkspaceContext.php │ │ │ │ │ │ ├── WorkspaceInstance.php │ │ │ │ │ │ ├── WorkspaceList.php │ │ │ │ │ │ ├── WorkspaceOptions.php │ │ │ │ │ │ └── WorkspacePage.php │ │ │ │ ├── Trunking.php │ │ │ │ ├── Trunking │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── Trunk │ │ │ │ │ │ ├── CredentialListContext.php │ │ │ │ │ │ ├── CredentialListInstance.php │ │ │ │ │ │ ├── CredentialListList.php │ │ │ │ │ │ ├── CredentialListPage.php │ │ │ │ │ │ ├── IpAccessControlListContext.php │ │ │ │ │ │ ├── IpAccessControlListInstance.php │ │ │ │ │ │ ├── IpAccessControlListList.php │ │ │ │ │ │ ├── IpAccessControlListPage.php │ │ │ │ │ │ ├── OriginationUrlContext.php │ │ │ │ │ │ ├── OriginationUrlInstance.php │ │ │ │ │ │ ├── OriginationUrlList.php │ │ │ │ │ │ ├── OriginationUrlOptions.php │ │ │ │ │ │ ├── OriginationUrlPage.php │ │ │ │ │ │ ├── PhoneNumberContext.php │ │ │ │ │ │ ├── PhoneNumberInstance.php │ │ │ │ │ │ ├── PhoneNumberList.php │ │ │ │ │ │ └── PhoneNumberPage.php │ │ │ │ │ │ ├── TrunkContext.php │ │ │ │ │ │ ├── TrunkInstance.php │ │ │ │ │ │ ├── TrunkList.php │ │ │ │ │ │ ├── TrunkOptions.php │ │ │ │ │ │ └── TrunkPage.php │ │ │ │ ├── Verify.php │ │ │ │ ├── Verify │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── Service │ │ │ │ │ │ ├── VerificationCheckInstance.php │ │ │ │ │ │ ├── VerificationCheckList.php │ │ │ │ │ │ ├── VerificationCheckOptions.php │ │ │ │ │ │ ├── VerificationCheckPage.php │ │ │ │ │ │ ├── VerificationInstance.php │ │ │ │ │ │ ├── VerificationList.php │ │ │ │ │ │ ├── VerificationOptions.php │ │ │ │ │ │ └── VerificationPage.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── ServiceInstance.php │ │ │ │ │ │ ├── ServiceList.php │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ └── ServicePage.php │ │ │ │ ├── Video.php │ │ │ │ ├── Video │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── CompositionContext.php │ │ │ │ │ │ ├── CompositionHookContext.php │ │ │ │ │ │ ├── CompositionHookInstance.php │ │ │ │ │ │ ├── CompositionHookList.php │ │ │ │ │ │ ├── CompositionHookOptions.php │ │ │ │ │ │ ├── CompositionHookPage.php │ │ │ │ │ │ ├── CompositionInstance.php │ │ │ │ │ │ ├── CompositionList.php │ │ │ │ │ │ ├── CompositionOptions.php │ │ │ │ │ │ ├── CompositionPage.php │ │ │ │ │ │ ├── CompositionSettingsContext.php │ │ │ │ │ │ ├── CompositionSettingsInstance.php │ │ │ │ │ │ ├── CompositionSettingsList.php │ │ │ │ │ │ ├── CompositionSettingsOptions.php │ │ │ │ │ │ ├── CompositionSettingsPage.php │ │ │ │ │ │ ├── RecordingContext.php │ │ │ │ │ │ ├── RecordingInstance.php │ │ │ │ │ │ ├── RecordingList.php │ │ │ │ │ │ ├── RecordingOptions.php │ │ │ │ │ │ ├── RecordingPage.php │ │ │ │ │ │ ├── RecordingSettingsContext.php │ │ │ │ │ │ ├── RecordingSettingsInstance.php │ │ │ │ │ │ ├── RecordingSettingsList.php │ │ │ │ │ │ ├── RecordingSettingsOptions.php │ │ │ │ │ │ ├── RecordingSettingsPage.php │ │ │ │ │ │ ├── Room │ │ │ │ │ │ ├── Participant │ │ │ │ │ │ │ ├── PublishedTrackContext.php │ │ │ │ │ │ │ ├── PublishedTrackInstance.php │ │ │ │ │ │ │ ├── PublishedTrackList.php │ │ │ │ │ │ │ ├── PublishedTrackPage.php │ │ │ │ │ │ │ ├── SubscribedTrackInstance.php │ │ │ │ │ │ │ ├── SubscribedTrackList.php │ │ │ │ │ │ │ ├── SubscribedTrackOptions.php │ │ │ │ │ │ │ └── SubscribedTrackPage.php │ │ │ │ │ │ ├── ParticipantContext.php │ │ │ │ │ │ ├── ParticipantInstance.php │ │ │ │ │ │ ├── ParticipantList.php │ │ │ │ │ │ ├── ParticipantOptions.php │ │ │ │ │ │ ├── ParticipantPage.php │ │ │ │ │ │ ├── RoomRecordingContext.php │ │ │ │ │ │ ├── RoomRecordingInstance.php │ │ │ │ │ │ ├── RoomRecordingList.php │ │ │ │ │ │ ├── RoomRecordingOptions.php │ │ │ │ │ │ └── RoomRecordingPage.php │ │ │ │ │ │ ├── RoomContext.php │ │ │ │ │ │ ├── RoomInstance.php │ │ │ │ │ │ ├── RoomList.php │ │ │ │ │ │ ├── RoomOptions.php │ │ │ │ │ │ └── RoomPage.php │ │ │ │ ├── Voice.php │ │ │ │ ├── Voice │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── VoicePermission │ │ │ │ │ │ ├── BulkCountryUpdateInstance.php │ │ │ │ │ │ ├── BulkCountryUpdateList.php │ │ │ │ │ │ ├── BulkCountryUpdatePage.php │ │ │ │ │ │ ├── Country │ │ │ │ │ │ │ ├── HighriskSpecialPrefixInstance.php │ │ │ │ │ │ │ ├── HighriskSpecialPrefixList.php │ │ │ │ │ │ │ └── HighriskSpecialPrefixPage.php │ │ │ │ │ │ ├── CountryContext.php │ │ │ │ │ │ ├── CountryInstance.php │ │ │ │ │ │ ├── CountryList.php │ │ │ │ │ │ ├── CountryOptions.php │ │ │ │ │ │ └── CountryPage.php │ │ │ │ │ │ ├── VoicePermissionInstance.php │ │ │ │ │ │ ├── VoicePermissionList.php │ │ │ │ │ │ └── VoicePermissionPage.php │ │ │ │ ├── Wireless.php │ │ │ │ └── Wireless │ │ │ │ │ ├── V1.php │ │ │ │ │ └── V1 │ │ │ │ │ ├── CommandContext.php │ │ │ │ │ ├── CommandInstance.php │ │ │ │ │ ├── CommandList.php │ │ │ │ │ ├── CommandOptions.php │ │ │ │ │ ├── CommandPage.php │ │ │ │ │ ├── RatePlanContext.php │ │ │ │ │ ├── RatePlanInstance.php │ │ │ │ │ ├── RatePlanList.php │ │ │ │ │ ├── RatePlanOptions.php │ │ │ │ │ ├── RatePlanPage.php │ │ │ │ │ ├── Sim │ │ │ │ │ ├── DataSessionInstance.php │ │ │ │ │ ├── DataSessionList.php │ │ │ │ │ ├── DataSessionOptions.php │ │ │ │ │ ├── DataSessionPage.php │ │ │ │ │ ├── UsageRecordInstance.php │ │ │ │ │ ├── UsageRecordList.php │ │ │ │ │ ├── UsageRecordOptions.php │ │ │ │ │ └── UsageRecordPage.php │ │ │ │ │ ├── SimContext.php │ │ │ │ │ ├── SimInstance.php │ │ │ │ │ ├── SimList.php │ │ │ │ │ ├── SimOptions.php │ │ │ │ │ └── SimPage.php │ │ │ ├── Security │ │ │ │ └── RequestValidator.php │ │ │ ├── Serialize.php │ │ │ ├── Stream.php │ │ │ ├── TaskRouter │ │ │ │ ├── WorkflowConfiguration.php │ │ │ │ ├── WorkflowRule.php │ │ │ │ └── WorkflowRuleTarget.php │ │ │ ├── TwiML │ │ │ │ ├── Fax │ │ │ │ │ └── Receive.php │ │ │ │ ├── FaxResponse.php │ │ │ │ ├── GenericNode.php │ │ │ │ ├── Messaging │ │ │ │ │ ├── Body.php │ │ │ │ │ ├── Media.php │ │ │ │ │ ├── Message.php │ │ │ │ │ └── Redirect.php │ │ │ │ ├── MessagingResponse.php │ │ │ │ ├── TwiML.php │ │ │ │ ├── Video │ │ │ │ │ └── Room.php │ │ │ │ ├── Voice │ │ │ │ │ ├── Autopilot.php │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── Conference.php │ │ │ │ │ ├── Connect.php │ │ │ │ │ ├── Dial.php │ │ │ │ │ ├── Echo.php │ │ │ │ │ ├── Enqueue.php │ │ │ │ │ ├── Gather.php │ │ │ │ │ ├── Hangup.php │ │ │ │ │ ├── Identity.php │ │ │ │ │ ├── Leave.php │ │ │ │ │ ├── Number.php │ │ │ │ │ ├── Parameter.php │ │ │ │ │ ├── Pause.php │ │ │ │ │ ├── Pay.php │ │ │ │ │ ├── Play.php │ │ │ │ │ ├── Prompt.php │ │ │ │ │ ├── Queue.php │ │ │ │ │ ├── Record.php │ │ │ │ │ ├── Redirect.php │ │ │ │ │ ├── Reject.php │ │ │ │ │ ├── Room.php │ │ │ │ │ ├── Say.php │ │ │ │ │ ├── Sim.php │ │ │ │ │ ├── Sip.php │ │ │ │ │ ├── Sms.php │ │ │ │ │ ├── SsmlBreak.php │ │ │ │ │ ├── SsmlEmphasis.php │ │ │ │ │ ├── SsmlLang.php │ │ │ │ │ ├── SsmlP.php │ │ │ │ │ ├── SsmlPhoneme.php │ │ │ │ │ ├── SsmlProsody.php │ │ │ │ │ ├── SsmlS.php │ │ │ │ │ ├── SsmlSayAs.php │ │ │ │ │ ├── SsmlSub.php │ │ │ │ │ ├── SsmlW.php │ │ │ │ │ └── Task.php │ │ │ │ └── VoiceResponse.php │ │ │ ├── Twiml.php │ │ │ ├── Values.php │ │ │ ├── Version.php │ │ │ ├── VersionInfo.php │ │ │ └── autoload.php │ │ │ ├── composer.json │ │ │ └── composer.lock │ ├── willdurand │ │ └── email-reply-parser │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ └── src │ │ │ ├── EmailReplyParser │ │ │ ├── Email.php │ │ │ ├── EmailReplyParser.php │ │ │ ├── Fragment.php │ │ │ └── Parser │ │ │ │ ├── EmailParser.php │ │ │ │ └── FragmentDTO.php │ │ │ └── autoload.php │ └── zbateson │ │ └── mail-mime-parser │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── phpdoc.xml │ │ ├── src │ │ ├── Header │ │ │ ├── AbstractHeader.php │ │ │ ├── AddressHeader.php │ │ │ ├── Consumer │ │ │ │ ├── AbstractConsumer.php │ │ │ │ ├── AddressBaseConsumer.php │ │ │ │ ├── AddressConsumer.php │ │ │ │ ├── AddressGroupConsumer.php │ │ │ │ ├── CommentConsumer.php │ │ │ │ ├── ConsumerService.php │ │ │ │ ├── DateConsumer.php │ │ │ │ ├── GenericConsumer.php │ │ │ │ ├── ParameterConsumer.php │ │ │ │ ├── QuotedStringConsumer.php │ │ │ │ └── SubjectConsumer.php │ │ │ ├── DateHeader.php │ │ │ ├── GenericHeader.php │ │ │ ├── HeaderFactory.php │ │ │ ├── ParameterHeader.php │ │ │ ├── Part │ │ │ │ ├── AddressGroupPart.php │ │ │ │ ├── AddressPart.php │ │ │ │ ├── CommentPart.php │ │ │ │ ├── DatePart.php │ │ │ │ ├── HeaderPart.php │ │ │ │ ├── HeaderPartFactory.php │ │ │ │ ├── LiteralPart.php │ │ │ │ ├── MimeLiteralPart.php │ │ │ │ ├── MimeLiteralPartFactory.php │ │ │ │ ├── ParameterPart.php │ │ │ │ └── Token.php │ │ │ └── SubjectHeader.php │ │ ├── MailMimeParser.php │ │ ├── Message.php │ │ ├── Message │ │ │ ├── MessageParser.php │ │ │ ├── MimePart.php │ │ │ ├── MimePartFactory.php │ │ │ ├── NonMimePart.php │ │ │ ├── PartFilter.php │ │ │ ├── UUEncodedPart.php │ │ │ └── Writer │ │ │ │ ├── MessageWriter.php │ │ │ │ ├── MessageWriterService.php │ │ │ │ └── MimePartWriter.php │ │ ├── SimpleDi.php │ │ └── Stream │ │ │ ├── Base64DecodeStreamFilter.php │ │ │ ├── Base64EncodeStreamFilter.php │ │ │ ├── CharsetStreamFilter.php │ │ │ ├── ConvertStreamFilter.php │ │ │ ├── Helper │ │ │ └── CharsetConverter.php │ │ │ ├── PartStream.php │ │ │ ├── PartStreamRegistry.php │ │ │ ├── StreamLeftover.php │ │ │ ├── UUDecodeStreamFilter.php │ │ │ └── UUEncodeStreamFilter.php │ │ └── version.txt └── views │ ├── admin │ ├── announcements │ │ ├── announcement.php │ │ ├── index.html │ │ ├── manage.php │ │ └── view.php │ ├── blank_page.php │ ├── clients │ │ ├── all_contacts.php │ │ ├── client.php │ │ ├── client_group.php │ │ ├── client_js.php │ │ ├── groups │ │ │ ├── _statement.php │ │ │ ├── _statement_period_select.php │ │ │ ├── attachments.php │ │ │ ├── contacts.php │ │ │ ├── contracts.php │ │ │ ├── credit_notes.php │ │ │ ├── estimates.php │ │ │ ├── expenses.php │ │ │ ├── index.html │ │ │ ├── invoices.php │ │ │ ├── map.php │ │ │ ├── notes.php │ │ │ ├── payments.php │ │ │ ├── profile.php │ │ │ ├── projects.php │ │ │ ├── proposals.php │ │ │ ├── reminders.php │ │ │ ├── statement.php │ │ │ ├── subscriptions.php │ │ │ ├── tasks.php │ │ │ ├── tickets.php │ │ │ └── vault.php │ │ ├── groups_manage.php │ │ ├── import.php │ │ ├── index.html │ │ ├── manage.php │ │ ├── modals │ │ │ ├── contact.php │ │ │ ├── index.html │ │ │ ├── modal_zip_date_picker.php │ │ │ ├── send_file_modal.php │ │ │ ├── zip_credit_notes.php │ │ │ ├── zip_estimates.php │ │ │ ├── zip_invoices.php │ │ │ └── zip_payments.php │ │ ├── tabs.php │ │ └── vault_confirm_password.php │ ├── contracts │ │ ├── comments_template.php │ │ ├── contract.php │ │ ├── contract_type.php │ │ ├── index.html │ │ ├── manage.php │ │ ├── manage_types.php │ │ ├── renew_contract.php │ │ ├── send_to_client.php │ │ └── table_html.php │ ├── credit_notes │ │ ├── apply_credits_to_invoices.php │ │ ├── apply_invoice_credits.php │ │ ├── billing_and_shipping_template.php │ │ ├── credit_note.php │ │ ├── credit_note_preview_template.php │ │ ├── index.html │ │ ├── invoice_create_credit_note_confirm.php │ │ ├── manage.php │ │ ├── refund.php │ │ ├── send_to_client.php │ │ └── table_html.php │ ├── currencies │ │ ├── index.html │ │ └── manage.php │ ├── custom_fields │ │ ├── customfield.php │ │ ├── index.html │ │ └── manage.php │ ├── dashboard │ │ ├── dashboard.php │ │ ├── dashboard_js.php │ │ ├── index.html │ │ └── widgets │ │ │ ├── calendar.php │ │ │ ├── finance_overview.php │ │ │ ├── index.html │ │ │ ├── leads_chart.php │ │ │ ├── projects_activity.php │ │ │ ├── projects_chart.php │ │ │ ├── tickets_chart.php │ │ │ ├── todos.php │ │ │ ├── top_stats.php │ │ │ ├── upcoming_events.php │ │ │ ├── user_data.php │ │ │ └── weekly_payments_chart.php │ ├── departments │ │ ├── index.html │ │ └── manage.php │ ├── emails │ │ ├── email_templates.php │ │ ├── index.html │ │ └── template.php │ ├── estimates │ │ ├── _add_edit_items.php │ │ ├── billing_and_shipping_template.php │ │ ├── estimate.php │ │ ├── estimate_preview_template.php │ │ ├── estimate_send_to_client.php │ │ ├── estimate_template.php │ │ ├── estimates_top_stats.php │ │ ├── estimates_total_template.php │ │ ├── index.html │ │ ├── list_template.php │ │ ├── manage.php │ │ ├── pipeline │ │ │ ├── _kanban_card.php │ │ │ ├── estimate.php │ │ │ ├── index.html │ │ │ ├── manage.php │ │ │ └── pipeline.php │ │ └── table_html.php │ ├── expenses │ │ ├── expense.php │ │ ├── expense_category.php │ │ ├── expense_preview_template.php │ │ ├── expenses_total_template.php │ │ ├── filter_by_template.php │ │ ├── index.html │ │ ├── manage.php │ │ ├── manage_categories.php │ │ └── table_html.php │ ├── gdpr │ │ ├── consent_user_info.php │ │ ├── contact_consent.php │ │ ├── index.html │ │ ├── index.php │ │ ├── lead_consent.php │ │ └── pages │ │ │ ├── consent.php │ │ │ ├── forgotten.php │ │ │ ├── general.php │ │ │ ├── includes │ │ │ ├── consent.php │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── informed.php │ │ │ ├── portability.php │ │ │ └── rectification.php │ ├── includes │ │ ├── _form_js_formatter.php │ │ ├── alerts.php │ │ ├── aside.php │ │ ├── db_update_required.php │ │ ├── elfinder_tinymce.php │ │ ├── emails_tracking.php │ │ ├── head.php │ │ ├── header.php │ │ ├── helpers_bottom.php │ │ ├── index.html │ │ ├── modals │ │ │ ├── index.html │ │ │ ├── newsfeed_form.php │ │ │ ├── post_comment_likes.php │ │ │ ├── post_likes.php │ │ │ ├── reminder.php │ │ │ └── sales_attach_file.php │ │ ├── notifications.php │ │ ├── reminder_fields.php │ │ ├── sales_notes_template.php │ │ ├── scripts.php │ │ └── setup_menu.php │ ├── index.html │ ├── invoice_items │ │ ├── import.php │ │ ├── index.html │ │ ├── item.php │ │ ├── item_select.php │ │ └── manage.php │ ├── invoices │ │ ├── bill_expenses.php │ │ ├── billing_and_shipping_template.php │ │ ├── filter_params.php │ │ ├── index.html │ │ ├── invoice.php │ │ ├── invoice_payments_table.php │ │ ├── invoice_preview_html.php │ │ ├── invoice_preview_template.php │ │ ├── invoice_send_to_client.php │ │ ├── invoice_template.php │ │ ├── invoices_top_stats.php │ │ ├── invoices_total_template.php │ │ ├── list_template.php │ │ ├── manage.php │ │ ├── merge_invoice.php │ │ ├── record_payment_template.php │ │ ├── recurring │ │ │ ├── filter_params.php │ │ │ ├── index.html │ │ │ ├── list.php │ │ │ ├── list_template.php │ │ │ └── table_html.php │ │ ├── table_html.php │ │ └── view_payments_template.php │ ├── knowledge_base │ │ ├── article.php │ │ ├── articles.php │ │ ├── group.php │ │ ├── index.html │ │ ├── manage_groups.php │ │ └── view.php │ ├── leads │ │ ├── _kan_ban_card.php │ │ ├── convert_to_customer.php │ │ ├── email_integration.php │ │ ├── formbuilder.php │ │ ├── forms.php │ │ ├── import.php │ │ ├── index.html │ │ ├── kan-ban.php │ │ ├── lead.php │ │ ├── leads_attachments_template.php │ │ ├── manage_leads.php │ │ ├── manage_sources.php │ │ ├── manage_statuses.php │ │ ├── profile.php │ │ └── status.php │ ├── modules │ │ └── list.php │ ├── paymentmodes │ │ ├── index.html │ │ ├── manage.php │ │ └── paymentmode.php │ ├── payments │ │ ├── index.html │ │ ├── manage.php │ │ ├── payment.php │ │ ├── send_to_client.php │ │ └── table_html.php │ ├── projects │ │ ├── _file.php │ │ ├── _mark_tasks_finished.php │ │ ├── _milestone_kanban_card.php │ │ ├── copy_settings.php │ │ ├── export_data_pdf.php │ │ ├── gantt.php │ │ ├── index.html │ │ ├── invoice_project.php │ │ ├── manage.php │ │ ├── milestone.php │ │ ├── milestones_kan_ban.php │ │ ├── pinned.php │ │ ├── project.php │ │ ├── project_activity.php │ │ ├── project_credit_notes.php │ │ ├── project_discussion.php │ │ ├── project_discussions.php │ │ ├── project_estimates.php │ │ ├── project_expenses.php │ │ ├── project_files.php │ │ ├── project_gantt.php │ │ ├── project_invoices.php │ │ ├── project_milestones.php │ │ ├── project_notes.php │ │ ├── project_overview.php │ │ ├── project_pre_invoice_settings.php │ │ ├── project_subscriptions.php │ │ ├── project_tabs.php │ │ ├── project_tasks.php │ │ ├── project_tickets.php │ │ ├── project_timesheets.php │ │ ├── table_html.php │ │ ├── timesheet.php │ │ └── view.php │ ├── proposals │ │ ├── comments_template.php │ │ ├── estimate_convert_template.php │ │ ├── index.html │ │ ├── invoice_convert_template.php │ │ ├── manage.php │ │ ├── pipeline │ │ │ ├── _kanban_card.php │ │ │ ├── index.html │ │ │ ├── manage.php │ │ │ ├── pipeline.php │ │ │ └── proposal.php │ │ ├── proposal.php │ │ ├── proposals_preview_template.php │ │ ├── send_proposal_to_email_template.php │ │ └── sync_data.php │ ├── reports │ │ ├── expenses.php │ │ ├── expenses_detailed.php │ │ ├── expenses_vs_income.php │ │ ├── includes │ │ │ ├── index.html │ │ │ ├── sales_credit_notes.php │ │ │ ├── sales_customers.php │ │ │ ├── sales_customers_groups.php │ │ │ ├── sales_estimates.php │ │ │ ├── sales_income.php │ │ │ ├── sales_invoices.php │ │ │ ├── sales_items.php │ │ │ ├── sales_js.php │ │ │ ├── sales_payment_modes.php │ │ │ ├── sales_payments.php │ │ │ └── sales_proposals.php │ │ ├── index.html │ │ ├── knowledge_base_articles.php │ │ ├── leads.php │ │ ├── leads_staff.php │ │ └── sales.php │ ├── roles │ │ ├── index.html │ │ ├── manage.php │ │ └── role.php │ ├── search.php │ ├── settings │ │ ├── all.php │ │ ├── includes │ │ │ ├── calendar.php │ │ │ ├── clients.php │ │ │ ├── company.php │ │ │ ├── cronjob.php │ │ │ ├── e_sign.php │ │ │ ├── email.php │ │ │ ├── general.php │ │ │ ├── google.php │ │ │ ├── index.html │ │ │ ├── info.php │ │ │ ├── leads.php │ │ │ ├── localization.php │ │ │ ├── misc.php │ │ │ ├── payment_gateways.php │ │ │ ├── pdf.php │ │ │ ├── pusher.php │ │ │ ├── sales.php │ │ │ ├── sms.php │ │ │ ├── subscriptions.php │ │ │ ├── tags.php │ │ │ ├── tasks.php │ │ │ ├── tickets.php │ │ │ └── update.php │ │ └── index.html │ ├── spam_filters │ │ └── list.php │ ├── staff │ │ ├── index.html │ │ ├── manage.php │ │ ├── member.php │ │ ├── myprofile.php │ │ ├── permissions.php │ │ ├── profile.php │ │ ├── stats.php │ │ └── timesheets.php │ ├── subscriptions │ │ ├── form.php │ │ ├── index.html │ │ ├── manage.php │ │ ├── send_to_client.php │ │ ├── subscription.php │ │ └── table_html.php │ ├── tables │ │ ├── activity_log.php │ │ ├── all_contacts.php │ │ ├── all_reminders.php │ │ ├── announcements.php │ │ ├── api_keys.php │ │ ├── clients.php │ │ ├── contacts.php │ │ ├── contract_types.php │ │ ├── contracts.php │ │ ├── credit_notes.php │ │ ├── currencies.php │ │ ├── custom_fields.php │ │ ├── customers_groups.php │ │ ├── departments.php │ │ ├── estimates.php │ │ ├── expenses.php │ │ ├── expenses_categories.php │ │ ├── includes │ │ │ ├── expenses_filter.php │ │ │ ├── index.html │ │ │ └── tasks_filter.php │ │ ├── index.html │ │ ├── invoice_items.php │ │ ├── invoices.php │ │ ├── kb_articles.php │ │ ├── leads.php │ │ ├── milestones.php │ │ ├── payment_modes.php │ │ ├── payments.php │ │ ├── project_discussions.php │ │ ├── project_expenses.php │ │ ├── projects.php │ │ ├── proposals.php │ │ ├── proposals_relations.php │ │ ├── recurring_invoices.php │ │ ├── reminders.php │ │ ├── roles.php │ │ ├── staff.php │ │ ├── staff_projects.php │ │ ├── staff_reminders.php │ │ ├── staff_timesheets.php │ │ ├── subscriptions.php │ │ ├── tasks.php │ │ ├── tasks_relations.php │ │ ├── taxes.php │ │ ├── ticket_pipe_log.php │ │ ├── tickets.php │ │ ├── timesheets.php │ │ └── web_to_lead.php │ ├── tasks │ │ ├── _bulk_actions.php │ │ ├── _kan_ban_card.php │ │ ├── _summary.php │ │ ├── _table.php │ │ ├── checklist_items_template.php │ │ ├── detailed_overview.php │ │ ├── index.html │ │ ├── kan_ban.php │ │ ├── manage.php │ │ ├── started_timers.php │ │ ├── task.php │ │ ├── tasks_filter_by.php │ │ ├── tracking_stats.php │ │ └── view_task_template.php │ ├── taxes │ │ ├── index.html │ │ └── manage.php │ ├── tickets │ │ ├── add.php │ │ ├── index.html │ │ ├── list.php │ │ ├── predefined_replies │ │ │ ├── index.html │ │ │ ├── manage.php │ │ │ └── reply.php │ │ ├── priorities │ │ │ ├── index.html │ │ │ └── manage.php │ │ ├── services │ │ │ ├── index.html │ │ │ ├── manage.php │ │ │ └── service.php │ │ ├── single.php │ │ ├── summary.php │ │ └── tickets_statuses │ │ │ ├── index.html │ │ │ └── manage.php │ ├── todos │ │ ├── _todo.php │ │ ├── all.php │ │ └── index.html │ └── utilities │ │ ├── activity_log.php │ │ ├── all_reminders.php │ │ ├── bulk_pdf_exporter.php │ │ ├── calendar.php │ │ ├── calendar_filters.php │ │ ├── calendar_template.php │ │ ├── event.php │ │ ├── index.html │ │ ├── media.php │ │ └── ticket_pipe_log.php │ ├── authentication │ ├── forgot_password.php │ ├── includes │ │ ├── alerts.php │ │ ├── head.php │ │ └── index.html │ ├── index.html │ ├── login_admin.php │ ├── reset_password.php │ ├── set_password.php │ └── set_two_factor_auth_code.php │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── forms │ ├── index.html │ ├── lead.php │ ├── ticket.php │ └── web_to_lead.php │ ├── index.html │ └── themes │ ├── index.html │ └── perfex │ ├── footer.php │ ├── functions.php │ ├── head.php │ ├── index.php │ ├── template_parts │ ├── alerts.php │ ├── estimates_stats.php │ ├── estimates_table.php │ ├── identity_confirmation_form.php │ ├── index.html │ ├── invoices_stats.php │ ├── knowledge_base │ │ ├── categories.php │ │ ├── category_articles_list.php │ │ ├── index.html │ │ ├── search.php │ │ └── search_results.php │ ├── navigation.php │ ├── projects │ │ ├── edit_task.php │ │ ├── file.php │ │ ├── index.html │ │ ├── new_task.php │ │ ├── project_activity.php │ │ ├── project_discussions.php │ │ ├── project_estimates.php │ │ ├── project_files.php │ │ ├── project_gantt.php │ │ ├── project_invoices.php │ │ ├── project_milestones.php │ │ ├── project_overview.php │ │ ├── project_summary.php │ │ ├── project_tabs.php │ │ ├── project_task.php │ │ ├── project_tasks.php │ │ ├── project_tickets.php │ │ └── project_timesheets.php │ └── tickets_table.php │ └── views │ ├── announcement.php │ ├── announcements.php │ ├── calendar.php │ ├── company_profile.php │ ├── consent.php │ ├── contracthtml.php │ ├── contractpdf.php │ ├── contracts.php │ ├── credit_card.php │ ├── credit_note_pdf.php │ ├── estimatehtml.php │ ├── estimatepdf.php │ ├── estimates.php │ ├── files.php │ ├── forgot_password.php │ ├── gdpr.php │ ├── home.php │ ├── index.html │ ├── invoicehtml.php │ ├── invoicepdf.php │ ├── invoices.php │ ├── knowledge_base.php │ ├── knowledge_base_article.php │ ├── login.php │ ├── open_ticket.php │ ├── paymentpdf.php │ ├── privacy_policy.php │ ├── profile.php │ ├── project.php │ ├── projects.php │ ├── proposalpdf.php │ ├── proposals.php │ ├── register.php │ ├── reset_password.php │ ├── single_ticket.php │ ├── statement.php │ ├── statementpdf.php │ ├── subscriptionhtml.php │ ├── subscriptions.php │ ├── terms_and_conditions.php │ ├── tickets.php │ ├── verification_required.php │ └── viewproposal.php ├── assets ├── builds │ ├── bootstrap-select.min.js │ ├── common.js │ ├── index.html │ ├── moment.min.js │ ├── vendor-admin.css │ └── vendor-admin.js ├── css │ ├── bs-overides.css │ ├── bs-overides.min.css │ ├── forms.css │ ├── forms.min.css │ ├── index.html │ ├── reset.css │ ├── reset.min.css │ ├── style.css │ └── style.min.css ├── images │ ├── dragger.png │ ├── index.html │ ├── mime │ │ ├── audio.png │ │ ├── excel.png │ │ ├── file.png │ │ ├── image.png │ │ ├── index.html │ │ ├── pdf.png │ │ ├── powerpoint.png │ │ ├── video.png │ │ ├── word.png │ │ └── zip.png │ ├── preview-not-available.jpg │ ├── stage.svg │ ├── table-loading.png │ ├── table-no-data.png │ └── user-placeholder.jpg ├── index.html ├── js │ ├── app.js │ ├── index.html │ ├── main.js │ ├── main.min.js │ ├── map.js │ ├── map.min.js │ ├── projects.js │ ├── projects.min.js │ ├── tickets.js │ └── tickets.min.js ├── plugins │ ├── Chart.js │ │ ├── Chart.bundle.js │ │ ├── Chart.bundle.min.js │ │ ├── Chart.js │ │ └── Chart.min.js │ ├── accounting.js │ │ ├── accounting.js │ │ └── accounting.min.js │ ├── bootstrap-arabic │ │ ├── css │ │ │ ├── bootstrap-arabic-theme.css │ │ │ ├── bootstrap-arabic-theme.css.map │ │ │ ├── bootstrap-arabic-theme.min.css │ │ │ ├── bootstrap-arabic.css │ │ │ ├── bootstrap-arabic.css.map │ │ │ └── bootstrap-arabic.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap-arabic.js │ │ │ └── bootstrap-arabic.min.js │ ├── bootstrap-colorpicker │ │ ├── css │ │ │ ├── bootstrap-colorpicker.css │ │ │ ├── bootstrap-colorpicker.css.map │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ ├── bootstrap-colorpicker.min.css.map │ │ │ └── src │ │ │ │ └── less │ │ │ │ └── colorpicker.less │ │ ├── img │ │ │ └── bootstrap-colorpicker │ │ │ │ ├── alpha-horizontal.png │ │ │ │ ├── alpha.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ ├── js │ │ │ ├── bootstrap-colorpicker.js │ │ │ └── bootstrap-colorpicker.min.js │ │ └── src │ │ │ ├── js │ │ │ ├── colorpicker-color.js │ │ │ ├── colorpicker-component.js │ │ │ ├── colorpicker-defaults.js │ │ │ └── colorpicker-plugin-wrapper.js │ │ │ └── sass │ │ │ └── _colorpicker.scss │ ├── bootstrap-select-ajax │ │ ├── css │ │ │ ├── ajax-bootstrap-select.css │ │ │ └── ajax-bootstrap-select.min.css │ │ └── js │ │ │ ├── ajax-bootstrap-select.js │ │ │ ├── ajax-bootstrap-select.min.js │ │ │ └── locale │ │ │ ├── ajax-bootstrap-select.de-DE.js │ │ │ ├── ajax-bootstrap-select.de-DE.min.js │ │ │ ├── ajax-bootstrap-select.en-US.js │ │ │ ├── ajax-bootstrap-select.en-US.min.js │ │ │ ├── ajax-bootstrap-select.es-ES.js │ │ │ ├── ajax-bootstrap-select.es-ES.min.js │ │ │ ├── ajax-bootstrap-select.fr-FR.js │ │ │ ├── ajax-bootstrap-select.fr-FR.min.js │ │ │ ├── ajax-bootstrap-select.it-IT.js │ │ │ ├── ajax-bootstrap-select.it-IT.min.js │ │ │ ├── ajax-bootstrap-select.ja-JP.js │ │ │ ├── ajax-bootstrap-select.ja-JP.min.js │ │ │ ├── ajax-bootstrap-select.ko-KR.js │ │ │ ├── ajax-bootstrap-select.ko-KR.min.js │ │ │ ├── ajax-bootstrap-select.nl-NL.js │ │ │ ├── ajax-bootstrap-select.nl-NL.min.js │ │ │ ├── ajax-bootstrap-select.pl-PL.js │ │ │ ├── ajax-bootstrap-select.pl-PL.min.js │ │ │ ├── ajax-bootstrap-select.pt-BR.js │ │ │ ├── ajax-bootstrap-select.pt-BR.min.js │ │ │ ├── ajax-bootstrap-select.ru-RU.js │ │ │ ├── ajax-bootstrap-select.ru-RU.min.js │ │ │ ├── ajax-bootstrap-select.tr-TR.js │ │ │ └── ajax-bootstrap-select.tr-TR.min.js │ ├── bootstrap-select │ │ ├── css │ │ │ ├── bootstrap-select.css │ │ │ ├── bootstrap-select.css.map │ │ │ └── bootstrap-select.min.css │ │ └── js │ │ │ ├── bootstrap-select.js │ │ │ ├── bootstrap-select.js.map │ │ │ ├── bootstrap-select.min.js │ │ │ ├── bootstrap-select.min.js.map │ │ │ └── i18n │ │ │ ├── defaults-am_ET.js │ │ │ ├── defaults-am_ET.js.map │ │ │ ├── defaults-am_ET.min.js │ │ │ ├── defaults-ar_AR.js │ │ │ ├── defaults-ar_AR.js.map │ │ │ ├── defaults-ar_AR.min.js │ │ │ ├── defaults-bg_BG.js │ │ │ ├── defaults-bg_BG.js.map │ │ │ ├── defaults-bg_BG.min.js │ │ │ ├── defaults-cs_CZ.js │ │ │ ├── defaults-cs_CZ.js.map │ │ │ ├── defaults-cs_CZ.min.js │ │ │ ├── defaults-da_DK.js │ │ │ ├── defaults-da_DK.js.map │ │ │ ├── defaults-da_DK.min.js │ │ │ ├── defaults-de_DE.js │ │ │ ├── defaults-de_DE.js.map │ │ │ ├── defaults-de_DE.min.js │ │ │ ├── defaults-en_US.js │ │ │ ├── defaults-en_US.js.map │ │ │ ├── defaults-en_US.min.js │ │ │ ├── defaults-es_CL.js │ │ │ ├── defaults-es_CL.js.map │ │ │ ├── defaults-es_CL.min.js │ │ │ ├── defaults-es_ES.js │ │ │ ├── defaults-es_ES.js.map │ │ │ ├── defaults-es_ES.min.js │ │ │ ├── defaults-et_EE.js │ │ │ ├── defaults-et_EE.js.map │ │ │ ├── defaults-et_EE.min.js │ │ │ ├── defaults-eu.js │ │ │ ├── defaults-eu.js.map │ │ │ ├── defaults-eu.min.js │ │ │ ├── defaults-fa_IR.js │ │ │ ├── defaults-fa_IR.js.map │ │ │ ├── defaults-fa_IR.min.js │ │ │ ├── defaults-fi_FI.js │ │ │ ├── defaults-fi_FI.js.map │ │ │ ├── defaults-fi_FI.min.js │ │ │ ├── defaults-fr_FR.js │ │ │ ├── defaults-fr_FR.js.map │ │ │ ├── defaults-fr_FR.min.js │ │ │ ├── defaults-hr_HR.js │ │ │ ├── defaults-hr_HR.js.map │ │ │ ├── defaults-hr_HR.min.js │ │ │ ├── defaults-hu_HU.js │ │ │ ├── defaults-hu_HU.js.map │ │ │ ├── defaults-hu_HU.min.js │ │ │ ├── defaults-id_ID.js │ │ │ ├── defaults-id_ID.js.map │ │ │ ├── defaults-id_ID.min.js │ │ │ ├── defaults-it_IT.js │ │ │ ├── defaults-it_IT.js.map │ │ │ ├── defaults-it_IT.min.js │ │ │ ├── defaults-ja_JP.js │ │ │ ├── defaults-ja_JP.js.map │ │ │ ├── defaults-ja_JP.min.js │ │ │ ├── defaults-kh_KM.js │ │ │ ├── defaults-kh_KM.js.map │ │ │ ├── defaults-kh_KM.min.js │ │ │ ├── defaults-ko_KR.js │ │ │ ├── defaults-ko_KR.js.map │ │ │ ├── defaults-ko_KR.min.js │ │ │ ├── defaults-lt_LT.js │ │ │ ├── defaults-lt_LT.js.map │ │ │ ├── defaults-lt_LT.min.js │ │ │ ├── defaults-lv_LV.js │ │ │ ├── defaults-lv_LV.js.map │ │ │ ├── defaults-lv_LV.min.js │ │ │ ├── defaults-nb_NO.js │ │ │ ├── defaults-nb_NO.js.map │ │ │ ├── defaults-nb_NO.min.js │ │ │ ├── defaults-nl_NL.js │ │ │ ├── defaults-nl_NL.js.map │ │ │ ├── defaults-nl_NL.min.js │ │ │ ├── defaults-pl_PL.js │ │ │ ├── defaults-pl_PL.js.map │ │ │ ├── defaults-pl_PL.min.js │ │ │ ├── defaults-pt_BR.js │ │ │ ├── defaults-pt_BR.js.map │ │ │ ├── defaults-pt_BR.min.js │ │ │ ├── defaults-pt_PT.js │ │ │ ├── defaults-pt_PT.js.map │ │ │ ├── defaults-pt_PT.min.js │ │ │ ├── defaults-ro_RO.js │ │ │ ├── defaults-ro_RO.js.map │ │ │ ├── defaults-ro_RO.min.js │ │ │ ├── defaults-ru_RU.js │ │ │ ├── defaults-ru_RU.js.map │ │ │ ├── defaults-ru_RU.min.js │ │ │ ├── defaults-sk_SK.js │ │ │ ├── defaults-sk_SK.js.map │ │ │ ├── defaults-sk_SK.min.js │ │ │ ├── defaults-sl_SI.js │ │ │ ├── defaults-sl_SI.js.map │ │ │ ├── defaults-sl_SI.min.js │ │ │ ├── defaults-sv_SE.js │ │ │ ├── defaults-sv_SE.js.map │ │ │ ├── defaults-sv_SE.min.js │ │ │ ├── defaults-tr_TR.js │ │ │ ├── defaults-tr_TR.js.map │ │ │ ├── defaults-tr_TR.min.js │ │ │ ├── defaults-ua_UA.js │ │ │ ├── defaults-ua_UA.js.map │ │ │ ├── defaults-ua_UA.min.js │ │ │ ├── defaults-vi_VN.js │ │ │ ├── defaults-vi_VN.js.map │ │ │ ├── defaults-vi_VN.min.js │ │ │ ├── defaults-zh_CN.js │ │ │ ├── defaults-zh_CN.js.map │ │ │ ├── defaults-zh_CN.min.js │ │ │ ├── defaults-zh_TW.js │ │ │ ├── defaults-zh_TW.js.map │ │ │ └── defaults-zh_TW.min.js │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── datatables │ │ ├── datatables.css │ │ ├── datatables.js │ │ ├── datatables.min.css │ │ └── datatables.min.js │ ├── datetimepicker │ │ ├── jquery.datetimepicker.full.js │ │ ├── jquery.datetimepicker.full.min.js │ │ └── jquery.datetimepicker.min.css │ ├── dropzone │ │ ├── basic.css │ │ ├── dropzone-amd-module.js │ │ ├── dropzone.css │ │ ├── dropzone.js │ │ ├── min │ │ │ ├── basic.min.css │ │ │ ├── dropzone-amd-module.min.js │ │ │ ├── dropzone.min.css │ │ │ └── dropzone.min.js │ │ └── readme.md │ ├── elFinder │ │ ├── css │ │ │ ├── commands.css │ │ │ ├── common.css │ │ │ ├── contextmenu.css │ │ │ ├── cwd.css │ │ │ ├── dialog.css │ │ │ ├── elfinder.full.css │ │ │ ├── elfinder.min.css │ │ │ ├── fonts.css │ │ │ ├── navbar.css │ │ │ ├── places.css │ │ │ ├── quicklook.css │ │ │ ├── statusbar.css │ │ │ ├── theme.css │ │ │ ├── toast.css │ │ │ └── toolbar.css │ │ ├── img │ │ │ ├── arrows-active.png │ │ │ ├── arrows-normal.png │ │ │ ├── crop.gif │ │ │ ├── dialogs.png │ │ │ ├── edit_aceeditor.png │ │ │ ├── edit_ckeditor.png │ │ │ ├── edit_ckeditor5.png │ │ │ ├── edit_codemirror.png │ │ │ ├── edit_creativecloud.png │ │ │ ├── edit_onlineconvert.png │ │ │ ├── edit_pixlreditor.png │ │ │ ├── edit_pixlrexpress.png │ │ │ ├── edit_simplemde.png │ │ │ ├── edit_tinymce.png │ │ │ ├── edit_tuiimgedit.png │ │ │ ├── edit_zohooffice.png │ │ │ ├── editor-icons.png │ │ │ ├── icons-big.png │ │ │ ├── icons-big.svg │ │ │ ├── icons-small.png │ │ │ ├── logo.png │ │ │ ├── progress.gif │ │ │ ├── quicklook-bg.png │ │ │ ├── quicklook-icons.png │ │ │ ├── resize.png │ │ │ ├── spinner-mini.gif │ │ │ ├── src │ │ │ │ ├── dialogs.pxm │ │ │ │ ├── editor-icons.xcf │ │ │ │ ├── icons-big.psd │ │ │ │ ├── icons-big.pxm │ │ │ │ ├── icons-big.svg │ │ │ │ ├── icons-big.xcf │ │ │ │ ├── icons-small copy.pxm │ │ │ │ ├── icons-small.psd │ │ │ │ ├── icons-small.pxm │ │ │ │ ├── icons-small.xcf │ │ │ │ ├── quicklook-icons.pxm │ │ │ │ ├── toolbar.pxm │ │ │ │ ├── toolbar.xcf │ │ │ │ └── trashmesh.xcf │ │ │ ├── toolbar.png │ │ │ ├── trashmesh.png │ │ │ ├── tui-icon-a.svg │ │ │ ├── tui-icon-b.svg │ │ │ ├── tui-icon-c.svg │ │ │ ├── tui-icon-d.svg │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ ├── volume_icon_box.png │ │ │ ├── volume_icon_box.svg │ │ │ ├── volume_icon_dropbox.png │ │ │ ├── volume_icon_dropbox.svg │ │ │ ├── volume_icon_ftp.png │ │ │ ├── volume_icon_ftp.svg │ │ │ ├── volume_icon_googledrive.png │ │ │ ├── volume_icon_googledrive.svg │ │ │ ├── volume_icon_local.png │ │ │ ├── volume_icon_local.svg │ │ │ ├── volume_icon_network.png │ │ │ ├── volume_icon_network.svg │ │ │ ├── volume_icon_onedrive.png │ │ │ ├── volume_icon_onedrive.svg │ │ │ ├── volume_icon_sql.png │ │ │ ├── volume_icon_sql.svg │ │ │ ├── volume_icon_trash.png │ │ │ ├── volume_icon_trash.svg │ │ │ ├── volume_icon_zip.png │ │ │ └── volume_icon_zip.svg │ │ ├── js │ │ │ ├── commands │ │ │ │ ├── archive.js │ │ │ │ ├── back.js │ │ │ │ ├── chmod.js │ │ │ │ ├── colwidth.js │ │ │ │ ├── copy.js │ │ │ │ ├── cut.js │ │ │ │ ├── download.js │ │ │ │ ├── duplicate.js │ │ │ │ ├── edit.js │ │ │ │ ├── empty.js │ │ │ │ ├── extract.js │ │ │ │ ├── forward.js │ │ │ │ ├── fullscreen.js │ │ │ │ ├── getfile.js │ │ │ │ ├── help.js │ │ │ │ ├── hidden.js │ │ │ │ ├── hide.js │ │ │ │ ├── home.js │ │ │ │ ├── info.js │ │ │ │ ├── mkdir.js │ │ │ │ ├── mkfile.js │ │ │ │ ├── netmount.js │ │ │ │ ├── open.js │ │ │ │ ├── opendir.js │ │ │ │ ├── opennew.js │ │ │ │ ├── paste.js │ │ │ │ ├── places.js │ │ │ │ ├── preference.js │ │ │ │ ├── quicklook.js │ │ │ │ ├── quicklook.plugins.js │ │ │ │ ├── reload.js │ │ │ │ ├── rename.js │ │ │ │ ├── resize.js │ │ │ │ ├── restore.js │ │ │ │ ├── rm.js │ │ │ │ ├── search.js │ │ │ │ ├── selectall.js │ │ │ │ ├── selectinvert.js │ │ │ │ ├── selectnone.js │ │ │ │ ├── sort.js │ │ │ │ ├── undo.js │ │ │ │ ├── up.js │ │ │ │ ├── upload.js │ │ │ │ └── view.js │ │ │ ├── elFinder.command.js │ │ │ ├── elFinder.history.js │ │ │ ├── elFinder.js │ │ │ ├── elFinder.mimetypes.js │ │ │ ├── elFinder.options.js │ │ │ ├── elFinder.options.netmount.js │ │ │ ├── elFinder.resources.js │ │ │ ├── elFinder.version.js │ │ │ ├── elfinder.full.js │ │ │ ├── elfinder.min.js │ │ │ ├── extras │ │ │ │ ├── editors.default.js │ │ │ │ ├── editors.default.min.js │ │ │ │ ├── encoding-japanese.min.js │ │ │ │ ├── quicklook.googledocs.js │ │ │ │ └── quicklook.googledocs.min.js │ │ │ ├── i18n │ │ │ │ ├── elfinder.LANG.js │ │ │ │ ├── elfinder.ar.js │ │ │ │ ├── elfinder.bg.js │ │ │ │ ├── elfinder.ca.js │ │ │ │ ├── elfinder.cs.js │ │ │ │ ├── elfinder.da.js │ │ │ │ ├── elfinder.de.js │ │ │ │ ├── elfinder.el.js │ │ │ │ ├── elfinder.en.js │ │ │ │ ├── elfinder.es.js │ │ │ │ ├── elfinder.fa.js │ │ │ │ ├── elfinder.fallback.js │ │ │ │ ├── elfinder.fo.js │ │ │ │ ├── elfinder.fr.js │ │ │ │ ├── elfinder.he.js │ │ │ │ ├── elfinder.hr.js │ │ │ │ ├── elfinder.hu.js │ │ │ │ ├── elfinder.id.js │ │ │ │ ├── elfinder.it.js │ │ │ │ ├── elfinder.ja.js │ │ │ │ ├── elfinder.jp.js │ │ │ │ ├── elfinder.ko.js │ │ │ │ ├── elfinder.nl.js │ │ │ │ ├── elfinder.no.js │ │ │ │ ├── elfinder.pl.js │ │ │ │ ├── elfinder.pt_BR.js │ │ │ │ ├── elfinder.ro.js │ │ │ │ ├── elfinder.ru.js │ │ │ │ ├── elfinder.si.js │ │ │ │ ├── elfinder.sk.js │ │ │ │ ├── elfinder.sl.js │ │ │ │ ├── elfinder.sr.js │ │ │ │ ├── elfinder.sv.js │ │ │ │ ├── elfinder.tr.js │ │ │ │ ├── elfinder.ug_CN.js │ │ │ │ ├── elfinder.uk.js │ │ │ │ ├── elfinder.vi.js │ │ │ │ ├── elfinder.zh_CN.js │ │ │ │ ├── elfinder.zh_TW.js │ │ │ │ └── help │ │ │ │ │ ├── cs.html.js │ │ │ │ │ ├── en.html.js │ │ │ │ │ ├── es.html.js │ │ │ │ │ ├── ja.html.js │ │ │ │ │ ├── jp.html.js │ │ │ │ │ ├── ko.html.js │ │ │ │ │ ├── pl.html.js │ │ │ │ │ ├── ru.html.js │ │ │ │ │ └── sk.html.js │ │ │ ├── jquery.dialogelfinder.js │ │ │ ├── jquery.elfinder.js │ │ │ ├── proxy │ │ │ │ └── elFinderSupportVer1.js │ │ │ └── ui │ │ │ │ ├── button.js │ │ │ │ ├── contextmenu.js │ │ │ │ ├── cwd.js │ │ │ │ ├── dialog.js │ │ │ │ ├── fullscreenbutton.js │ │ │ │ ├── navbar.js │ │ │ │ ├── navdock.js │ │ │ │ ├── overlay.js │ │ │ │ ├── panel.js │ │ │ │ ├── path.js │ │ │ │ ├── places.js │ │ │ │ ├── searchbutton.js │ │ │ │ ├── sortbutton.js │ │ │ │ ├── stat.js │ │ │ │ ├── toast.js │ │ │ │ ├── toolbar.js │ │ │ │ ├── tree.js │ │ │ │ ├── uploadButton.js │ │ │ │ ├── viewbutton.js │ │ │ │ └── workzone.js │ │ ├── sounds │ │ │ └── rm.wav │ │ └── themes │ │ │ └── Material │ │ │ ├── css │ │ │ ├── theme-gray.css │ │ │ ├── theme-gray.min.css │ │ │ ├── theme-light.css │ │ │ ├── theme-light.min.css │ │ │ ├── theme.css │ │ │ └── theme.min.css │ │ │ ├── icons │ │ │ ├── material.eot │ │ │ ├── material.svg │ │ │ ├── material.ttf │ │ │ ├── material.woff │ │ │ └── material.woff2 │ │ │ └── images │ │ │ ├── icons-big.png │ │ │ ├── icons-small.png │ │ │ └── loading.svg │ ├── excellentexport │ │ ├── excellentexport.js │ │ └── excellentexport.min.js │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── form-builder │ │ ├── form-builder.min.js │ │ └── form-render.min.js │ ├── fullcalendar │ │ ├── CHANGELOG.txt │ │ ├── CONTRIBUTING.txt │ │ ├── LICENSE.txt │ │ ├── fullcalendar.css │ │ ├── fullcalendar.js │ │ ├── fullcalendar.min.css │ │ ├── fullcalendar.min.js │ │ ├── fullcalendar.print.css │ │ ├── fullcalendar.print.min.css │ │ ├── gcal.js │ │ ├── gcal.min.js │ │ ├── lib │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.min.js │ │ │ └── moment.min.js │ │ ├── locale-all.js │ │ └── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-nz.js │ │ │ ├── es-do.js │ │ │ ├── es-us.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── ko.js │ │ │ ├── lb.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.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 │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ ├── gantt │ │ ├── css │ │ │ └── style.css │ │ ├── img │ │ │ ├── grid.png │ │ │ ├── icon_sprite.png │ │ │ └── slider_handle.png │ │ └── js │ │ │ ├── dataDays.js │ │ │ ├── dataDaysEnh.js │ │ │ ├── dataHours.js │ │ │ ├── jquery.fn.gantt.js │ │ │ └── jquery.fn.gantt.min.js │ ├── index.html │ ├── internal │ │ ├── bootstrap-nav-tabs-scrollable │ │ │ ├── bootstrap-nav-tab-scrollable.css │ │ │ └── bootstrap-nav-tab-scrollable.js │ │ ├── desktop-notifications │ │ │ ├── notifications.js │ │ │ └── notifications.min.js │ │ ├── google-picker │ │ │ ├── picker.js │ │ │ └── picker.min.js │ │ ├── highlight │ │ │ ├── highlight.js │ │ │ └── highlight.min.js │ │ ├── hotkeys │ │ │ ├── hotkeys.js │ │ │ └── hotkeys.min.js │ │ └── validation │ │ │ ├── app-form-validation.js │ │ │ └── app-form-validation.min.js │ ├── jquery-circle-progress │ │ ├── circle-progress.js │ │ └── circle-progress.min.js │ ├── jquery-comments │ │ ├── css │ │ │ └── jquery-comments.css │ │ └── js │ │ │ ├── jquery-comments.js │ │ │ └── jquery-comments.min.js │ ├── jquery-ui │ │ ├── images │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.structure.min.css │ │ ├── jquery-ui.theme.css │ │ └── jquery-ui.theme.min.css │ ├── jquery-validation │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_ar.min.js │ │ │ ├── messages_az.js │ │ │ ├── messages_az.min.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bg.min.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_bn_BD.min.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_ca.min.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_cs.min.js │ │ │ ├── messages_da.js │ │ │ ├── messages_da.min.js │ │ │ ├── messages_de.js │ │ │ ├── messages_de.min.js │ │ │ ├── messages_el.js │ │ │ ├── messages_el.min.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es.min.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_AR.min.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_es_PE.min.js │ │ │ ├── messages_et.js │ │ │ ├── messages_et.min.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_eu.min.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fa.min.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fi.min.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_fr.min.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_ge.min.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_gl.min.js │ │ │ ├── messages_he.js │ │ │ ├── messages_he.min.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hr.min.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hu.min.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_hy_AM.min.js │ │ │ ├── messages_id.js │ │ │ ├── messages_id.min.js │ │ │ ├── messages_is.js │ │ │ ├── messages_is.min.js │ │ │ ├── messages_it.js │ │ │ ├── messages_it.min.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ja.min.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_ka.min.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_kk.min.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_ko.min.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lt.min.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_lv.min.js │ │ │ ├── messages_mk.js │ │ │ ├── messages_mk.min.js │ │ │ ├── messages_my.js │ │ │ ├── messages_my.min.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_nl.min.js │ │ │ ├── messages_no.js │ │ │ ├── messages_no.min.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pl.min.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_BR.min.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_pt_PT.min.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ro.min.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_ru.min.js │ │ │ ├── messages_sd.js │ │ │ ├── messages_sd.min.js │ │ │ ├── messages_si.js │ │ │ ├── messages_si.min.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sk.min.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sl.min.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr.min.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sr_lat.min.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_sv.min.js │ │ │ ├── messages_th.js │ │ │ ├── messages_th.min.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tj.min.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_tr.min.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_uk.min.js │ │ │ ├── messages_ur.js │ │ │ ├── messages_ur.min.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_vi.min.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh.min.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── messages_zh_TW.min.js │ │ │ ├── methods_de.js │ │ │ ├── methods_de.min.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_es_CL.min.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_fi.min.js │ │ │ ├── methods_nl.js │ │ │ ├── methods_nl.min.js │ │ │ ├── methods_pt.js │ │ │ └── methods_pt.min.js │ ├── jquery.are-you-sure │ │ ├── are-you-sure.jquery.json │ │ ├── ays-beforeunload-shim.js │ │ └── jquery.are-you-sure.js │ ├── jquery │ │ ├── jquery-3.1.1.min.map │ │ ├── jquery-migrate.js │ │ ├── jquery-migrate.min.js │ │ ├── jquery.js │ │ └── jquery.min.js │ ├── lightbox │ │ ├── css │ │ │ ├── lightbox.css │ │ │ └── lightbox.min.css │ │ ├── images │ │ │ ├── close.png │ │ │ ├── loading.gif │ │ │ ├── next.png │ │ │ └── prev.png │ │ └── js │ │ │ ├── lightbox-plus-jquery.js │ │ │ ├── lightbox-plus-jquery.min.js │ │ │ ├── lightbox-plus-jquery.min.map │ │ │ ├── lightbox.js │ │ │ ├── lightbox.min.js │ │ │ └── lightbox.min.map │ ├── metisMenu │ │ ├── metisMenu.css │ │ ├── metisMenu.js │ │ ├── metisMenu.js.map │ │ ├── metisMenu.min.css │ │ └── metisMenu.min.js │ ├── moment-timezone │ │ ├── moment-timezone-with-data-2012-2022.js │ │ └── moment-timezone-with-data-2012-2022.min.js │ ├── moment │ │ ├── moment-with-locales.js │ │ └── moment-with-locales.min.js │ ├── readmore │ │ ├── readmore.js │ │ └── readmore.min.js │ ├── roboto │ │ ├── fonts │ │ │ ├── COPYRIGHT.txt │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA.json │ │ │ ├── Medium │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ └── Roboto-Medium.woff2 │ │ │ └── Regular │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ └── Roboto-Regular.woff2 │ │ ├── roboto.css │ │ ├── roboto.css.map │ │ └── roboto.scss │ ├── signature-pad │ │ └── signature_pad.min.js │ ├── sticky │ │ └── sticky.js │ ├── tagsinput │ │ ├── css │ │ │ ├── jquery.tagit.css │ │ │ └── tagit.ui-zendesk.css │ │ └── js │ │ │ ├── tag-it.js │ │ │ └── tag-it.min.js │ ├── tinymce-stickytoolbar │ │ └── stickytoolbar.js │ ├── tinymce │ │ ├── jquery.tinymce.min.js │ │ ├── langs │ │ │ ├── af_ZA.js │ │ │ ├── ar.js │ │ │ ├── be.js │ │ │ ├── bg_BG.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cs_CZ.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── de_AT.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en_CA.js │ │ │ ├── en_GB.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── es_MX.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fa_IR.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr_CH.js │ │ │ ├── fr_FR.js │ │ │ ├── ga.js │ │ │ ├── gd.js │ │ │ ├── gl.js │ │ │ ├── he_IL.js │ │ │ ├── hi_IN.js │ │ │ ├── hr.js │ │ │ ├── hu_HU.js │ │ │ ├── id.js │ │ │ ├── is_IS.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka_GE.js │ │ │ ├── kab.js │ │ │ ├── kk.js │ │ │ ├── km_KH.js │ │ │ ├── ko.js │ │ │ ├── ko_KR.js │ │ │ ├── ku.js │ │ │ ├── ku_IQ.js │ │ │ ├── lb.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk_MK.js │ │ │ ├── ml.js │ │ │ ├── mn_MN.js │ │ │ ├── nb_NO.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt_BR.js │ │ │ ├── pt_PT.js │ │ │ ├── readme.md │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── ru_RU.js │ │ │ ├── sk.js │ │ │ ├── sl_SI.js │ │ │ ├── sr.js │ │ │ ├── sv_SE.js │ │ │ ├── ta.js │ │ │ ├── ta_IN.js │ │ │ ├── th_TH.js │ │ │ ├── tr.js │ │ │ ├── tr_TR.js │ │ │ ├── uk.js │ │ │ ├── uk_UA.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── vi_VN.js │ │ │ ├── zh_CN.js │ │ │ └── zh_TW.js │ │ ├── license.txt │ │ ├── plugins │ │ │ ├── advlist │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ └── plugin.min.js │ │ │ ├── autolink │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ └── plugin.min.js │ │ │ ├── autosave │ │ │ │ └── plugin.min.js │ │ │ ├── bbcode │ │ │ │ └── plugin.min.js │ │ │ ├── charmap │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ └── plugin.min.js │ │ │ ├── codesample │ │ │ │ ├── css │ │ │ │ │ └── prism.css │ │ │ │ └── plugin.min.js │ │ │ ├── colorpicker │ │ │ │ └── plugin.min.js │ │ │ ├── contextmenu │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ └── plugin.min.js │ │ │ ├── emoticons │ │ │ │ ├── img │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ └── smiley-yell.gif │ │ │ │ └── plugin.min.js │ │ │ ├── fullpage │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ └── plugin.min.js │ │ │ ├── help │ │ │ │ ├── img │ │ │ │ │ └── logo.png │ │ │ │ └── plugin.min.js │ │ │ ├── hr │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ └── plugin.min.js │ │ │ ├── imagetools │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ └── plugin.min.js │ │ │ ├── insertdatetime │ │ │ │ └── plugin.min.js │ │ │ ├── legacyoutput │ │ │ │ └── plugin.min.js │ │ │ ├── link │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ └── plugin.min.js │ │ │ ├── noneditable │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ └── plugin.min.js │ │ │ ├── paste │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ └── plugin.min.js │ │ │ ├── print │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ └── plugin.min.js │ │ │ ├── searchreplace │ │ │ │ └── plugin.min.js │ │ │ ├── spellchecker │ │ │ │ └── plugin.min.js │ │ │ ├── tabfocus │ │ │ │ └── plugin.min.js │ │ │ ├── table │ │ │ │ └── plugin.min.js │ │ │ ├── template │ │ │ │ └── plugin.min.js │ │ │ ├── textcolor │ │ │ │ └── plugin.min.js │ │ │ ├── textpattern │ │ │ │ └── plugin.min.js │ │ │ ├── toc │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ ├── css │ │ │ │ │ └── visualblocks.css │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ └── plugin.min.js │ │ │ └── wordcount │ │ │ │ └── plugin.min.js │ │ ├── skins │ │ │ ├── light │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── tinymce-small.eot │ │ │ │ │ ├── tinymce-small.json │ │ │ │ │ ├── tinymce-small.svg │ │ │ │ │ ├── tinymce-small.ttf │ │ │ │ │ ├── tinymce-small.woff │ │ │ │ │ ├── tinymce.eot │ │ │ │ │ ├── tinymce.json │ │ │ │ │ ├── tinymce.svg │ │ │ │ │ ├── tinymce.ttf │ │ │ │ │ └── tinymce.woff │ │ │ │ ├── img │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── loader.gif │ │ │ │ │ ├── object.gif │ │ │ │ │ └── trans.gif │ │ │ │ ├── skin.ie7.min.css │ │ │ │ └── skin.min.css │ │ │ ├── lightgray │ │ │ │ ├── AbsoluteLayout.less │ │ │ │ ├── Animations.less │ │ │ │ ├── Arrows.less │ │ │ │ ├── Button.less │ │ │ │ ├── ButtonGroup.less │ │ │ │ ├── Checkbox.less │ │ │ │ ├── ColorBox.less │ │ │ │ ├── ColorButton.less │ │ │ │ ├── ColorPicker.less │ │ │ │ ├── ComboBox.less │ │ │ │ ├── Container.less │ │ │ │ ├── Content.Inline.less │ │ │ │ ├── Content.Objects.less │ │ │ │ ├── Content.less │ │ │ │ ├── CropRect.less │ │ │ │ ├── FieldSet.less │ │ │ │ ├── FitLayout.less │ │ │ │ ├── FloatPanel.less │ │ │ │ ├── FlowLayout.less │ │ │ │ ├── Icons.Ie7.less │ │ │ │ ├── Icons.less │ │ │ │ ├── Iframe.less │ │ │ │ ├── ImagePanel.less │ │ │ │ ├── InfoBox.less │ │ │ │ ├── Label.less │ │ │ │ ├── ListBox.less │ │ │ │ ├── Menu.less │ │ │ │ ├── MenuBar.less │ │ │ │ ├── MenuButton.less │ │ │ │ ├── MenuItem.less │ │ │ │ ├── Mixins.less │ │ │ │ ├── Notification.less │ │ │ │ ├── Panel.less │ │ │ │ ├── Path.less │ │ │ │ ├── Progress.less │ │ │ │ ├── Radio.less │ │ │ │ ├── Reset.less │ │ │ │ ├── ResizeHandle.less │ │ │ │ ├── Scrollable.less │ │ │ │ ├── SelectBox.less │ │ │ │ ├── Sidebar.less │ │ │ │ ├── Slider.less │ │ │ │ ├── Spacer.less │ │ │ │ ├── SplitButton.less │ │ │ │ ├── StackLayout.less │ │ │ │ ├── TabPanel.less │ │ │ │ ├── TextBox.less │ │ │ │ ├── Throbber.less │ │ │ │ ├── TinyMCE.less │ │ │ │ ├── ToolTip.less │ │ │ │ ├── Variables.less │ │ │ │ ├── Window.less │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── content.mobile.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── tinymce-mobile.woff │ │ │ │ │ ├── tinymce-small.eot │ │ │ │ │ ├── tinymce-small.svg │ │ │ │ │ ├── tinymce-small.ttf │ │ │ │ │ ├── tinymce-small.woff │ │ │ │ │ ├── tinymce.eot │ │ │ │ │ ├── tinymce.svg │ │ │ │ │ ├── tinymce.ttf │ │ │ │ │ └── tinymce.woff │ │ │ │ ├── img │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── loader.gif │ │ │ │ │ ├── object.gif │ │ │ │ │ └── trans.gif │ │ │ │ ├── skin.dev.less │ │ │ │ ├── skin.ie7.dev.less │ │ │ │ ├── skin.ie7.less │ │ │ │ ├── skin.ie7.min.css │ │ │ │ ├── skin.less │ │ │ │ ├── skin.min.css │ │ │ │ └── skin.mobile.min.css │ │ │ └── perfex │ │ │ │ ├── Variables.less │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── fonts │ │ │ │ ├── readme.md │ │ │ │ ├── tinymce-small.eot │ │ │ │ ├── tinymce-small.json │ │ │ │ ├── tinymce-small.svg │ │ │ │ ├── tinymce-small.ttf │ │ │ │ ├── tinymce-small.woff │ │ │ │ ├── tinymce.eot │ │ │ │ ├── tinymce.json │ │ │ │ ├── tinymce.svg │ │ │ │ ├── tinymce.ttf │ │ │ │ └── tinymce.woff │ │ │ │ ├── img │ │ │ │ ├── anchor.gif │ │ │ │ ├── loader.gif │ │ │ │ ├── object.gif │ │ │ │ └── trans.gif │ │ │ │ ├── skin.ie7.min.css │ │ │ │ ├── skin.json │ │ │ │ └── skin.min.css │ │ ├── themes │ │ │ ├── inlite │ │ │ │ ├── config │ │ │ │ │ ├── bolt │ │ │ │ │ │ ├── atomic.js │ │ │ │ │ │ ├── bootstrap-atomic.js │ │ │ │ │ │ ├── bootstrap-browser.js │ │ │ │ │ │ ├── bootstrap-demo.js │ │ │ │ │ │ ├── bootstrap-prod.js │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── demo.js │ │ │ │ │ │ └── prod.js │ │ │ │ │ └── dent │ │ │ │ │ │ └── depend.js │ │ │ │ ├── scratch │ │ │ │ │ ├── compile │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ └── theme.js │ │ │ │ │ └── inline │ │ │ │ │ │ ├── theme.js │ │ │ │ │ │ └── theme.raw.js │ │ │ │ ├── src │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── demo.css │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── tinymce │ │ │ │ │ │ │ └── inlite │ │ │ │ │ │ │ └── Demo.js │ │ │ │ │ ├── main │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── tinymce │ │ │ │ │ │ │ └── inlite │ │ │ │ │ │ │ ├── Theme.js │ │ │ │ │ │ │ ├── alien │ │ │ │ │ │ │ ├── Arr.js │ │ │ │ │ │ │ ├── Bookmark.js │ │ │ │ │ │ │ ├── Unlink.js │ │ │ │ │ │ │ └── Uuid.js │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── Actions.js │ │ │ │ │ │ │ ├── Convert.js │ │ │ │ │ │ │ ├── ElementMatcher.js │ │ │ │ │ │ │ ├── Layout.js │ │ │ │ │ │ │ ├── Matcher.js │ │ │ │ │ │ │ ├── Measure.js │ │ │ │ │ │ │ ├── PredicateId.js │ │ │ │ │ │ │ ├── SelectionMatcher.js │ │ │ │ │ │ │ ├── SkinLoader.js │ │ │ │ │ │ │ └── UrlType.js │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ ├── Conversions.js │ │ │ │ │ │ │ └── Picker.js │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── Buttons.js │ │ │ │ │ │ │ ├── Forms.js │ │ │ │ │ │ │ ├── Panel.js │ │ │ │ │ │ │ └── Toolbar.js │ │ │ │ │ └── test │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ ├── alien │ │ │ │ │ │ │ ├── ArrTest.js │ │ │ │ │ │ │ └── UuidTest.js │ │ │ │ │ │ └── core │ │ │ │ │ │ │ ├── ConvertTest.js │ │ │ │ │ │ │ ├── MatcherTest.js │ │ │ │ │ │ │ └── UrlTypeTest.js │ │ │ │ │ │ └── browser │ │ │ │ │ │ ├── ThemeTest.js │ │ │ │ │ │ ├── alien │ │ │ │ │ │ ├── BookmarkTest.js │ │ │ │ │ │ └── UnlinkTest.js │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── ActionsTest.js │ │ │ │ │ │ ├── ElementMatcher.js │ │ │ │ │ │ ├── LayoutTest.js │ │ │ │ │ │ ├── MeasureTest.js │ │ │ │ │ │ ├── PredicateIdTest.js │ │ │ │ │ │ └── SelectionMatcherTest.js │ │ │ │ │ │ └── file │ │ │ │ │ │ ├── ConversionsTest.js │ │ │ │ │ │ └── SelectionMatcher.js │ │ │ │ └── theme.min.js │ │ │ ├── mobile │ │ │ │ └── theme.min.js │ │ │ └── modern │ │ │ │ ├── theme.js │ │ │ │ └── theme.min.js │ │ └── tinymce.min.js │ └── waypoint │ │ ├── jquery.waypoints.js │ │ ├── jquery.waypoints.min.js │ │ ├── noframework.waypoints.js │ │ ├── noframework.waypoints.min.js │ │ ├── shortcuts │ │ ├── infinite.js │ │ ├── infinite.min.js │ │ ├── inview.js │ │ ├── inview.min.js │ │ ├── sticky.js │ │ └── sticky.min.js │ │ ├── waypoints.debug.js │ │ ├── zepto.waypoints.js │ │ └── zepto.waypoints.min.js └── themes │ ├── index.html │ └── perfex │ ├── css │ ├── index.html │ ├── style.css │ └── style.min.css │ ├── index.html │ └── js │ ├── clients.js │ ├── clients.min.js │ ├── global.js │ ├── global.min.js │ └── index.html ├── index.php ├── media └── index.html ├── modules ├── backup │ ├── backup.php │ ├── composer.json │ ├── composer.lock │ ├── controllers │ │ ├── Backup.php │ │ └── index.html │ ├── index.html │ ├── install.php │ ├── language │ │ ├── bulgarian │ │ │ └── backup_lang.php │ │ ├── catalan │ │ │ └── backup_lang.php │ │ ├── chinese │ │ │ └── backup_lang.php │ │ ├── czech │ │ │ └── backup_lang.php │ │ ├── dutch │ │ │ └── backup_lang.php │ │ ├── english │ │ │ └── backup_lang.php │ │ ├── french │ │ │ └── backup_lang.php │ │ ├── german │ │ │ └── backup_lang.php │ │ ├── greek │ │ │ └── backup_lang.php │ │ ├── index.html │ │ ├── indonesia │ │ │ └── backup_lang.php │ │ ├── italian │ │ │ └── backup_lang.php │ │ ├── japanese │ │ │ └── backup_lang.php │ │ ├── persian │ │ │ └── backup_lang.php │ │ ├── polish │ │ │ └── backup_lang.php │ │ ├── portuguese │ │ │ └── backup_lang.php │ │ ├── portuguese_br │ │ │ └── backup_lang.php │ │ ├── romanian │ │ │ └── backup_lang.php │ │ ├── russian │ │ │ └── backup_lang.php │ │ ├── slovak │ │ │ └── backup_lang.php │ │ ├── spanish │ │ │ └── backup_lang.php │ │ ├── swedish │ │ │ └── backup_lang.php │ │ ├── turkish │ │ │ └── backup_lang.php │ │ └── vietnamese │ │ │ └── backup_lang.php │ ├── libraries │ │ ├── Backup_module.php │ │ └── index.html │ ├── vendor │ │ ├── autoload.php │ │ ├── backup-manager │ │ │ └── backup-manager │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── config │ │ │ │ ├── database.php │ │ │ │ └── storage.php │ │ │ │ ├── examples │ │ │ │ └── standalone │ │ │ │ │ ├── backup.php │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ ├── config │ │ │ │ │ ├── database.php │ │ │ │ │ └── storage.php │ │ │ │ │ └── restore.php │ │ │ │ ├── phpspec.yml │ │ │ │ ├── spec │ │ │ │ ├── Compressors │ │ │ │ │ ├── CompressorProviderSpec.php │ │ │ │ │ ├── GzipCompressorSpec.php │ │ │ │ │ └── NullCompressorSpec.php │ │ │ │ ├── Config │ │ │ │ │ └── ConfigSpec.php │ │ │ │ ├── Databases │ │ │ │ │ ├── DatabaseProviderSpec.php │ │ │ │ │ ├── MysqlDatabaseSpec.php │ │ │ │ │ └── PostgresqlDatabaseSpec.php │ │ │ │ ├── Filesystems │ │ │ │ │ ├── Awss3FilesystemSpec.php │ │ │ │ │ ├── BackblazeFilesystemSpec.php │ │ │ │ │ ├── DropboxFilesystemSpec.php │ │ │ │ │ ├── DropboxV2FilesystemSpec.php │ │ │ │ │ ├── FilesystemProviderSpec.php │ │ │ │ │ ├── FtpFilesystemSpec.php │ │ │ │ │ ├── GcsFilesystemSpec.php │ │ │ │ │ ├── LocalFilesystemSpec.php │ │ │ │ │ ├── RackspaceFilesystemSpec.php │ │ │ │ │ └── SftpFilesystemSpec.php │ │ │ │ ├── ManagerSpec.php │ │ │ │ ├── Procedures │ │ │ │ │ ├── BackupProcedureSpec.php │ │ │ │ │ ├── RestoreProcedureSpec.php │ │ │ │ │ └── SequenceSpec.php │ │ │ │ ├── ShellProcessing │ │ │ │ │ └── ShellProcessorSpec.php │ │ │ │ ├── Tasks │ │ │ │ │ ├── Compression │ │ │ │ │ │ ├── CompressFileSpec.php │ │ │ │ │ │ └── DecompressFileSpec.php │ │ │ │ │ ├── Database │ │ │ │ │ │ ├── DumpDatabaseSpec.php │ │ │ │ │ │ └── RestoreDatabaseSpec.php │ │ │ │ │ └── Storage │ │ │ │ │ │ ├── DeleteFileSpec.php │ │ │ │ │ │ └── TransferFileSpec.php │ │ │ │ └── configs │ │ │ │ │ ├── database.php │ │ │ │ │ ├── keys.php │ │ │ │ │ └── storage.php │ │ │ │ └── src │ │ │ │ ├── Compressors │ │ │ │ ├── Compressor.php │ │ │ │ ├── CompressorProvider.php │ │ │ │ ├── CompressorTypeNotSupported.php │ │ │ │ ├── GzipCompressor.php │ │ │ │ └── NullCompressor.php │ │ │ │ ├── Config │ │ │ │ ├── Config.php │ │ │ │ ├── ConfigFieldNotFound.php │ │ │ │ ├── ConfigFileNotFound.php │ │ │ │ └── ConfigNotFoundForConnection.php │ │ │ │ ├── Databases │ │ │ │ ├── Database.php │ │ │ │ ├── DatabaseProvider.php │ │ │ │ ├── DatabaseTypeNotSupported.php │ │ │ │ ├── MysqlDatabase.php │ │ │ │ └── PostgresqlDatabase.php │ │ │ │ ├── Filesystems │ │ │ │ ├── Awss3Filesystem.php │ │ │ │ ├── BackblazeFilesystem.php │ │ │ │ ├── Destination.php │ │ │ │ ├── DropboxFilesystem.php │ │ │ │ ├── DropboxV2Filesystem.php │ │ │ │ ├── Filesystem.php │ │ │ │ ├── FilesystemProvider.php │ │ │ │ ├── FilesystemTypeNotSupported.php │ │ │ │ ├── FtpFilesystem.php │ │ │ │ ├── GcsFilesystem.php │ │ │ │ ├── LocalFilesystem.php │ │ │ │ ├── RackspaceFilesystem.php │ │ │ │ └── SftpFilesystem.php │ │ │ │ ├── Manager.php │ │ │ │ ├── Procedures │ │ │ │ ├── BackupProcedure.php │ │ │ │ ├── Procedure.php │ │ │ │ ├── RestoreProcedure.php │ │ │ │ └── Sequence.php │ │ │ │ ├── ShellProcessing │ │ │ │ ├── ShellProcessFailed.php │ │ │ │ └── ShellProcessor.php │ │ │ │ └── Tasks │ │ │ │ ├── Compression │ │ │ │ ├── CompressFile.php │ │ │ │ └── DecompressFile.php │ │ │ │ ├── Database │ │ │ │ ├── DumpDatabase.php │ │ │ │ └── RestoreDatabase.php │ │ │ │ ├── Storage │ │ │ │ ├── DeleteFile.php │ │ │ │ └── TransferFile.php │ │ │ │ └── Task.php │ │ ├── composer │ │ │ ├── ClassLoader.php │ │ │ ├── LICENSE │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_real.php │ │ │ ├── autoload_static.php │ │ │ └── installed.json │ │ ├── league │ │ │ └── flysystem │ │ │ │ ├── LICENSE │ │ │ │ ├── composer.json │ │ │ │ ├── deprecations.md │ │ │ │ └── src │ │ │ │ ├── Adapter │ │ │ │ ├── AbstractAdapter.php │ │ │ │ ├── AbstractFtpAdapter.php │ │ │ │ ├── CanOverwriteFiles.php │ │ │ │ ├── Ftp.php │ │ │ │ ├── Ftpd.php │ │ │ │ ├── Local.php │ │ │ │ ├── NullAdapter.php │ │ │ │ ├── Polyfill │ │ │ │ │ ├── NotSupportingVisibilityTrait.php │ │ │ │ │ ├── StreamedCopyTrait.php │ │ │ │ │ ├── StreamedReadingTrait.php │ │ │ │ │ ├── StreamedTrait.php │ │ │ │ │ └── StreamedWritingTrait.php │ │ │ │ └── SynologyFtp.php │ │ │ │ ├── AdapterInterface.php │ │ │ │ ├── Config.php │ │ │ │ ├── ConfigAwareTrait.php │ │ │ │ ├── Directory.php │ │ │ │ ├── Exception.php │ │ │ │ ├── File.php │ │ │ │ ├── FileExistsException.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ ├── Filesystem.php │ │ │ │ ├── FilesystemInterface.php │ │ │ │ ├── FilesystemNotFoundException.php │ │ │ │ ├── Handler.php │ │ │ │ ├── MountManager.php │ │ │ │ ├── NotSupportedException.php │ │ │ │ ├── Plugin │ │ │ │ ├── AbstractPlugin.php │ │ │ │ ├── EmptyDir.php │ │ │ │ ├── ForcedCopy.php │ │ │ │ ├── ForcedRename.php │ │ │ │ ├── GetWithMetadata.php │ │ │ │ ├── ListFiles.php │ │ │ │ ├── ListPaths.php │ │ │ │ ├── ListWith.php │ │ │ │ ├── PluggableTrait.php │ │ │ │ └── PluginNotFoundException.php │ │ │ │ ├── PluginInterface.php │ │ │ │ ├── ReadInterface.php │ │ │ │ ├── RootViolationException.php │ │ │ │ ├── SafeStorage.php │ │ │ │ ├── UnreadableFileException.php │ │ │ │ ├── Util.php │ │ │ │ └── Util │ │ │ │ ├── ContentListingFormatter.php │ │ │ │ ├── MimeType.php │ │ │ │ └── StreamHasher.php │ │ └── symfony │ │ │ └── process │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── ProcessFailedException.php │ │ │ ├── ProcessTimedOutException.php │ │ │ └── RuntimeException.php │ │ │ ├── ExecutableFinder.php │ │ │ ├── InputStream.php │ │ │ ├── LICENSE │ │ │ ├── PhpExecutableFinder.php │ │ │ ├── PhpProcess.php │ │ │ ├── Pipes │ │ │ ├── AbstractPipes.php │ │ │ ├── PipesInterface.php │ │ │ ├── UnixPipes.php │ │ │ └── WindowsPipes.php │ │ │ ├── Process.php │ │ │ ├── ProcessBuilder.php │ │ │ ├── ProcessUtils.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ ├── ExecutableFinderTest.php │ │ │ ├── NonStopableProcess.php │ │ │ ├── PhpExecutableFinderTest.php │ │ │ ├── PhpProcessTest.php │ │ │ ├── PipeStdinInStdoutStdErrStreamSelect.php │ │ │ ├── ProcessBuilderTest.php │ │ │ ├── ProcessFailedExceptionTest.php │ │ │ ├── ProcessTest.php │ │ │ ├── ProcessUtilsTest.php │ │ │ └── SignalListener.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ └── views │ │ ├── backup.php │ │ └── index.html ├── goals │ ├── controllers │ │ ├── Goals.php │ │ └── index.html │ ├── goals.php │ ├── index.html │ ├── install.php │ ├── language │ │ ├── bulgarian │ │ │ └── goals_lang.php │ │ ├── catalan │ │ │ └── goals_lang.php │ │ ├── chinese │ │ │ └── goals_lang.php │ │ ├── czech │ │ │ └── goals_lang.php │ │ ├── dutch │ │ │ └── goals_lang.php │ │ ├── english │ │ │ └── goals_lang.php │ │ ├── french │ │ │ └── goals_lang.php │ │ ├── german │ │ │ └── goals_lang.php │ │ ├── greek │ │ │ └── goals_lang.php │ │ ├── index.html │ │ ├── indonesia │ │ │ └── goals_lang.php │ │ ├── italian │ │ │ └── goals_lang.php │ │ ├── japanese │ │ │ └── goals_lang.php │ │ ├── persian │ │ │ └── goals_lang.php │ │ ├── polish │ │ │ └── goals_lang.php │ │ ├── portuguese │ │ │ └── goals_lang.php │ │ ├── portuguese_br │ │ │ └── goals_lang.php │ │ ├── romanian │ │ │ └── goals_lang.php │ │ ├── russian │ │ │ └── goals_lang.php │ │ ├── slovak │ │ │ └── goals_lang.php │ │ ├── spanish │ │ │ └── goals_lang.php │ │ ├── swedish │ │ │ └── goals_lang.php │ │ ├── turkish │ │ │ └── goals_lang.php │ │ └── vietnamese │ │ │ └── goals_lang.php │ ├── models │ │ ├── Goals_model.php │ │ └── index.html │ └── views │ │ ├── goal.php │ │ ├── index.html │ │ ├── manage.php │ │ ├── table.php │ │ └── widget.php ├── index.html ├── menu_setup │ ├── assets │ │ ├── font-awesome-icon-picker │ │ │ ├── css │ │ │ │ ├── fontawesome-iconpicker.css │ │ │ │ ├── fontawesome-iconpicker.min.css │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── fontawesome-iconpicker.js │ │ │ │ ├── fontawesome-iconpicker.min.js │ │ │ │ └── index.html │ │ ├── index.html │ │ └── jquery-nestable │ │ │ ├── index.html │ │ │ └── jquery.nestable.js │ ├── controllers │ │ ├── Menu_setup.php │ │ └── index.html │ ├── helpers │ │ ├── index.html │ │ └── menu_setup_helper.php │ ├── index.html │ ├── install.php │ ├── language │ │ ├── bulgarian │ │ │ └── menu_setup_lang.php │ │ ├── catalan │ │ │ └── menu_setup_lang.php │ │ ├── chinese │ │ │ └── menu_setup_lang.php │ │ ├── czech │ │ │ └── menu_setup_lang.php │ │ ├── dutch │ │ │ └── menu_setup_lang.php │ │ ├── english │ │ │ └── menu_setup_lang.php │ │ ├── french │ │ │ └── menu_setup_lang.php │ │ ├── german │ │ │ └── menu_setup_lang.php │ │ ├── greek │ │ │ └── menu_setup_lang.php │ │ ├── index.html │ │ ├── indonesia │ │ │ └── menu_setup_lang.php │ │ ├── italian │ │ │ └── menu_setup_lang.php │ │ ├── japanese │ │ │ └── menu_setup_lang.php │ │ ├── persian │ │ │ └── menu_setup_lang.php │ │ ├── polish │ │ │ └── menu_setup_lang.php │ │ ├── portuguese │ │ │ └── menu_setup_lang.php │ │ ├── portuguese_br │ │ │ └── menu_setup_lang.php │ │ ├── romanian │ │ │ └── menu_setup_lang.php │ │ ├── russian │ │ │ └── menu_setup_lang.php │ │ ├── slovak │ │ │ └── menu_setup_lang.php │ │ ├── spanish │ │ │ └── menu_setup_lang.php │ │ ├── swedish │ │ │ └── menu_setup_lang.php │ │ ├── turkish │ │ │ └── menu_setup_lang.php │ │ └── vietnamese │ │ │ └── menu_setup_lang.php │ ├── menu_setup.php │ └── views │ │ ├── index.html │ │ ├── main_menu.php │ │ └── setup_menu.php ├── surveys │ ├── assets │ │ ├── css │ │ │ ├── index.html │ │ │ └── surveys.css │ │ ├── index.html │ │ └── js │ │ │ ├── index.html │ │ │ └── surveys.js │ ├── controllers │ │ ├── Participate.php │ │ ├── Surveys.php │ │ └── index.html │ ├── index.html │ ├── install.php │ ├── language │ │ ├── bulgarian │ │ │ └── surveys_lang.php │ │ ├── catalan │ │ │ └── surveys_lang.php │ │ ├── chinese │ │ │ └── surveys_lang.php │ │ ├── czech │ │ │ └── surveys_lang.php │ │ ├── dutch │ │ │ └── surveys_lang.php │ │ ├── english │ │ │ └── surveys_lang.php │ │ ├── french │ │ │ └── surveys_lang.php │ │ ├── german │ │ │ └── surveys_lang.php │ │ ├── greek │ │ │ └── survey_lang.php │ │ ├── index.html │ │ ├── indonesia │ │ │ └── surveys_lang.php │ │ ├── italian │ │ │ └── surveys_lang.php │ │ ├── japanese │ │ │ └── surveys_lang.php │ │ ├── persian │ │ │ └── surveys_lang.php │ │ ├── polish │ │ │ └── surveys_lang.php │ │ ├── portuguese │ │ │ └── surveys_lang.php │ │ ├── portuguese_br │ │ │ └── surveys_lang.php │ │ ├── romanian │ │ │ └── surveys_lang.php │ │ ├── russian │ │ │ └── surveys_lang.php │ │ ├── slovak │ │ │ └── surveys_lang.php │ │ ├── spanish │ │ │ └── surveys_lang.php │ │ ├── swedish │ │ │ └── surveys_lang.php │ │ ├── turkish │ │ │ └── surveys_lang.php │ │ └── vietnamese │ │ │ └── surveys_lang.php │ ├── libraries │ │ ├── Surveys_module.php │ │ └── index.html │ ├── models │ │ ├── Surveys_model.php │ │ └── index.html │ ├── surveys.php │ └── views │ │ ├── all.php │ │ ├── index.html │ │ ├── mail_lists │ │ ├── index.html │ │ ├── list.php │ │ ├── list_view.php │ │ └── manage.php │ │ ├── participate.php │ │ ├── results.php │ │ ├── settings_tab.php │ │ ├── settings_tab_content.php │ │ ├── survey.php │ │ └── tables │ │ ├── index.html │ │ ├── mail_list_view.php │ │ ├── mail_lists.php │ │ └── surveys.php └── theme_style │ ├── controllers │ ├── Theme_style.php │ └── index.html │ ├── helpers │ ├── index.html │ └── theme_style_helper.php │ ├── index.html │ ├── install.php │ ├── language │ ├── bulgarian │ │ └── theme_style_lang.php │ ├── catalan │ │ └── theme_style_lang.php │ ├── chinese │ │ └── theme_style_lang.php │ ├── czech │ │ └── theme_style_lang.php │ ├── dutch │ │ └── theme_style_lang.php │ ├── english │ │ └── theme_style_lang.php │ ├── french │ │ └── theme_style_lang.php │ ├── german │ │ └── theme_style_lang.php │ ├── greek │ │ └── theme_style_lang.php │ ├── index.html │ ├── indonesia │ │ └── theme_style_lang.php │ ├── italian │ │ └── theme_style_lang.php │ ├── japanese │ │ └── theme_style_lang.php │ ├── persian │ │ └── theme_style_lang.php │ ├── polish │ │ └── theme_style_lang.php │ ├── portuguese │ │ └── theme_style_lang.php │ ├── portuguese_br │ │ └── theme_style_lang.php │ ├── romanian │ │ └── theme_style_lang.php │ ├── russian │ │ └── theme_style_lang.php │ ├── slovak │ │ └── theme_style_lang.php │ ├── spanish │ │ └── theme_style_lang.php │ ├── swedish │ │ └── theme_style_lang.php │ ├── turkish │ │ └── theme_style_lang.php │ └── vietnamese │ │ └── theme_style_lang.php │ ├── theme_style.php │ └── views │ ├── index.html │ └── theme_style.php ├── package.json ├── pipe.php ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ ├── compat │ │ ├── hash.php │ │ ├── index.html │ │ ├── mbstring.php │ │ ├── password.php │ │ └── standard.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_query_builder.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ ├── Cache_redis.php │ │ ├── Cache_wincache.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Encryption.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Javascript │ ├── Jquery.php │ └── index.html │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session │ ├── Session.php │ ├── SessionHandlerInterface.php │ ├── Session_driver.php │ ├── drivers │ │ ├── Session_database_driver.php │ │ ├── Session_files_driver.php │ │ ├── Session_memcached_driver.php │ │ ├── Session_redis_driver.php │ │ └── index.html │ └── index.html │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html ├── temp └── index.html └── uploads ├── client_profile_images └── index.html ├── clients ├── .htaccess └── index.html ├── company └── index.html ├── contracts ├── .htaccess └── index.html ├── credit_notes ├── .htaccess └── index.html ├── discussions └── index.html ├── estimates ├── .htaccess └── index.html ├── expenses ├── .htaccess └── index.html ├── index.html ├── invoices ├── .htaccess └── index.html ├── leads ├── .htaccess └── index.html ├── newsfeed └── index.html ├── projects └── index.html ├── proposals ├── .htaccess └── index.html ├── staff_profile_images └── index.html ├── tasks ├── .htaccess └── index.html └── ticket_attachments ├── .htaccess └── index.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/.htaccess -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/.htaccess -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/cache/.htaccess -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/composer.json -------------------------------------------------------------------------------- /application/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/composer.lock -------------------------------------------------------------------------------- /application/config/app-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/app-config.php -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/email.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/memcached.php -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Authentication.php -------------------------------------------------------------------------------- /application/controllers/Check_emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Check_emails.php -------------------------------------------------------------------------------- /application/controllers/Clients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Clients.php -------------------------------------------------------------------------------- /application/controllers/Consent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Consent.php -------------------------------------------------------------------------------- /application/controllers/Contract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Contract.php -------------------------------------------------------------------------------- /application/controllers/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Cron.php -------------------------------------------------------------------------------- /application/controllers/Download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Download.php -------------------------------------------------------------------------------- /application/controllers/Estimate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Estimate.php -------------------------------------------------------------------------------- /application/controllers/Forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Forms.php -------------------------------------------------------------------------------- /application/controllers/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Invoice.php -------------------------------------------------------------------------------- /application/controllers/Knowledge_base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Knowledge_base.php -------------------------------------------------------------------------------- /application/controllers/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Migration.php -------------------------------------------------------------------------------- /application/controllers/Privacy_policy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Privacy_policy.php -------------------------------------------------------------------------------- /application/controllers/Proposal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Proposal.php -------------------------------------------------------------------------------- /application/controllers/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Subscription.php -------------------------------------------------------------------------------- /application/controllers/Verification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/Verification.php -------------------------------------------------------------------------------- /application/controllers/admin/Clients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Clients.php -------------------------------------------------------------------------------- /application/controllers/admin/Contracts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Contracts.php -------------------------------------------------------------------------------- /application/controllers/admin/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Dashboard.php -------------------------------------------------------------------------------- /application/controllers/admin/Emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Emails.php -------------------------------------------------------------------------------- /application/controllers/admin/Estimates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Estimates.php -------------------------------------------------------------------------------- /application/controllers/admin/Expenses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Expenses.php -------------------------------------------------------------------------------- /application/controllers/admin/Gdpr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Gdpr.php -------------------------------------------------------------------------------- /application/controllers/admin/Invoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Invoices.php -------------------------------------------------------------------------------- /application/controllers/admin/Leads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Leads.php -------------------------------------------------------------------------------- /application/controllers/admin/Misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Misc.php -------------------------------------------------------------------------------- /application/controllers/admin/Mods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Mods.php -------------------------------------------------------------------------------- /application/controllers/admin/Newsfeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Newsfeed.php -------------------------------------------------------------------------------- /application/controllers/admin/Payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Payments.php -------------------------------------------------------------------------------- /application/controllers/admin/Projects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Projects.php -------------------------------------------------------------------------------- /application/controllers/admin/Proposals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Proposals.php -------------------------------------------------------------------------------- /application/controllers/admin/Reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Reports.php -------------------------------------------------------------------------------- /application/controllers/admin/Roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Roles.php -------------------------------------------------------------------------------- /application/controllers/admin/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Settings.php -------------------------------------------------------------------------------- /application/controllers/admin/Staff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Staff.php -------------------------------------------------------------------------------- /application/controllers/admin/Tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Tasks.php -------------------------------------------------------------------------------- /application/controllers/admin/Taxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Taxes.php -------------------------------------------------------------------------------- /application/controllers/admin/Tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Tickets.php -------------------------------------------------------------------------------- /application/controllers/admin/Todo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Todo.php -------------------------------------------------------------------------------- /application/controllers/admin/Utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/Utilities.php -------------------------------------------------------------------------------- /application/controllers/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/admin/index.html -------------------------------------------------------------------------------- /application/controllers/gateways/Mollie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/gateways/Mollie.php -------------------------------------------------------------------------------- /application/controllers/gateways/Paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/gateways/Paypal.php -------------------------------------------------------------------------------- /application/controllers/gateways/Stripe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/gateways/Stripe.php -------------------------------------------------------------------------------- /application/controllers/gateways/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/gateways/index.html -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/core/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/core/AdminController.php -------------------------------------------------------------------------------- /application/core/Admin_controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/core/Admin_controller.php -------------------------------------------------------------------------------- /application/core/App_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/core/App_Controller.php -------------------------------------------------------------------------------- /application/core/App_Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/core/App_Loader.php -------------------------------------------------------------------------------- /application/core/App_Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/core/App_Model.php -------------------------------------------------------------------------------- /application/core/App_Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/core/App_Router.php -------------------------------------------------------------------------------- /application/core/App_Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/core/App_Security.php -------------------------------------------------------------------------------- /application/core/CRM_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/core/CRM_Controller.php -------------------------------------------------------------------------------- /application/core/CRM_Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/core/CRM_Model.php -------------------------------------------------------------------------------- /application/core/ClientsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/core/ClientsController.php -------------------------------------------------------------------------------- /application/core/Clients_controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/core/Clients_controller.php -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/helpers/admin_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/admin_helper.php -------------------------------------------------------------------------------- /application/helpers/app_email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/app_email_helper.php -------------------------------------------------------------------------------- /application/helpers/app_html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/app_html_helper.php -------------------------------------------------------------------------------- /application/helpers/assets_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/assets_helper.php -------------------------------------------------------------------------------- /application/helpers/clients_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/clients_helper.php -------------------------------------------------------------------------------- /application/helpers/contracts_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/contracts_helper.php -------------------------------------------------------------------------------- /application/helpers/core_hooks_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/core_hooks_helper.php -------------------------------------------------------------------------------- /application/helpers/countries_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/countries_helper.php -------------------------------------------------------------------------------- /application/helpers/credit_notes_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/credit_notes_helper.php -------------------------------------------------------------------------------- /application/helpers/database_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/database_helper.php -------------------------------------------------------------------------------- /application/helpers/datatables_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/datatables_helper.php -------------------------------------------------------------------------------- /application/helpers/deprecated_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/deprecated_helper.php -------------------------------------------------------------------------------- /application/helpers/estimates_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/estimates_helper.php -------------------------------------------------------------------------------- /application/helpers/fields_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/fields_helper.php -------------------------------------------------------------------------------- /application/helpers/files_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/files_helper.php -------------------------------------------------------------------------------- /application/helpers/func_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/func_helper.php -------------------------------------------------------------------------------- /application/helpers/gdpr_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/gdpr_helper.php -------------------------------------------------------------------------------- /application/helpers/general_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/general_helper.php -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/helpers/invoices_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/invoices_helper.php -------------------------------------------------------------------------------- /application/helpers/leads_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/leads_helper.php -------------------------------------------------------------------------------- /application/helpers/menu_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/menu_helper.php -------------------------------------------------------------------------------- /application/helpers/misc_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/misc_helper.php -------------------------------------------------------------------------------- /application/helpers/modules_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/modules_helper.php -------------------------------------------------------------------------------- /application/helpers/pdf_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/pdf_helper.php -------------------------------------------------------------------------------- /application/helpers/projects_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/projects_helper.php -------------------------------------------------------------------------------- /application/helpers/proposals_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/proposals_helper.php -------------------------------------------------------------------------------- /application/helpers/relation_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/relation_helper.php -------------------------------------------------------------------------------- /application/helpers/sales_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/sales_helper.php -------------------------------------------------------------------------------- /application/helpers/settings_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/settings_helper.php -------------------------------------------------------------------------------- /application/helpers/sms_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/sms_helper.php -------------------------------------------------------------------------------- /application/helpers/staff_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/staff_helper.php -------------------------------------------------------------------------------- /application/helpers/tags_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/tags_helper.php -------------------------------------------------------------------------------- /application/helpers/tasks_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/tasks_helper.php -------------------------------------------------------------------------------- /application/helpers/template_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/template_helper.php -------------------------------------------------------------------------------- /application/helpers/themes_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/themes_helper.php -------------------------------------------------------------------------------- /application/helpers/tickets_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/tickets_helper.php -------------------------------------------------------------------------------- /application/helpers/upload_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/upload_helper.php -------------------------------------------------------------------------------- /application/helpers/user_meta_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/user_meta_helper.php -------------------------------------------------------------------------------- /application/helpers/widgets_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/helpers/widgets_helper.php -------------------------------------------------------------------------------- /application/hooks/App_Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/hooks/App_Autoloader.php -------------------------------------------------------------------------------- /application/hooks/BadUserAgentBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/hooks/BadUserAgentBlock.php -------------------------------------------------------------------------------- /application/hooks/BadUserAgents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/hooks/BadUserAgents.php -------------------------------------------------------------------------------- /application/hooks/EloquentHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/hooks/EloquentHook.php -------------------------------------------------------------------------------- /application/hooks/InitHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/hooks/InitHook.php -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/czech/czech_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/language/czech/czech_lang.php -------------------------------------------------------------------------------- /application/language/dutch/dutch_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/language/dutch/dutch_lang.php -------------------------------------------------------------------------------- /application/language/french/french_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/language/french/french_lang.php -------------------------------------------------------------------------------- /application/language/german/german_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/language/german/german_lang.php -------------------------------------------------------------------------------- /application/language/greek/greek_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/language/greek/greek_lang.php -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/language/index.html -------------------------------------------------------------------------------- /application/language/polish/polish_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/language/polish/polish_lang.php -------------------------------------------------------------------------------- /application/language/slovak/slovak_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/language/slovak/slovak_lang.php -------------------------------------------------------------------------------- /application/libraries/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/App.php -------------------------------------------------------------------------------- /application/libraries/App_Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/App_Email.php -------------------------------------------------------------------------------- /application/libraries/App_items_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/App_items_table.php -------------------------------------------------------------------------------- /application/libraries/App_mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/App_mailer.php -------------------------------------------------------------------------------- /application/libraries/App_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/App_menu.php -------------------------------------------------------------------------------- /application/libraries/App_modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/App_modules.php -------------------------------------------------------------------------------- /application/libraries/App_object_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/App_object_cache.php -------------------------------------------------------------------------------- /application/libraries/App_pusher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/App_pusher.php -------------------------------------------------------------------------------- /application/libraries/App_tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/App_tabs.php -------------------------------------------------------------------------------- /application/libraries/App_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/App_tags.php -------------------------------------------------------------------------------- /application/libraries/Stripe_core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/Stripe_core.php -------------------------------------------------------------------------------- /application/libraries/assets/App_assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/assets/App_assets.php -------------------------------------------------------------------------------- /application/libraries/assets/App_css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/assets/App_css.php -------------------------------------------------------------------------------- /application/libraries/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/assets/index.html -------------------------------------------------------------------------------- /application/libraries/gateways/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/gateways/index.html -------------------------------------------------------------------------------- /application/libraries/gdpr/Gdpr_contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/gdpr/Gdpr_contact.php -------------------------------------------------------------------------------- /application/libraries/gdpr/Gdpr_lead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/gdpr/Gdpr_lead.php -------------------------------------------------------------------------------- /application/libraries/gdpr/Gdpr_tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/gdpr/Gdpr_tickets.php -------------------------------------------------------------------------------- /application/libraries/gdpr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/gdpr/index.html -------------------------------------------------------------------------------- /application/libraries/import/App_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/import/App_import.php -------------------------------------------------------------------------------- /application/libraries/import/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/import/index.html -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/libraries/mails/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/mails/index.html -------------------------------------------------------------------------------- /application/libraries/pdf/App_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/pdf/App_pdf.php -------------------------------------------------------------------------------- /application/libraries/pdf/Contract_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/pdf/Contract_pdf.php -------------------------------------------------------------------------------- /application/libraries/pdf/Estimate_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/pdf/Estimate_pdf.php -------------------------------------------------------------------------------- /application/libraries/pdf/Invoice_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/pdf/Invoice_pdf.php -------------------------------------------------------------------------------- /application/libraries/pdf/PDF_Signature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/pdf/PDF_Signature.php -------------------------------------------------------------------------------- /application/libraries/pdf/Payment_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/pdf/Payment_pdf.php -------------------------------------------------------------------------------- /application/libraries/pdf/Proposal_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/pdf/Proposal_pdf.php -------------------------------------------------------------------------------- /application/libraries/pdf/Statement_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/pdf/Statement_pdf.php -------------------------------------------------------------------------------- /application/libraries/pdf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/pdf/index.html -------------------------------------------------------------------------------- /application/libraries/sms/App_sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/sms/App_sms.php -------------------------------------------------------------------------------- /application/libraries/sms/Sms_msg91.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/sms/Sms_msg91.php -------------------------------------------------------------------------------- /application/libraries/sms/Sms_twilio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/sms/Sms_twilio.php -------------------------------------------------------------------------------- /application/libraries/sms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/libraries/sms/index.html -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/migrations/101_version_101.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/101_version_101.php -------------------------------------------------------------------------------- /application/migrations/102_version_102.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/102_version_102.php -------------------------------------------------------------------------------- /application/migrations/103_version_103.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/103_version_103.php -------------------------------------------------------------------------------- /application/migrations/104_version_104.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/104_version_104.php -------------------------------------------------------------------------------- /application/migrations/105_version_105.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/105_version_105.php -------------------------------------------------------------------------------- /application/migrations/106_version_106.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/106_version_106.php -------------------------------------------------------------------------------- /application/migrations/107_version_107.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/107_version_107.php -------------------------------------------------------------------------------- /application/migrations/108_version_108.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/108_version_108.php -------------------------------------------------------------------------------- /application/migrations/109_version_109.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/109_version_109.php -------------------------------------------------------------------------------- /application/migrations/110_version_110.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/110_version_110.php -------------------------------------------------------------------------------- /application/migrations/111_version_111.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/111_version_111.php -------------------------------------------------------------------------------- /application/migrations/112_version_112.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/112_version_112.php -------------------------------------------------------------------------------- /application/migrations/113_version_113.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/113_version_113.php -------------------------------------------------------------------------------- /application/migrations/114_version_114.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/114_version_114.php -------------------------------------------------------------------------------- /application/migrations/115_version_115.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/115_version_115.php -------------------------------------------------------------------------------- /application/migrations/116_version_116.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/116_version_116.php -------------------------------------------------------------------------------- /application/migrations/117_version_117.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/117_version_117.php -------------------------------------------------------------------------------- /application/migrations/118_version_118.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/118_version_118.php -------------------------------------------------------------------------------- /application/migrations/119_version_119.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/119_version_119.php -------------------------------------------------------------------------------- /application/migrations/120_version_120.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/120_version_120.php -------------------------------------------------------------------------------- /application/migrations/121_version_121.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/121_version_121.php -------------------------------------------------------------------------------- /application/migrations/122_version_122.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/122_version_122.php -------------------------------------------------------------------------------- /application/migrations/123_version_123.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/123_version_123.php -------------------------------------------------------------------------------- /application/migrations/124_version_124.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/124_version_124.php -------------------------------------------------------------------------------- /application/migrations/125_version_125.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/125_version_125.php -------------------------------------------------------------------------------- /application/migrations/126_version_126.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/126_version_126.php -------------------------------------------------------------------------------- /application/migrations/127_version_127.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/127_version_127.php -------------------------------------------------------------------------------- /application/migrations/128_version_128.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/128_version_128.php -------------------------------------------------------------------------------- /application/migrations/129_version_129.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/129_version_129.php -------------------------------------------------------------------------------- /application/migrations/130_version_130.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/130_version_130.php -------------------------------------------------------------------------------- /application/migrations/131_version_131.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/131_version_131.php -------------------------------------------------------------------------------- /application/migrations/132_version_132.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/132_version_132.php -------------------------------------------------------------------------------- /application/migrations/133_version_133.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/133_version_133.php -------------------------------------------------------------------------------- /application/migrations/134_version_134.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/134_version_134.php -------------------------------------------------------------------------------- /application/migrations/135_version_135.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/135_version_135.php -------------------------------------------------------------------------------- /application/migrations/136_version_136.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/136_version_136.php -------------------------------------------------------------------------------- /application/migrations/137_version_137.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/137_version_137.php -------------------------------------------------------------------------------- /application/migrations/138_version_138.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/138_version_138.php -------------------------------------------------------------------------------- /application/migrations/139_version_139.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/139_version_139.php -------------------------------------------------------------------------------- /application/migrations/140_version_140.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/140_version_140.php -------------------------------------------------------------------------------- /application/migrations/141_version_141.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/141_version_141.php -------------------------------------------------------------------------------- /application/migrations/142_version_142.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/142_version_142.php -------------------------------------------------------------------------------- /application/migrations/143_version_143.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/143_version_143.php -------------------------------------------------------------------------------- /application/migrations/144_version_144.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/144_version_144.php -------------------------------------------------------------------------------- /application/migrations/145_version_145.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/145_version_145.php -------------------------------------------------------------------------------- /application/migrations/146_version_146.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/146_version_146.php -------------------------------------------------------------------------------- /application/migrations/147_version_147.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/147_version_147.php -------------------------------------------------------------------------------- /application/migrations/148_version_148.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/148_version_148.php -------------------------------------------------------------------------------- /application/migrations/149_version_149.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/149_version_149.php -------------------------------------------------------------------------------- /application/migrations/150_version_150.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/150_version_150.php -------------------------------------------------------------------------------- /application/migrations/151_version_151.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/151_version_151.php -------------------------------------------------------------------------------- /application/migrations/152_version_152.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/152_version_152.php -------------------------------------------------------------------------------- /application/migrations/153_version_153.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/153_version_153.php -------------------------------------------------------------------------------- /application/migrations/154_version_154.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/154_version_154.php -------------------------------------------------------------------------------- /application/migrations/155_version_155.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/155_version_155.php -------------------------------------------------------------------------------- /application/migrations/156_version_156.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/156_version_156.php -------------------------------------------------------------------------------- /application/migrations/157_version_157.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/157_version_157.php -------------------------------------------------------------------------------- /application/migrations/158_version_158.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/158_version_158.php -------------------------------------------------------------------------------- /application/migrations/159_version_159.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/159_version_159.php -------------------------------------------------------------------------------- /application/migrations/160_version_160.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/160_version_160.php -------------------------------------------------------------------------------- /application/migrations/161_version_161.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/161_version_161.php -------------------------------------------------------------------------------- /application/migrations/162_version_162.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/162_version_162.php -------------------------------------------------------------------------------- /application/migrations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/migrations/index.html -------------------------------------------------------------------------------- /application/models/Clients_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Clients_model.php -------------------------------------------------------------------------------- /application/models/Contracts_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Contracts_model.php -------------------------------------------------------------------------------- /application/models/Cron_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Cron_model.php -------------------------------------------------------------------------------- /application/models/Currencies_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Currencies_model.php -------------------------------------------------------------------------------- /application/models/Dashboard_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Dashboard_model.php -------------------------------------------------------------------------------- /application/models/Departments_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Departments_model.php -------------------------------------------------------------------------------- /application/models/Emails_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Emails_model.php -------------------------------------------------------------------------------- /application/models/Estimates_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Estimates_model.php -------------------------------------------------------------------------------- /application/models/Expenses_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Expenses_model.php -------------------------------------------------------------------------------- /application/models/Gdpr_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Gdpr_model.php -------------------------------------------------------------------------------- /application/models/Invoices_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Invoices_model.php -------------------------------------------------------------------------------- /application/models/Leads_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Leads_model.php -------------------------------------------------------------------------------- /application/models/Misc_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Misc_model.php -------------------------------------------------------------------------------- /application/models/Newsfeed_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Newsfeed_model.php -------------------------------------------------------------------------------- /application/models/Payments_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Payments_model.php -------------------------------------------------------------------------------- /application/models/Projects_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Projects_model.php -------------------------------------------------------------------------------- /application/models/Proposals_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Proposals_model.php -------------------------------------------------------------------------------- /application/models/Reports_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Reports_model.php -------------------------------------------------------------------------------- /application/models/Roles_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Roles_model.php -------------------------------------------------------------------------------- /application/models/Settings_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Settings_model.php -------------------------------------------------------------------------------- /application/models/Staff_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Staff_model.php -------------------------------------------------------------------------------- /application/models/Statement_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Statement_model.php -------------------------------------------------------------------------------- /application/models/Tasks_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Tasks_model.php -------------------------------------------------------------------------------- /application/models/Taxes_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Taxes_model.php -------------------------------------------------------------------------------- /application/models/Tickets_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Tickets_model.php -------------------------------------------------------------------------------- /application/models/Todo_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Todo_model.php -------------------------------------------------------------------------------- /application/models/User_autologin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/User_autologin.php -------------------------------------------------------------------------------- /application/models/Utilities_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/Utilities_model.php -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/services/ActivityLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/ActivityLogger.php -------------------------------------------------------------------------------- /application/services/Timezones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/Timezones.php -------------------------------------------------------------------------------- /application/services/ViewsTracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/ViewsTracking.php -------------------------------------------------------------------------------- /application/services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/index.html -------------------------------------------------------------------------------- /application/services/messages/Iconv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/messages/Iconv.php -------------------------------------------------------------------------------- /application/services/messages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/messages/index.html -------------------------------------------------------------------------------- /application/services/upgrade/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/upgrade/Config.php -------------------------------------------------------------------------------- /application/services/upgrade/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/upgrade/index.html -------------------------------------------------------------------------------- /application/services/utilities/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/utilities/Arr.php -------------------------------------------------------------------------------- /application/services/utilities/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/utilities/Date.php -------------------------------------------------------------------------------- /application/services/utilities/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/utilities/Str.php -------------------------------------------------------------------------------- /application/services/utilities/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/utilities/Utils.php -------------------------------------------------------------------------------- /application/services/zip/Unzip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/zip/Unzip.php -------------------------------------------------------------------------------- /application/services/zip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/services/zip/index.html -------------------------------------------------------------------------------- /application/third_party/MX/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/third_party/MX/Base.php -------------------------------------------------------------------------------- /application/third_party/MX/Ci.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/third_party/MX/Ci.php -------------------------------------------------------------------------------- /application/third_party/MX/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/third_party/MX/Config.php -------------------------------------------------------------------------------- /application/third_party/MX/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/third_party/MX/Lang.php -------------------------------------------------------------------------------- /application/third_party/MX/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/third_party/MX/Loader.php -------------------------------------------------------------------------------- /application/third_party/MX/Modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/third_party/MX/Modules.php -------------------------------------------------------------------------------- /application/third_party/MX/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/third_party/MX/Router.php -------------------------------------------------------------------------------- /application/third_party/action_hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/third_party/action_hooks.php -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/third_party/php-imap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/third_party/php-imap/LICENSE -------------------------------------------------------------------------------- /application/third_party/phpass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/third_party/phpass.php -------------------------------------------------------------------------------- /application/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/vendor/autoload.php -------------------------------------------------------------------------------- /application/vendor/clue/stream-filter/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /application/vendor/cocur/slugify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/vendor/cocur/slugify/LICENSE -------------------------------------------------------------------------------- /application/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/vendor/composer/LICENSE -------------------------------------------------------------------------------- /application/vendor/instamojo/instamojo-php/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /application/vendor/neitanod/forceutf8/test/data/russian.txt: -------------------------------------------------------------------------------- 1 | hello žš, привет 2 | -------------------------------------------------------------------------------- /application/vendor/neitanod/forceutf8/test/data/test1.txt: -------------------------------------------------------------------------------- 1 | Hírek 2 | -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/vendor/nesbot/carbon/LICENSE -------------------------------------------------------------------------------- /application/vendor/nuovo/spreadsheet-reader/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | test 3 | materials -------------------------------------------------------------------------------- /application/vendor/paypal/paypal-checkout-sdk/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | -------------------------------------------------------------------------------- /application/vendor/paypal/paypal-checkout-sdk/init: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 5.2.27 -------------------------------------------------------------------------------- /application/vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /application/vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /application/vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/vendor/psr/log/README.md -------------------------------------------------------------------------------- /application/vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superior57/CRM_codeigniter/HEAD/application/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /application/vendor/pusher/pusher-php-server/encryption.ini: -------------------------------------------------------------------------------- 1 | extension="sodium.so" 2 | -------------------------------------------------------------------------------- /application/vendor/stripe/stripe-php/VERSION: -------------------------------------------------------------------------------- 1 | 6.43.1 2 | -------------------------------------------------------------------------------- /application/vendor/stripe/stripe-php/lib/Error/Api.php: -------------------------------------------------------------------------------- 1 |