├── .gitattributes
├── .github
└── FUNDING.yml
├── .gitignore
├── LICENSE
├── README.md
├── app
├── .htaccess
├── Common.php
├── Config
│ ├── App.php
│ ├── Autoload.php
│ ├── Boot
│ │ ├── development.php
│ │ ├── production.php
│ │ └── testing.php
│ ├── CURLRequest.php
│ ├── Cache.php
│ ├── Constants.php
│ ├── ContentSecurityPolicy.php
│ ├── Cookie.php
│ ├── Database.php
│ ├── DocTypes.php
│ ├── Email.php
│ ├── Encryption.php
│ ├── Events.php
│ ├── Exceptions.php
│ ├── Feature.php
│ ├── Filters.php
│ ├── ForeignCharacters.php
│ ├── Format.php
│ ├── Generators.php
│ ├── Honeypot.php
│ ├── Images.php
│ ├── Kint.php
│ ├── Logger.php
│ ├── Migrations.php
│ ├── Mimes.php
│ ├── Modules.php
│ ├── Pager.php
│ ├── Paths.php
│ ├── Publisher.php
│ ├── Routes.php
│ ├── Security.php
│ ├── Services.php
│ ├── Toolbar.php
│ ├── UserAgents.php
│ ├── Validation.php
│ └── View.php
├── Controllers
│ ├── BaseController.php
│ └── Home.php
├── Database
│ ├── Migrations
│ │ └── .gitkeep
│ └── Seeds
│ │ └── .gitkeep
├── Filters
│ ├── .gitkeep
│ ├── Admin_Auth_filter.php
│ └── Marketplace_Auth_Filter.php
├── Helpers
│ └── .gitkeep
├── Language
│ ├── .gitkeep
│ ├── en
│ │ ├── Button.php
│ │ ├── Caption.php
│ │ ├── Column.php
│ │ ├── Common.php
│ │ ├── Entry.php
│ │ ├── Error.php
│ │ ├── Heading.php
│ │ ├── Help.php
│ │ ├── Mail.php
│ │ ├── Menu.php
│ │ ├── Success.php
│ │ ├── Tab.php
│ │ ├── Text.php
│ │ └── Validation.php
│ └── id
│ │ ├── Button.php
│ │ ├── Caption.php
│ │ ├── Column.php
│ │ ├── Common.php
│ │ ├── Entry.php
│ │ ├── Error.php
│ │ ├── Heading.php
│ │ ├── Help.php
│ │ ├── Mail.php
│ │ ├── Menu.php
│ │ ├── Success.php
│ │ ├── Tab.php
│ │ ├── Text.php
│ │ └── Validation.php
├── Libraries
│ ├── .gitkeep
│ ├── Administrator.php
│ ├── Calendar.php
│ ├── Cart.php
│ ├── Currency.php
│ ├── Customer.php
│ ├── File.php
│ ├── Image.php
│ ├── Language.php
│ ├── Setting.php
│ ├── Template.php
│ ├── Text.php
│ ├── Timezone.php
│ ├── Url.php
│ ├── Weight.php
│ ├── Wishlist.php
│ └── Zip.php
├── Models
│ └── .gitkeep
├── ThirdParty
│ └── .gitkeep
├── Views
│ ├── errors
│ │ ├── cli
│ │ │ ├── error_404.php
│ │ │ ├── error_exception.php
│ │ │ └── production.php
│ │ └── html
│ │ │ ├── debug.css
│ │ │ ├── debug.js
│ │ │ ├── error_404.php
│ │ │ ├── error_exception.php
│ │ │ └── production.php
│ └── welcome_message.php
└── index.html
├── env
├── main
├── admin
│ ├── Config
│ │ └── Routes.php
│ ├── Controllers
│ │ ├── Administrator
│ │ │ ├── Administrator.php
│ │ │ ├── Administrator_Group.php
│ │ │ ├── Login.php
│ │ │ └── Logout.php
│ │ ├── Appearance
│ │ │ ├── Admin
│ │ │ │ └── Theme.php
│ │ │ └── Marketplace
│ │ │ │ ├── Layout.php
│ │ │ │ ├── Theme.php
│ │ │ │ ├── Widget.php
│ │ │ │ └── Widgets
│ │ │ │ ├── Category.php
│ │ │ │ ├── HTML_Content.php
│ │ │ │ ├── Link.php
│ │ │ │ ├── Page.php
│ │ │ │ ├── Seller_Bestseller_Product.php
│ │ │ │ ├── Seller_Category.php
│ │ │ │ ├── Seller_Dashboard_Chart.php
│ │ │ │ ├── Seller_Dashboard_Latest_Order.php
│ │ │ │ ├── Seller_Dashboard_Stat.php
│ │ │ │ ├── Seller_Description.php
│ │ │ │ ├── Seller_Faq.php
│ │ │ │ ├── Seller_Featured_Product.php
│ │ │ │ ├── Seller_Latest_Product.php
│ │ │ │ ├── Seller_Menu.php
│ │ │ │ └── Seller_Special_Product.php
│ │ ├── Common
│ │ │ ├── Column_Left.php
│ │ │ ├── Dashboard.php
│ │ │ ├── Footer.php
│ │ │ └── Header.php
│ │ ├── Component
│ │ │ ├── Analytics
│ │ │ │ └── Google_Analytics_4.php
│ │ │ ├── Component
│ │ │ │ ├── Analytics.php
│ │ │ │ ├── Order_Total.php
│ │ │ │ ├── Payment_Method.php
│ │ │ │ └── Shipping_Method.php
│ │ │ ├── Order_Total
│ │ │ │ ├── Shipping.php
│ │ │ │ ├── Sub_Total.php
│ │ │ │ └── Total.php
│ │ │ ├── Payment_Method
│ │ │ │ ├── Bank_Transfer.php
│ │ │ │ ├── Cash_On_Delivery.php
│ │ │ │ ├── Free_Checkout.php
│ │ │ │ └── Wallet.php
│ │ │ └── Shipping_Method
│ │ │ │ ├── Flat_Rate.php
│ │ │ │ ├── Weight_Based.php
│ │ │ │ └── Zone_Based.php
│ │ ├── Customer
│ │ │ ├── Customer.php
│ │ │ └── Customer_Group.php
│ │ ├── Developer
│ │ │ ├── Demo_Manager.php
│ │ │ └── Language_Editor.php
│ │ ├── File_Manager
│ │ │ └── Image_Manager.php
│ │ ├── Localisation
│ │ │ ├── Country.php
│ │ │ ├── Currency.php
│ │ │ ├── Geo_Zone.php
│ │ │ ├── Language.php
│ │ │ ├── Length_Class.php
│ │ │ ├── Order_Status.php
│ │ │ ├── Weight_Class.php
│ │ │ └── Zone.php
│ │ ├── Marketplace
│ │ │ ├── Category.php
│ │ │ └── Order.php
│ │ ├── Page
│ │ │ └── Page.php
│ │ ├── Plugin
│ │ │ └── Plugin.php
│ │ └── System
│ │ │ ├── Error_Log.php
│ │ │ ├── Performance.php
│ │ │ └── Setting.php
│ └── Models
│ │ ├── Administrator
│ │ ├── Administrator_Group_Model.php
│ │ └── Administrator_Model.php
│ │ ├── Appearance
│ │ ├── Layout_Model.php
│ │ └── Widget_Model.php
│ │ ├── Component
│ │ └── Component_Model.php
│ │ ├── Customer
│ │ ├── Customer_Group_model.php
│ │ ├── Customer_Model.php
│ │ └── Wallet_Model.php
│ │ ├── Developer
│ │ └── Demo_Manager_Model.php
│ │ ├── Extension
│ │ └── Extension_Model.php
│ │ ├── Localisation
│ │ ├── Country_Model.php
│ │ ├── Currency_Model.php
│ │ ├── Geo_Zone_Model.php
│ │ ├── Language_Model.php
│ │ ├── Length_Class_Model.php
│ │ ├── Order_Status_Model.php
│ │ ├── Weight_Class_Model.php
│ │ └── Zone_Model.php
│ │ ├── Marketplace
│ │ ├── Category_Model.php
│ │ ├── Order_Model.php
│ │ ├── Product_Model.php
│ │ └── Seller_Model.php
│ │ ├── Page
│ │ └── Page_Model.php
│ │ └── System
│ │ └── Setting_Model.php
└── marketplace
│ ├── Config
│ └── Routes.php
│ ├── Controllers
│ ├── Account
│ │ ├── Account.php
│ │ ├── Address.php
│ │ ├── Login.php
│ │ ├── Logout.php
│ │ ├── Order.php
│ │ ├── Product_Download.php
│ │ ├── Product_Review.php
│ │ ├── Profile.php
│ │ ├── Register.php
│ │ ├── Reset_Password.php
│ │ ├── Wallet.php
│ │ └── Wishlist.php
│ ├── Appearance
│ │ └── Marketplace
│ │ │ └── Widgets
│ │ │ ├── Category.php
│ │ │ ├── HTML_Content.php
│ │ │ ├── Link.php
│ │ │ ├── Page.php
│ │ │ ├── Seller_Bestseller_Product.php
│ │ │ ├── Seller_Category.php
│ │ │ ├── Seller_Dashboard_Chart.php
│ │ │ ├── Seller_Dashboard_Latest_Order.php
│ │ │ ├── Seller_Dashboard_Stat.php
│ │ │ ├── Seller_Description.php
│ │ │ ├── Seller_Faq.php
│ │ │ ├── Seller_Featured_Product.php
│ │ │ ├── Seller_Latest_Product.php
│ │ │ ├── Seller_Menu.php
│ │ │ └── Seller_Special_Product.php
│ ├── Checkout
│ │ ├── Cart.php
│ │ ├── Checkout.php
│ │ └── Success.php
│ ├── Common
│ │ ├── Cart.php
│ │ ├── Currency.php
│ │ ├── Footer.php
│ │ ├── Header.php
│ │ ├── Home.php
│ │ ├── Language.php
│ │ ├── Offcanvas_Left.php
│ │ ├── Offcanvas_Right.php
│ │ ├── Search.php
│ │ ├── Wallet.php
│ │ └── Widget.php
│ ├── Component
│ │ ├── Analytics
│ │ │ └── Google_Analytics_4.php
│ │ └── Payment_Method
│ │ │ ├── Bank_Transfer.php
│ │ │ ├── Cash_On_Delivery.php
│ │ │ ├── Free_Checkout.php
│ │ │ └── Wallet.php
│ ├── Localisation
│ │ └── Country.php
│ ├── Page
│ │ └── Page.php
│ ├── Product
│ │ ├── Category.php
│ │ ├── Customer_Question.php
│ │ ├── Product.php
│ │ └── Search.php
│ ├── Seller
│ │ ├── Component
│ │ │ └── Shipping_Method.php
│ │ ├── Dashboard.php
│ │ ├── Edit.php
│ │ ├── Localisation
│ │ │ └── Geo_Zone.php
│ │ ├── Option.php
│ │ ├── Order.php
│ │ ├── Product.php
│ │ ├── Product_Question.php
│ │ ├── Register.php
│ │ ├── Search.php
│ │ ├── Seller.php
│ │ ├── Seller_Category.php
│ │ ├── Seller_Faq.php
│ │ └── Shipping_Method
│ │ │ ├── Flat_Rate.php
│ │ │ ├── Weight_Based.php
│ │ │ └── Zone_Based.php
│ └── Tool
│ │ └── Upload.php
│ └── Models
│ ├── Account
│ ├── Download_Model.php
│ ├── Order_Model.php
│ ├── Product_Download_Model.php
│ ├── Product_Review_Model.php
│ ├── Reset_Password_Model.php
│ ├── Wallet_Model.php
│ └── Wallet_Temp_Model.php
│ ├── Appearance
│ ├── Layout_Model.php
│ ├── Widget_Model.php
│ └── Widgets
│ │ └── Seller_Dashboard_Chart_Model.php
│ ├── Checkout
│ └── Order_Model.php
│ ├── Component
│ ├── Component_Model.php
│ ├── Order_Total
│ │ ├── Shipping_Model.php
│ │ ├── Sub_Total_Model.php
│ │ └── Total_Model.php
│ ├── Payment_Method
│ │ ├── Bank_Transfer_Model.php
│ │ ├── Cash_On_Delivery_Model.php
│ │ ├── Free_Checkout_Model.php
│ │ └── Wallet_Model.php
│ └── Shipping_Method
│ │ ├── Flat_Rate_Model.php
│ │ ├── Weight_Based_Model.php
│ │ └── Zone_Based_Model.php
│ ├── Customer
│ ├── Customer_Address_Model.php
│ └── Customer_Model.php
│ ├── Localisation
│ ├── Country_Model.php
│ ├── Currency_Model.php
│ ├── Geo_Zone_Model.php
│ ├── Language_Model.php
│ ├── Order_Status_Model.php
│ ├── Weight_Class_Model.php
│ └── Zone_Model.php
│ ├── Page
│ └── Page_Model.php
│ ├── Product
│ ├── Category_Model.php
│ ├── Option_Model.php
│ ├── Product_Model.php
│ ├── Product_Question_Model.php
│ └── Product_Review_Model.php
│ ├── Seller
│ ├── Geo_Zone_Model.php
│ ├── Option_Model.php
│ ├── Order_Model.php
│ ├── Product_Model.php
│ ├── Product_Question_Model.php
│ ├── Seller_Category_Model.php
│ ├── Seller_Faq_Model.php
│ ├── Seller_Model.php
│ └── Shipping_Method_Model.php
│ └── System
│ └── Setting_Model.php
├── plugins
└── com_example
│ └── Widget_Blank
│ ├── Config
│ └── Routes.php
│ ├── Controllers
│ ├── Admin
│ │ ├── Appearance
│ │ │ └── Marketplace
│ │ │ │ └── Widgets
│ │ │ │ └── Blank.php
│ │ └── Plugin
│ │ │ └── Plugin.php
│ └── Marketplace
│ │ └── Appearance
│ │ └── Marketplace
│ │ └── Widgets
│ │ └── Blank.php
│ ├── Language
│ └── en
│ │ ├── Heading.php
│ │ └── Text.php
│ ├── Views
│ ├── Admin
│ │ └── Appearance
│ │ │ └── Marketplace
│ │ │ └── Widgets
│ │ │ └── blank.php
│ └── Marketplace
│ │ └── Appearance
│ │ └── Marketplace
│ │ └── Widgets
│ │ └── blank.php
│ └── assets
│ └── admin
│ └── plugins
│ └── com_example
│ └── Widget_Blank
│ └── images
│ └── widget_blank.png
├── public
├── .htaccess
├── assets
│ ├── admin
│ │ └── theme
│ │ │ └── com_openmvm
│ │ │ └── Basic
│ │ │ ├── css
│ │ │ └── basic.css
│ │ │ ├── images
│ │ │ └── basic.png
│ │ │ └── js
│ │ │ └── basic.js
│ ├── flags
│ │ ├── ad.png
│ │ ├── ae.png
│ │ ├── af.png
│ │ ├── ag.png
│ │ ├── ai.png
│ │ ├── al.png
│ │ ├── am.png
│ │ ├── an.png
│ │ ├── ao.png
│ │ ├── ar.png
│ │ ├── as.png
│ │ ├── at.png
│ │ ├── au.png
│ │ ├── aw.png
│ │ ├── ax.png
│ │ ├── az.png
│ │ ├── ba.png
│ │ ├── bb.png
│ │ ├── bd.png
│ │ ├── be.png
│ │ ├── bf.png
│ │ ├── bg.png
│ │ ├── bh.png
│ │ ├── bi.png
│ │ ├── bj.png
│ │ ├── bm.png
│ │ ├── bn.png
│ │ ├── bo.png
│ │ ├── br.png
│ │ ├── bs.png
│ │ ├── bt.png
│ │ ├── bv.png
│ │ ├── bw.png
│ │ ├── by.png
│ │ ├── bz.png
│ │ ├── ca.png
│ │ ├── catalonia.png
│ │ ├── cc.png
│ │ ├── cd.png
│ │ ├── cf.png
│ │ ├── cg.png
│ │ ├── ch.png
│ │ ├── ci.png
│ │ ├── ck.png
│ │ ├── cl.png
│ │ ├── cm.png
│ │ ├── cn.png
│ │ ├── co.png
│ │ ├── cr.png
│ │ ├── cs.png
│ │ ├── cu.png
│ │ ├── cv.png
│ │ ├── cx.png
│ │ ├── cy.png
│ │ ├── cz.png
│ │ ├── de.png
│ │ ├── dj.png
│ │ ├── dk.png
│ │ ├── dm.png
│ │ ├── do.png
│ │ ├── dz.png
│ │ ├── ec.png
│ │ ├── ee.png
│ │ ├── eg.png
│ │ ├── eh.png
│ │ ├── en.png
│ │ ├── er.png
│ │ ├── es.png
│ │ ├── et.png
│ │ ├── europeanunion.png
│ │ ├── fam.png
│ │ ├── fi.png
│ │ ├── fj.png
│ │ ├── fk.png
│ │ ├── fm.png
│ │ ├── fo.png
│ │ ├── fr.png
│ │ ├── ga.png
│ │ ├── gd.png
│ │ ├── ge.png
│ │ ├── gf.png
│ │ ├── gh.png
│ │ ├── gi.png
│ │ ├── gl.png
│ │ ├── gm.png
│ │ ├── gn.png
│ │ ├── gp.png
│ │ ├── gq.png
│ │ ├── gr.png
│ │ ├── gs.png
│ │ ├── gt.png
│ │ ├── gu.png
│ │ ├── gw.png
│ │ ├── gy.png
│ │ ├── hk.png
│ │ ├── hm.png
│ │ ├── hn.png
│ │ ├── hr.png
│ │ ├── ht.png
│ │ ├── hu.png
│ │ ├── id.png
│ │ ├── ie.png
│ │ ├── il.png
│ │ ├── in.png
│ │ ├── io.png
│ │ ├── iq.png
│ │ ├── ir.png
│ │ ├── is.png
│ │ ├── it.png
│ │ ├── jm.png
│ │ ├── jo.png
│ │ ├── jp.png
│ │ ├── ke.png
│ │ ├── kg.png
│ │ ├── kh.png
│ │ ├── ki.png
│ │ ├── km.png
│ │ ├── kn.png
│ │ ├── kp.png
│ │ ├── kr.png
│ │ ├── kw.png
│ │ ├── ky.png
│ │ ├── kz.png
│ │ ├── la.png
│ │ ├── lb.png
│ │ ├── lc.png
│ │ ├── li.png
│ │ ├── lk.png
│ │ ├── lr.png
│ │ ├── ls.png
│ │ ├── lt.png
│ │ ├── lu.png
│ │ ├── lv.png
│ │ ├── ly.png
│ │ ├── ma.png
│ │ ├── mc.png
│ │ ├── md.png
│ │ ├── me.png
│ │ ├── mg.png
│ │ ├── mh.png
│ │ ├── mk.png
│ │ ├── ml.png
│ │ ├── mm.png
│ │ ├── mn.png
│ │ ├── mo.png
│ │ ├── mp.png
│ │ ├── mq.png
│ │ ├── mr.png
│ │ ├── ms.png
│ │ ├── mt.png
│ │ ├── mu.png
│ │ ├── mv.png
│ │ ├── mw.png
│ │ ├── mx.png
│ │ ├── my.png
│ │ ├── mz.png
│ │ ├── na.png
│ │ ├── nc.png
│ │ ├── ne.png
│ │ ├── nf.png
│ │ ├── ng.png
│ │ ├── ni.png
│ │ ├── nl.png
│ │ ├── no.png
│ │ ├── np.png
│ │ ├── nr.png
│ │ ├── nu.png
│ │ ├── nz.png
│ │ ├── om.png
│ │ ├── pa.png
│ │ ├── pe.png
│ │ ├── pf.png
│ │ ├── pg.png
│ │ ├── ph.png
│ │ ├── pk.png
│ │ ├── pl.png
│ │ ├── pm.png
│ │ ├── pn.png
│ │ ├── pr.png
│ │ ├── ps.png
│ │ ├── pt.png
│ │ ├── pw.png
│ │ ├── py.png
│ │ ├── qa.png
│ │ ├── re.png
│ │ ├── ro.png
│ │ ├── rs.png
│ │ ├── ru.png
│ │ ├── rw.png
│ │ ├── sa.png
│ │ ├── sb.png
│ │ ├── sc.png
│ │ ├── scotland.png
│ │ ├── sd.png
│ │ ├── se.png
│ │ ├── sg.png
│ │ ├── sh.png
│ │ ├── si.png
│ │ ├── sj.png
│ │ ├── sk.png
│ │ ├── sl.png
│ │ ├── sm.png
│ │ ├── sn.png
│ │ ├── so.png
│ │ ├── sr.png
│ │ ├── st.png
│ │ ├── sv.png
│ │ ├── sy.png
│ │ ├── sz.png
│ │ ├── tc.png
│ │ ├── td.png
│ │ ├── tf.png
│ │ ├── tg.png
│ │ ├── th.png
│ │ ├── tj.png
│ │ ├── tk.png
│ │ ├── tl.png
│ │ ├── tm.png
│ │ ├── tn.png
│ │ ├── to.png
│ │ ├── tr.png
│ │ ├── tt.png
│ │ ├── tv.png
│ │ ├── tw.png
│ │ ├── tz.png
│ │ ├── ua.png
│ │ ├── ug.png
│ │ ├── um.png
│ │ ├── us.png
│ │ ├── uy.png
│ │ ├── uz.png
│ │ ├── va.png
│ │ ├── vc.png
│ │ ├── ve.png
│ │ ├── vg.png
│ │ ├── vi.png
│ │ ├── vn.png
│ │ ├── vu.png
│ │ ├── wales.png
│ │ ├── wf.png
│ │ ├── ws.png
│ │ ├── ye.png
│ │ ├── yt.png
│ │ ├── za.png
│ │ ├── zm.png
│ │ └── zw.png
│ ├── images
│ │ ├── cache
│ │ │ └── index.html
│ │ ├── logo-openmvm.png
│ │ ├── marketplace
│ │ │ ├── customers
│ │ │ │ └── index.html
│ │ │ ├── favicon-openmvm.png
│ │ │ ├── logo-openmvm.png
│ │ │ └── no_image.png
│ │ ├── no_image.png
│ │ ├── plugin_not_installed.png
│ │ └── theme_not_installed.png
│ ├── marketplace
│ │ └── theme
│ │ │ └── com_openmvm
│ │ │ └── Basic
│ │ │ ├── css
│ │ │ └── basic.css
│ │ │ ├── images
│ │ │ └── basic.png
│ │ │ └── js
│ │ │ └── basic.js
│ └── plugins
│ │ ├── bootstrap-5.3.0-alpha1-dist
│ │ ├── css
│ │ │ ├── bootstrap-grid.css
│ │ │ ├── bootstrap-grid.css.map
│ │ │ ├── bootstrap-grid.min.css
│ │ │ ├── bootstrap-grid.min.css.map
│ │ │ ├── bootstrap-grid.rtl.css
│ │ │ ├── bootstrap-grid.rtl.css.map
│ │ │ ├── bootstrap-grid.rtl.min.css
│ │ │ ├── bootstrap-grid.rtl.min.css.map
│ │ │ ├── bootstrap-reboot.css
│ │ │ ├── bootstrap-reboot.css.map
│ │ │ ├── bootstrap-reboot.min.css
│ │ │ ├── bootstrap-reboot.min.css.map
│ │ │ ├── bootstrap-reboot.rtl.css
│ │ │ ├── bootstrap-reboot.rtl.css.map
│ │ │ ├── bootstrap-reboot.rtl.min.css
│ │ │ ├── bootstrap-reboot.rtl.min.css.map
│ │ │ ├── bootstrap-utilities.css
│ │ │ ├── bootstrap-utilities.css.map
│ │ │ ├── bootstrap-utilities.min.css
│ │ │ ├── bootstrap-utilities.min.css.map
│ │ │ ├── bootstrap-utilities.rtl.css
│ │ │ ├── bootstrap-utilities.rtl.css.map
│ │ │ ├── bootstrap-utilities.rtl.min.css
│ │ │ ├── bootstrap-utilities.rtl.min.css.map
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ ├── bootstrap.min.css
│ │ │ ├── bootstrap.min.css.map
│ │ │ ├── bootstrap.rtl.css
│ │ │ ├── bootstrap.rtl.css.map
│ │ │ ├── bootstrap.rtl.min.css
│ │ │ └── bootstrap.rtl.min.css.map
│ │ └── js
│ │ │ ├── bootstrap.bundle.js
│ │ │ ├── bootstrap.bundle.js.map
│ │ │ ├── bootstrap.bundle.min.js
│ │ │ ├── bootstrap.bundle.min.js.map
│ │ │ ├── bootstrap.esm.js
│ │ │ ├── bootstrap.esm.js.map
│ │ │ ├── bootstrap.esm.min.js
│ │ │ ├── bootstrap.esm.min.js.map
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.js.map
│ │ │ ├── bootstrap.min.js
│ │ │ └── bootstrap.min.js.map
│ │ ├── chart.js-4.1.0
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── auto
│ │ │ ├── auto.cjs
│ │ │ ├── auto.d.ts
│ │ │ ├── auto.js
│ │ │ └── package.json
│ │ ├── dist
│ │ │ ├── chart.cjs
│ │ │ ├── chart.cjs.map
│ │ │ ├── chart.js
│ │ │ ├── chart.js.map
│ │ │ ├── chart.umd.js
│ │ │ ├── chart.umd.js.map
│ │ │ ├── chunks
│ │ │ │ ├── helpers.segment.cjs
│ │ │ │ ├── helpers.segment.cjs.map
│ │ │ │ ├── helpers.segment.js
│ │ │ │ └── helpers.segment.js.map
│ │ │ ├── controllers
│ │ │ │ ├── controller.bar.d.ts
│ │ │ │ ├── controller.bubble.d.ts
│ │ │ │ ├── controller.doughnut.d.ts
│ │ │ │ ├── controller.line.d.ts
│ │ │ │ ├── controller.pie.d.ts
│ │ │ │ ├── controller.polarArea.d.ts
│ │ │ │ ├── controller.radar.d.ts
│ │ │ │ ├── controller.scatter.d.ts
│ │ │ │ └── index.d.ts
│ │ │ ├── core
│ │ │ │ ├── core.adapters.d.ts
│ │ │ │ ├── core.animation.d.ts
│ │ │ │ ├── core.animations.d.ts
│ │ │ │ ├── core.animations.defaults.d.ts
│ │ │ │ ├── core.animator.d.ts
│ │ │ │ ├── core.config.d.ts
│ │ │ │ ├── core.controller.d.ts
│ │ │ │ ├── core.datasetController.d.ts
│ │ │ │ ├── core.defaults.d.ts
│ │ │ │ ├── core.element.d.ts
│ │ │ │ ├── core.interaction.d.ts
│ │ │ │ ├── core.layouts.d.ts
│ │ │ │ ├── core.layouts.defaults.d.ts
│ │ │ │ ├── core.plugins.d.ts
│ │ │ │ ├── core.registry.d.ts
│ │ │ │ ├── core.scale.autoskip.d.ts
│ │ │ │ ├── core.scale.d.ts
│ │ │ │ ├── core.scale.defaults.d.ts
│ │ │ │ ├── core.ticks.d.ts
│ │ │ │ ├── core.typedRegistry.d.ts
│ │ │ │ └── index.d.ts
│ │ │ ├── elements
│ │ │ │ ├── element.arc.d.ts
│ │ │ │ ├── element.bar.d.ts
│ │ │ │ ├── element.line.d.ts
│ │ │ │ ├── element.point.d.ts
│ │ │ │ └── index.d.ts
│ │ │ ├── helpers.cjs
│ │ │ ├── helpers.cjs.map
│ │ │ ├── helpers.js
│ │ │ ├── helpers.js.map
│ │ │ ├── helpers
│ │ │ │ ├── helpers.canvas.d.ts
│ │ │ │ ├── helpers.collection.d.ts
│ │ │ │ ├── helpers.color.d.ts
│ │ │ │ ├── helpers.config.d.ts
│ │ │ │ ├── helpers.core.d.ts
│ │ │ │ ├── helpers.curve.d.ts
│ │ │ │ ├── helpers.dom.d.ts
│ │ │ │ ├── helpers.easing.d.ts
│ │ │ │ ├── helpers.extras.d.ts
│ │ │ │ ├── helpers.interpolation.d.ts
│ │ │ │ ├── helpers.intl.d.ts
│ │ │ │ ├── helpers.math.d.ts
│ │ │ │ ├── helpers.options.d.ts
│ │ │ │ ├── helpers.rtl.d.ts
│ │ │ │ ├── helpers.segment.d.ts
│ │ │ │ ├── index.d.ts
│ │ │ │ └── types.d.ts
│ │ │ ├── index.d.ts
│ │ │ ├── index.umd.d.ts
│ │ │ ├── platform
│ │ │ │ ├── index.d.ts
│ │ │ │ ├── platform.base.d.ts
│ │ │ │ ├── platform.basic.d.ts
│ │ │ │ └── platform.dom.d.ts
│ │ │ ├── plugins
│ │ │ │ ├── index.d.ts
│ │ │ │ ├── plugin.colors.d.ts
│ │ │ │ ├── plugin.decimation.d.ts
│ │ │ │ ├── plugin.filler
│ │ │ │ │ ├── filler.drawing.d.ts
│ │ │ │ │ ├── filler.helper.d.ts
│ │ │ │ │ ├── filler.options.d.ts
│ │ │ │ │ ├── filler.segment.d.ts
│ │ │ │ │ ├── filler.target.d.ts
│ │ │ │ │ ├── filler.target.stack.d.ts
│ │ │ │ │ ├── index.d.ts
│ │ │ │ │ └── simpleArc.d.ts
│ │ │ │ ├── plugin.legend.d.ts
│ │ │ │ ├── plugin.subtitle.d.ts
│ │ │ │ ├── plugin.title.d.ts
│ │ │ │ └── plugin.tooltip.d.ts
│ │ │ ├── scales
│ │ │ │ ├── index.d.ts
│ │ │ │ ├── scale.category.d.ts
│ │ │ │ ├── scale.linear.d.ts
│ │ │ │ ├── scale.linearbase.d.ts
│ │ │ │ ├── scale.logarithmic.d.ts
│ │ │ │ ├── scale.radialLinear.d.ts
│ │ │ │ ├── scale.time.d.ts
│ │ │ │ └── scale.timeseries.d.ts
│ │ │ └── types.d.ts
│ │ ├── helpers
│ │ │ ├── helpers.cjs
│ │ │ ├── helpers.d.ts
│ │ │ ├── helpers.js
│ │ │ └── package.json
│ │ ├── package.json
│ │ └── types
│ │ │ ├── animation.d.ts
│ │ │ ├── basic.d.ts
│ │ │ ├── color.d.ts
│ │ │ ├── geometric.d.ts
│ │ │ ├── helpers
│ │ │ ├── helpers.canvas.d.ts
│ │ │ ├── helpers.segment.d.ts
│ │ │ └── index.d.ts
│ │ │ ├── index.d.ts
│ │ │ ├── layout.d.ts
│ │ │ └── utils.d.ts
│ │ ├── fontawesome-free-6.2.1-web
│ │ ├── css
│ │ │ ├── all.css
│ │ │ ├── all.min.css
│ │ │ ├── brands.css
│ │ │ ├── brands.min.css
│ │ │ ├── fontawesome.css
│ │ │ ├── fontawesome.min.css
│ │ │ ├── regular.css
│ │ │ ├── regular.min.css
│ │ │ ├── solid.css
│ │ │ ├── solid.min.css
│ │ │ ├── svg-with-js.css
│ │ │ ├── svg-with-js.min.css
│ │ │ ├── v4-font-face.css
│ │ │ ├── v4-font-face.min.css
│ │ │ ├── v4-shims.css
│ │ │ ├── v4-shims.min.css
│ │ │ ├── v5-font-face.css
│ │ │ └── v5-font-face.min.css
│ │ └── webfonts
│ │ │ ├── fa-brands-400.ttf
│ │ │ ├── fa-brands-400.woff2
│ │ │ ├── fa-regular-400.ttf
│ │ │ ├── fa-regular-400.woff2
│ │ │ ├── fa-solid-900.ttf
│ │ │ ├── fa-solid-900.woff2
│ │ │ ├── fa-v4compatibility.ttf
│ │ │ └── fa-v4compatibility.woff2
│ │ ├── jquery
│ │ ├── jquery-3.6.1.min.js
│ │ ├── jquery-json-2.6.0
│ │ │ └── jquery.json.min.js
│ │ ├── jquery-serializejson
│ │ │ ├── jquery.serializejson.js
│ │ │ └── jquery.serializejson.min.js
│ │ └── jquery-ui-1.13.2
│ │ │ ├── AUTHORS.txt
│ │ │ ├── LICENSE.txt
│ │ │ ├── external
│ │ │ └── jquery
│ │ │ │ └── jquery.js
│ │ │ ├── images
│ │ │ ├── ui-icons_444444_256x240.png
│ │ │ ├── ui-icons_555555_256x240.png
│ │ │ ├── ui-icons_777620_256x240.png
│ │ │ ├── ui-icons_777777_256x240.png
│ │ │ ├── ui-icons_cc0000_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── index.html
│ │ │ ├── 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
│ │ │ └── package.json
│ │ ├── swipenav
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── css
│ │ │ ├── jquery-swipe-nav.css
│ │ │ └── reset.css
│ │ ├── img
│ │ │ └── list-icon.png
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── jquery-swipe-nav-plugin.js
│ │ │ └── jquery-swipe-nav-plugin.min.js
│ │ ├── license.html
│ │ └── source.html
│ │ ├── swiper-8.4.4
│ │ ├── swiper-bundle.min.css
│ │ └── swiper-bundle.min.js
│ │ └── tinymce_6.2.0
│ │ └── js
│ │ └── tinymce
│ │ ├── icons
│ │ └── default
│ │ │ └── icons.min.js
│ │ ├── langs
│ │ └── README.md
│ │ ├── license.txt
│ │ ├── models
│ │ └── dom
│ │ │ └── model.min.js
│ │ ├── plugins
│ │ ├── advlist
│ │ │ └── plugin.min.js
│ │ ├── anchor
│ │ │ └── plugin.min.js
│ │ ├── autolink
│ │ │ └── plugin.min.js
│ │ ├── autoresize
│ │ │ └── plugin.min.js
│ │ ├── autosave
│ │ │ └── plugin.min.js
│ │ ├── charmap
│ │ │ └── plugin.min.js
│ │ ├── code
│ │ │ └── plugin.min.js
│ │ ├── codesample
│ │ │ └── plugin.min.js
│ │ ├── directionality
│ │ │ └── plugin.min.js
│ │ ├── emoticons
│ │ │ ├── js
│ │ │ │ ├── emojiimages.js
│ │ │ │ ├── emojiimages.min.js
│ │ │ │ ├── emojis.js
│ │ │ │ └── emojis.min.js
│ │ │ └── plugin.min.js
│ │ ├── fullscreen
│ │ │ └── plugin.min.js
│ │ ├── help
│ │ │ └── plugin.min.js
│ │ ├── image
│ │ │ └── plugin.min.js
│ │ ├── importcss
│ │ │ └── plugin.min.js
│ │ ├── insertdatetime
│ │ │ └── plugin.min.js
│ │ ├── link
│ │ │ └── plugin.min.js
│ │ ├── lists
│ │ │ └── plugin.min.js
│ │ ├── media
│ │ │ └── plugin.min.js
│ │ ├── nonbreaking
│ │ │ └── plugin.min.js
│ │ ├── pagebreak
│ │ │ └── plugin.min.js
│ │ ├── preview
│ │ │ └── plugin.min.js
│ │ ├── quickbars
│ │ │ └── plugin.min.js
│ │ ├── save
│ │ │ └── plugin.min.js
│ │ ├── searchreplace
│ │ │ └── plugin.min.js
│ │ ├── table
│ │ │ └── plugin.min.js
│ │ ├── template
│ │ │ └── plugin.min.js
│ │ ├── visualblocks
│ │ │ └── plugin.min.js
│ │ ├── visualchars
│ │ │ └── plugin.min.js
│ │ └── wordcount
│ │ │ └── plugin.min.js
│ │ ├── skins
│ │ ├── content
│ │ │ ├── dark
│ │ │ │ └── content.min.css
│ │ │ ├── default
│ │ │ │ └── content.min.css
│ │ │ ├── document
│ │ │ │ └── content.min.css
│ │ │ ├── tinymce-5-dark
│ │ │ │ └── content.min.css
│ │ │ ├── tinymce-5
│ │ │ │ └── content.min.css
│ │ │ └── writer
│ │ │ │ └── content.min.css
│ │ └── ui
│ │ │ ├── oxide-dark
│ │ │ ├── content.inline.min.css
│ │ │ ├── content.min.css
│ │ │ ├── skin.min.css
│ │ │ └── skin.shadowdom.min.css
│ │ │ ├── oxide
│ │ │ ├── content.inline.min.css
│ │ │ ├── content.min.css
│ │ │ ├── skin.min.css
│ │ │ └── skin.shadowdom.min.css
│ │ │ ├── tinymce-5-dark
│ │ │ ├── content.inline.min.css
│ │ │ ├── content.min.css
│ │ │ ├── skin.min.css
│ │ │ └── skin.shadowdom.min.css
│ │ │ └── tinymce-5
│ │ │ ├── content.inline.min.css
│ │ │ ├── content.min.css
│ │ │ ├── skin.min.css
│ │ │ └── skin.shadowdom.min.css
│ │ ├── themes
│ │ └── silver
│ │ │ └── theme.min.js
│ │ ├── tinymce.d.ts
│ │ └── tinymce.min.js
├── favicon.ico
├── index.php
├── install
│ ├── app
│ │ ├── .htaccess
│ │ ├── Common.php
│ │ ├── Config
│ │ │ ├── App.php
│ │ │ ├── Autoload.php
│ │ │ ├── Boot
│ │ │ │ ├── development.php
│ │ │ │ ├── production.php
│ │ │ │ └── testing.php
│ │ │ ├── CURLRequest.php
│ │ │ ├── Cache.php
│ │ │ ├── Constants.php
│ │ │ ├── ContentSecurityPolicy.php
│ │ │ ├── Cookie.php
│ │ │ ├── Database.php
│ │ │ ├── DocTypes.php
│ │ │ ├── Email.php
│ │ │ ├── Encryption.php
│ │ │ ├── Events.php
│ │ │ ├── Exceptions.php
│ │ │ ├── Feature.php
│ │ │ ├── Filters.php
│ │ │ ├── ForeignCharacters.php
│ │ │ ├── Format.php
│ │ │ ├── Generators.php
│ │ │ ├── Honeypot.php
│ │ │ ├── Images.php
│ │ │ ├── Kint.php
│ │ │ ├── Logger.php
│ │ │ ├── Migrations.php
│ │ │ ├── Mimes.php
│ │ │ ├── Modules.php
│ │ │ ├── Pager.php
│ │ │ ├── Paths.php
│ │ │ ├── Publisher.php
│ │ │ ├── Routes.php
│ │ │ ├── Security.php
│ │ │ ├── Services.php
│ │ │ ├── Toolbar.php
│ │ │ ├── UserAgents.php
│ │ │ ├── Validation.php
│ │ │ └── View.php
│ │ ├── Controllers
│ │ │ ├── BaseController.php
│ │ │ ├── Env.php
│ │ │ ├── Footer.php
│ │ │ ├── Header.php
│ │ │ ├── Home.php
│ │ │ ├── Install.php
│ │ │ └── Menu.php
│ │ ├── Database
│ │ │ ├── Migrations
│ │ │ │ └── .gitkeep
│ │ │ └── Seeds
│ │ │ │ └── .gitkeep
│ │ ├── Filters
│ │ │ └── .gitkeep
│ │ ├── Helpers
│ │ │ └── .gitkeep
│ │ ├── Language
│ │ │ ├── .gitkeep
│ │ │ └── en
│ │ │ │ ├── Button.php
│ │ │ │ ├── Column.php
│ │ │ │ ├── Entry.php
│ │ │ │ ├── Error.php
│ │ │ │ ├── Heading.php
│ │ │ │ ├── Success.php
│ │ │ │ ├── Text.php
│ │ │ │ └── Validation.php
│ │ ├── Libraries
│ │ │ └── .gitkeep
│ │ ├── Models
│ │ │ ├── .gitkeep
│ │ │ └── Install_Model.php
│ │ ├── ThirdParty
│ │ │ └── .gitkeep
│ │ ├── Views
│ │ │ ├── env.php
│ │ │ ├── errors
│ │ │ │ ├── cli
│ │ │ │ │ ├── error_404.php
│ │ │ │ │ ├── error_exception.php
│ │ │ │ │ └── production.php
│ │ │ │ └── html
│ │ │ │ │ ├── debug.css
│ │ │ │ │ ├── debug.js
│ │ │ │ │ ├── error_404.php
│ │ │ │ │ ├── error_exception.php
│ │ │ │ │ └── production.php
│ │ │ ├── footer.php
│ │ │ ├── header.php
│ │ │ ├── install.php
│ │ │ ├── install_configuration.php
│ │ │ ├── install_finish.php
│ │ │ ├── install_license_agreement.php
│ │ │ ├── install_pre_installation.php
│ │ │ ├── menu.php
│ │ │ └── welcome_message.php
│ │ └── index.html
│ ├── env
│ ├── openmvm.sql
│ ├── public
│ │ ├── .htaccess
│ │ ├── favicon.ico
│ │ ├── index.php
│ │ └── robots.txt
│ ├── system
│ │ ├── .htaccess
│ │ ├── API
│ │ │ └── ResponseTrait.php
│ │ ├── Autoloader
│ │ │ ├── Autoloader.php
│ │ │ └── FileLocator.php
│ │ ├── BaseModel.php
│ │ ├── CLI
│ │ │ ├── BaseCommand.php
│ │ │ ├── CLI.php
│ │ │ ├── CommandRunner.php
│ │ │ ├── Commands.php
│ │ │ ├── Console.php
│ │ │ ├── Exceptions
│ │ │ │ └── CLIException.php
│ │ │ └── GeneratorTrait.php
│ │ ├── Cache
│ │ │ ├── CacheFactory.php
│ │ │ ├── CacheInterface.php
│ │ │ ├── Exceptions
│ │ │ │ ├── CacheException.php
│ │ │ │ └── ExceptionInterface.php
│ │ │ └── Handlers
│ │ │ │ ├── BaseHandler.php
│ │ │ │ ├── DummyHandler.php
│ │ │ │ ├── FileHandler.php
│ │ │ │ ├── MemcachedHandler.php
│ │ │ │ ├── PredisHandler.php
│ │ │ │ ├── RedisHandler.php
│ │ │ │ └── WincacheHandler.php
│ │ ├── CodeIgniter.php
│ │ ├── Commands
│ │ │ ├── Cache
│ │ │ │ ├── ClearCache.php
│ │ │ │ └── InfoCache.php
│ │ │ ├── Database
│ │ │ │ ├── CreateDatabase.php
│ │ │ │ ├── Migrate.php
│ │ │ │ ├── MigrateRefresh.php
│ │ │ │ ├── MigrateRollback.php
│ │ │ │ ├── MigrateStatus.php
│ │ │ │ ├── Seed.php
│ │ │ │ └── ShowTableInfo.php
│ │ │ ├── Encryption
│ │ │ │ └── GenerateKey.php
│ │ │ ├── Generators
│ │ │ │ ├── CommandGenerator.php
│ │ │ │ ├── ConfigGenerator.php
│ │ │ │ ├── ControllerGenerator.php
│ │ │ │ ├── EntityGenerator.php
│ │ │ │ ├── FilterGenerator.php
│ │ │ │ ├── MigrateCreate.php
│ │ │ │ ├── MigrationGenerator.php
│ │ │ │ ├── ModelGenerator.php
│ │ │ │ ├── ScaffoldGenerator.php
│ │ │ │ ├── SeederGenerator.php
│ │ │ │ ├── SessionMigrationGenerator.php
│ │ │ │ ├── ValidationGenerator.php
│ │ │ │ └── Views
│ │ │ │ │ ├── command.tpl.php
│ │ │ │ │ ├── config.tpl.php
│ │ │ │ │ ├── controller.tpl.php
│ │ │ │ │ ├── entity.tpl.php
│ │ │ │ │ ├── filter.tpl.php
│ │ │ │ │ ├── migration.tpl.php
│ │ │ │ │ ├── model.tpl.php
│ │ │ │ │ ├── seeder.tpl.php
│ │ │ │ │ └── validation.tpl.php
│ │ │ ├── Help.php
│ │ │ ├── Housekeeping
│ │ │ │ ├── ClearDebugbar.php
│ │ │ │ └── ClearLogs.php
│ │ │ ├── ListCommands.php
│ │ │ ├── Server
│ │ │ │ ├── Serve.php
│ │ │ │ └── rewrite.php
│ │ │ └── Utilities
│ │ │ │ ├── Environment.php
│ │ │ │ ├── Namespaces.php
│ │ │ │ ├── Publish.php
│ │ │ │ ├── Routes.php
│ │ │ │ └── Routes
│ │ │ │ ├── AutoRouteCollector.php
│ │ │ │ ├── AutoRouterImproved
│ │ │ │ ├── AutoRouteCollector.php
│ │ │ │ └── ControllerMethodReader.php
│ │ │ │ ├── ControllerFinder.php
│ │ │ │ ├── ControllerMethodReader.php
│ │ │ │ ├── FilterCollector.php
│ │ │ │ ├── FilterFinder.php
│ │ │ │ └── SampleURIGenerator.php
│ │ ├── Common.php
│ │ ├── ComposerScripts.php
│ │ ├── Config
│ │ │ ├── AutoloadConfig.php
│ │ │ ├── BaseConfig.php
│ │ │ ├── BaseService.php
│ │ │ ├── Config.php
│ │ │ ├── DotEnv.php
│ │ │ ├── Factories.php
│ │ │ ├── Factory.php
│ │ │ ├── ForeignCharacters.php
│ │ │ ├── Publisher.php
│ │ │ ├── Routes.php
│ │ │ ├── Services.php
│ │ │ └── View.php
│ │ ├── Controller.php
│ │ ├── Cookie
│ │ │ ├── CloneableCookieInterface.php
│ │ │ ├── Cookie.php
│ │ │ ├── CookieInterface.php
│ │ │ ├── CookieStore.php
│ │ │ └── Exceptions
│ │ │ │ └── CookieException.php
│ │ ├── Database
│ │ │ ├── BaseBuilder.php
│ │ │ ├── BaseConnection.php
│ │ │ ├── BasePreparedQuery.php
│ │ │ ├── BaseResult.php
│ │ │ ├── BaseUtils.php
│ │ │ ├── Config.php
│ │ │ ├── ConnectionInterface.php
│ │ │ ├── Database.php
│ │ │ ├── Exceptions
│ │ │ │ ├── DataException.php
│ │ │ │ ├── DatabaseException.php
│ │ │ │ └── ExceptionInterface.php
│ │ │ ├── Forge.php
│ │ │ ├── Migration.php
│ │ │ ├── MigrationRunner.php
│ │ │ ├── ModelFactory.php
│ │ │ ├── MySQLi
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Connection.php
│ │ │ │ ├── Forge.php
│ │ │ │ ├── PreparedQuery.php
│ │ │ │ ├── Result.php
│ │ │ │ └── Utils.php
│ │ │ ├── OCI8
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Connection.php
│ │ │ │ ├── Forge.php
│ │ │ │ ├── PreparedQuery.php
│ │ │ │ ├── Result.php
│ │ │ │ └── Utils.php
│ │ │ ├── Postgre
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Connection.php
│ │ │ │ ├── Forge.php
│ │ │ │ ├── PreparedQuery.php
│ │ │ │ ├── Result.php
│ │ │ │ └── Utils.php
│ │ │ ├── PreparedQueryInterface.php
│ │ │ ├── Query.php
│ │ │ ├── QueryInterface.php
│ │ │ ├── RawSql.php
│ │ │ ├── ResultInterface.php
│ │ │ ├── SQLSRV
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Connection.php
│ │ │ │ ├── Forge.php
│ │ │ │ ├── PreparedQuery.php
│ │ │ │ ├── Result.php
│ │ │ │ └── Utils.php
│ │ │ ├── SQLite3
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Connection.php
│ │ │ │ ├── Forge.php
│ │ │ │ ├── PreparedQuery.php
│ │ │ │ ├── Result.php
│ │ │ │ ├── Table.php
│ │ │ │ └── Utils.php
│ │ │ └── Seeder.php
│ │ ├── Debug
│ │ │ ├── Exceptions.php
│ │ │ ├── Iterator.php
│ │ │ ├── Timer.php
│ │ │ ├── Toolbar.php
│ │ │ └── Toolbar
│ │ │ │ ├── Collectors
│ │ │ │ ├── BaseCollector.php
│ │ │ │ ├── Config.php
│ │ │ │ ├── Database.php
│ │ │ │ ├── Events.php
│ │ │ │ ├── Files.php
│ │ │ │ ├── History.php
│ │ │ │ ├── Logs.php
│ │ │ │ ├── Routes.php
│ │ │ │ ├── Timers.php
│ │ │ │ └── Views.php
│ │ │ │ └── Views
│ │ │ │ ├── _config.tpl
│ │ │ │ ├── _database.tpl
│ │ │ │ ├── _events.tpl
│ │ │ │ ├── _files.tpl
│ │ │ │ ├── _history.tpl
│ │ │ │ ├── _logs.tpl
│ │ │ │ ├── _routes.tpl
│ │ │ │ ├── toolbar.css
│ │ │ │ ├── toolbar.js
│ │ │ │ ├── toolbar.tpl.php
│ │ │ │ └── toolbarloader.js
│ │ ├── Email
│ │ │ └── Email.php
│ │ ├── Encryption
│ │ │ ├── EncrypterInterface.php
│ │ │ ├── Encryption.php
│ │ │ ├── Exceptions
│ │ │ │ └── EncryptionException.php
│ │ │ └── Handlers
│ │ │ │ ├── BaseHandler.php
│ │ │ │ ├── OpenSSLHandler.php
│ │ │ │ └── SodiumHandler.php
│ │ ├── Entity.php
│ │ ├── Entity
│ │ │ ├── Cast
│ │ │ │ ├── ArrayCast.php
│ │ │ │ ├── BaseCast.php
│ │ │ │ ├── BooleanCast.php
│ │ │ │ ├── CSVCast.php
│ │ │ │ ├── CastInterface.php
│ │ │ │ ├── DatetimeCast.php
│ │ │ │ ├── FloatCast.php
│ │ │ │ ├── IntegerCast.php
│ │ │ │ ├── JsonCast.php
│ │ │ │ ├── ObjectCast.php
│ │ │ │ ├── StringCast.php
│ │ │ │ ├── TimestampCast.php
│ │ │ │ └── URICast.php
│ │ │ ├── Entity.php
│ │ │ └── Exceptions
│ │ │ │ └── CastException.php
│ │ ├── Events
│ │ │ └── Events.php
│ │ ├── Exceptions
│ │ │ ├── AlertError.php
│ │ │ ├── CastException.php
│ │ │ ├── ConfigException.php
│ │ │ ├── CriticalError.php
│ │ │ ├── DebugTraceableTrait.php
│ │ │ ├── DownloadException.php
│ │ │ ├── EmergencyError.php
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── FrameworkException.php
│ │ │ ├── ModelException.php
│ │ │ ├── PageNotFoundException.php
│ │ │ └── TestException.php
│ │ ├── Files
│ │ │ ├── Exceptions
│ │ │ │ ├── FileException.php
│ │ │ │ └── FileNotFoundException.php
│ │ │ ├── File.php
│ │ │ └── FileCollection.php
│ │ ├── Filters
│ │ │ ├── CSRF.php
│ │ │ ├── DebugToolbar.php
│ │ │ ├── Exceptions
│ │ │ │ └── FilterException.php
│ │ │ ├── FilterInterface.php
│ │ │ ├── Filters.php
│ │ │ ├── Honeypot.php
│ │ │ ├── InvalidChars.php
│ │ │ └── SecureHeaders.php
│ │ ├── Format
│ │ │ ├── Exceptions
│ │ │ │ └── FormatException.php
│ │ │ ├── Format.php
│ │ │ ├── FormatterInterface.php
│ │ │ ├── JSONFormatter.php
│ │ │ └── XMLFormatter.php
│ │ ├── HTTP
│ │ │ ├── CLIRequest.php
│ │ │ ├── CURLRequest.php
│ │ │ ├── ContentSecurityPolicy.php
│ │ │ ├── DownloadResponse.php
│ │ │ ├── Exceptions
│ │ │ │ └── HTTPException.php
│ │ │ ├── Files
│ │ │ │ ├── FileCollection.php
│ │ │ │ ├── UploadedFile.php
│ │ │ │ └── UploadedFileInterface.php
│ │ │ ├── Header.php
│ │ │ ├── IncomingRequest.php
│ │ │ ├── Message.php
│ │ │ ├── MessageInterface.php
│ │ │ ├── MessageTrait.php
│ │ │ ├── Negotiate.php
│ │ │ ├── RedirectResponse.php
│ │ │ ├── Request.php
│ │ │ ├── RequestInterface.php
│ │ │ ├── RequestTrait.php
│ │ │ ├── Response.php
│ │ │ ├── ResponseInterface.php
│ │ │ ├── ResponseTrait.php
│ │ │ ├── URI.php
│ │ │ └── UserAgent.php
│ │ ├── Helpers
│ │ │ ├── array_helper.php
│ │ │ ├── cookie_helper.php
│ │ │ ├── date_helper.php
│ │ │ ├── filesystem_helper.php
│ │ │ ├── form_helper.php
│ │ │ ├── html_helper.php
│ │ │ ├── inflector_helper.php
│ │ │ ├── number_helper.php
│ │ │ ├── security_helper.php
│ │ │ ├── test_helper.php
│ │ │ ├── text_helper.php
│ │ │ ├── url_helper.php
│ │ │ └── xml_helper.php
│ │ ├── Honeypot
│ │ │ ├── Exceptions
│ │ │ │ └── HoneypotException.php
│ │ │ └── Honeypot.php
│ │ ├── I18n
│ │ │ ├── Exceptions
│ │ │ │ └── I18nException.php
│ │ │ ├── Time.php
│ │ │ └── TimeDifference.php
│ │ ├── Images
│ │ │ ├── Exceptions
│ │ │ │ └── ImageException.php
│ │ │ ├── Handlers
│ │ │ │ ├── BaseHandler.php
│ │ │ │ ├── GDHandler.php
│ │ │ │ └── ImageMagickHandler.php
│ │ │ ├── Image.php
│ │ │ └── ImageHandlerInterface.php
│ │ ├── Language
│ │ │ ├── Language.php
│ │ │ └── en
│ │ │ │ ├── CLI.php
│ │ │ │ ├── Cache.php
│ │ │ │ ├── Cast.php
│ │ │ │ ├── Cookie.php
│ │ │ │ ├── Core.php
│ │ │ │ ├── Database.php
│ │ │ │ ├── Email.php
│ │ │ │ ├── Encryption.php
│ │ │ │ ├── Fabricator.php
│ │ │ │ ├── Files.php
│ │ │ │ ├── Filters.php
│ │ │ │ ├── Format.php
│ │ │ │ ├── HTTP.php
│ │ │ │ ├── Images.php
│ │ │ │ ├── Log.php
│ │ │ │ ├── Migrations.php
│ │ │ │ ├── Number.php
│ │ │ │ ├── Pager.php
│ │ │ │ ├── Publisher.php
│ │ │ │ ├── RESTful.php
│ │ │ │ ├── Router.php
│ │ │ │ ├── Security.php
│ │ │ │ ├── Session.php
│ │ │ │ ├── Test.php
│ │ │ │ ├── Time.php
│ │ │ │ ├── Validation.php
│ │ │ │ └── View.php
│ │ ├── Log
│ │ │ ├── Exceptions
│ │ │ │ └── LogException.php
│ │ │ ├── Handlers
│ │ │ │ ├── BaseHandler.php
│ │ │ │ ├── ChromeLoggerHandler.php
│ │ │ │ ├── ErrorlogHandler.php
│ │ │ │ ├── FileHandler.php
│ │ │ │ └── HandlerInterface.php
│ │ │ └── Logger.php
│ │ ├── Model.php
│ │ ├── Modules
│ │ │ └── Modules.php
│ │ ├── Pager
│ │ │ ├── Exceptions
│ │ │ │ └── PagerException.php
│ │ │ ├── Pager.php
│ │ │ ├── PagerInterface.php
│ │ │ ├── PagerRenderer.php
│ │ │ └── Views
│ │ │ │ ├── default_full.php
│ │ │ │ ├── default_head.php
│ │ │ │ └── default_simple.php
│ │ ├── Publisher
│ │ │ ├── Exceptions
│ │ │ │ └── PublisherException.php
│ │ │ └── Publisher.php
│ │ ├── RESTful
│ │ │ ├── BaseResource.php
│ │ │ ├── ResourceController.php
│ │ │ └── ResourcePresenter.php
│ │ ├── Router
│ │ │ ├── AutoRouter.php
│ │ │ ├── AutoRouterImproved.php
│ │ │ ├── AutoRouterInterface.php
│ │ │ ├── Exceptions
│ │ │ │ ├── RedirectException.php
│ │ │ │ └── RouterException.php
│ │ │ ├── RouteCollection.php
│ │ │ ├── RouteCollectionInterface.php
│ │ │ ├── Router.php
│ │ │ └── RouterInterface.php
│ │ ├── Security
│ │ │ ├── Exceptions
│ │ │ │ └── SecurityException.php
│ │ │ ├── Security.php
│ │ │ └── SecurityInterface.php
│ │ ├── Session
│ │ │ ├── Exceptions
│ │ │ │ └── SessionException.php
│ │ │ ├── Handlers
│ │ │ │ ├── ArrayHandler.php
│ │ │ │ ├── BaseHandler.php
│ │ │ │ ├── Database
│ │ │ │ │ ├── MySQLiHandler.php
│ │ │ │ │ └── PostgreHandler.php
│ │ │ │ ├── DatabaseHandler.php
│ │ │ │ ├── FileHandler.php
│ │ │ │ ├── MemcachedHandler.php
│ │ │ │ └── RedisHandler.php
│ │ │ ├── Session.php
│ │ │ └── SessionInterface.php
│ │ ├── Test
│ │ │ ├── CIDatabaseTestCase.php
│ │ │ ├── CIUnitTestCase.php
│ │ │ ├── ConfigFromArrayTrait.php
│ │ │ ├── Constraints
│ │ │ │ └── SeeInDatabase.php
│ │ │ ├── ControllerResponse.php
│ │ │ ├── ControllerTestTrait.php
│ │ │ ├── ControllerTester.php
│ │ │ ├── DOMParser.php
│ │ │ ├── DatabaseTestTrait.php
│ │ │ ├── Fabricator.php
│ │ │ ├── FeatureResponse.php
│ │ │ ├── FeatureTestCase.php
│ │ │ ├── FeatureTestTrait.php
│ │ │ ├── FilterTestTrait.php
│ │ │ ├── Filters
│ │ │ │ └── CITestStreamFilter.php
│ │ │ ├── Interfaces
│ │ │ │ └── FabricatorModel.php
│ │ │ ├── Mock
│ │ │ │ ├── MockAppConfig.php
│ │ │ │ ├── MockAutoload.php
│ │ │ │ ├── MockBuilder.php
│ │ │ │ ├── MockCLIConfig.php
│ │ │ │ ├── MockCURLRequest.php
│ │ │ │ ├── MockCache.php
│ │ │ │ ├── MockCodeIgniter.php
│ │ │ │ ├── MockCommon.php
│ │ │ │ ├── MockConnection.php
│ │ │ │ ├── MockEmail.php
│ │ │ │ ├── MockEvents.php
│ │ │ │ ├── MockFileLogger.php
│ │ │ │ ├── MockIncomingRequest.php
│ │ │ │ ├── MockLanguage.php
│ │ │ │ ├── MockLogger.php
│ │ │ │ ├── MockQuery.php
│ │ │ │ ├── MockResourceController.php
│ │ │ │ ├── MockResourcePresenter.php
│ │ │ │ ├── MockResponse.php
│ │ │ │ ├── MockResult.php
│ │ │ │ ├── MockSecurity.php
│ │ │ │ ├── MockSecurityConfig.php
│ │ │ │ ├── MockServices.php
│ │ │ │ ├── MockSession.php
│ │ │ │ └── MockTable.php
│ │ │ ├── ReflectionHelper.php
│ │ │ ├── TestLogger.php
│ │ │ ├── TestResponse.php
│ │ │ └── bootstrap.php
│ │ ├── ThirdParty
│ │ │ ├── Escaper
│ │ │ │ ├── Escaper.php
│ │ │ │ ├── Exception
│ │ │ │ │ ├── ExceptionInterface.php
│ │ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ │ └── RuntimeException.php
│ │ │ │ └── LICENSE.md
│ │ │ ├── Kint
│ │ │ │ ├── CallFinder.php
│ │ │ │ ├── Kint.php
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Parser
│ │ │ │ │ ├── ArrayLimitPlugin.php
│ │ │ │ │ ├── ArrayObjectPlugin.php
│ │ │ │ │ ├── Base64Plugin.php
│ │ │ │ │ ├── BinaryPlugin.php
│ │ │ │ │ ├── BlacklistPlugin.php
│ │ │ │ │ ├── ClassMethodsPlugin.php
│ │ │ │ │ ├── ClassStaticsPlugin.php
│ │ │ │ │ ├── ClosurePlugin.php
│ │ │ │ │ ├── ColorPlugin.php
│ │ │ │ │ ├── DOMDocumentPlugin.php
│ │ │ │ │ ├── DateTimePlugin.php
│ │ │ │ │ ├── EnumPlugin.php
│ │ │ │ │ ├── FsPathPlugin.php
│ │ │ │ │ ├── IteratorPlugin.php
│ │ │ │ │ ├── JsonPlugin.php
│ │ │ │ │ ├── MicrotimePlugin.php
│ │ │ │ │ ├── MysqliPlugin.php
│ │ │ │ │ ├── Parser.php
│ │ │ │ │ ├── Plugin.php
│ │ │ │ │ ├── ProxyPlugin.php
│ │ │ │ │ ├── SerializePlugin.php
│ │ │ │ │ ├── SimpleXMLElementPlugin.php
│ │ │ │ │ ├── SplFileInfoPlugin.php
│ │ │ │ │ ├── SplObjectStoragePlugin.php
│ │ │ │ │ ├── StreamPlugin.php
│ │ │ │ │ ├── TablePlugin.php
│ │ │ │ │ ├── ThrowablePlugin.php
│ │ │ │ │ ├── TimestampPlugin.php
│ │ │ │ │ ├── ToStringPlugin.php
│ │ │ │ │ ├── TracePlugin.php
│ │ │ │ │ └── XmlPlugin.php
│ │ │ │ ├── Renderer
│ │ │ │ │ ├── CliRenderer.php
│ │ │ │ │ ├── PlainRenderer.php
│ │ │ │ │ ├── Renderer.php
│ │ │ │ │ ├── Rich
│ │ │ │ │ │ ├── ArrayLimitPlugin.php
│ │ │ │ │ │ ├── BinaryPlugin.php
│ │ │ │ │ │ ├── BlacklistPlugin.php
│ │ │ │ │ │ ├── CallablePlugin.php
│ │ │ │ │ │ ├── ClosurePlugin.php
│ │ │ │ │ │ ├── ColorPlugin.php
│ │ │ │ │ │ ├── DepthLimitPlugin.php
│ │ │ │ │ │ ├── DocstringPlugin.php
│ │ │ │ │ │ ├── MicrotimePlugin.php
│ │ │ │ │ │ ├── Plugin.php
│ │ │ │ │ │ ├── PluginInterface.php
│ │ │ │ │ │ ├── RecursionPlugin.php
│ │ │ │ │ │ ├── SimpleXMLElementPlugin.php
│ │ │ │ │ │ ├── SourcePlugin.php
│ │ │ │ │ │ ├── TabPluginInterface.php
│ │ │ │ │ │ ├── TablePlugin.php
│ │ │ │ │ │ ├── TimestampPlugin.php
│ │ │ │ │ │ ├── TraceFramePlugin.php
│ │ │ │ │ │ └── ValuePluginInterface.php
│ │ │ │ │ ├── RichRenderer.php
│ │ │ │ │ ├── Text
│ │ │ │ │ │ ├── ArrayLimitPlugin.php
│ │ │ │ │ │ ├── BlacklistPlugin.php
│ │ │ │ │ │ ├── DepthLimitPlugin.php
│ │ │ │ │ │ ├── EnumPlugin.php
│ │ │ │ │ │ ├── MicrotimePlugin.php
│ │ │ │ │ │ ├── Plugin.php
│ │ │ │ │ │ ├── RecursionPlugin.php
│ │ │ │ │ │ └── TracePlugin.php
│ │ │ │ │ └── TextRenderer.php
│ │ │ │ ├── Utils.php
│ │ │ │ ├── Zval
│ │ │ │ │ ├── BlobValue.php
│ │ │ │ │ ├── ClosureValue.php
│ │ │ │ │ ├── DateTimeValue.php
│ │ │ │ │ ├── EnumValue.php
│ │ │ │ │ ├── InstanceValue.php
│ │ │ │ │ ├── MethodValue.php
│ │ │ │ │ ├── ParameterValue.php
│ │ │ │ │ ├── Representation
│ │ │ │ │ │ ├── ColorRepresentation.php
│ │ │ │ │ │ ├── DocstringRepresentation.php
│ │ │ │ │ │ ├── MicrotimeRepresentation.php
│ │ │ │ │ │ ├── Representation.php
│ │ │ │ │ │ ├── SourceRepresentation.php
│ │ │ │ │ │ └── SplFileInfoRepresentation.php
│ │ │ │ │ ├── ResourceValue.php
│ │ │ │ │ ├── SimpleXMLElementValue.php
│ │ │ │ │ ├── StreamValue.php
│ │ │ │ │ ├── ThrowableValue.php
│ │ │ │ │ ├── TraceFrameValue.php
│ │ │ │ │ ├── TraceValue.php
│ │ │ │ │ └── Value.php
│ │ │ │ ├── init.php
│ │ │ │ ├── init_helpers.php
│ │ │ │ └── resources
│ │ │ │ │ └── compiled
│ │ │ │ │ ├── aante-light.css
│ │ │ │ │ ├── microtime.js
│ │ │ │ │ ├── original.css
│ │ │ │ │ ├── plain.css
│ │ │ │ │ ├── plain.js
│ │ │ │ │ ├── rich.js
│ │ │ │ │ ├── shared.js
│ │ │ │ │ ├── solarized-dark.css
│ │ │ │ │ └── solarized.css
│ │ │ └── PSR
│ │ │ │ └── Log
│ │ │ │ ├── AbstractLogger.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── LICENSE
│ │ │ │ ├── LogLevel.php
│ │ │ │ ├── LoggerAwareInterface.php
│ │ │ │ ├── LoggerAwareTrait.php
│ │ │ │ ├── LoggerInterface.php
│ │ │ │ ├── LoggerTrait.php
│ │ │ │ └── NullLogger.php
│ │ ├── Throttle
│ │ │ ├── Throttler.php
│ │ │ └── ThrottlerInterface.php
│ │ ├── Typography
│ │ │ └── Typography.php
│ │ ├── Validation
│ │ │ ├── CreditCardRules.php
│ │ │ ├── Exceptions
│ │ │ │ └── ValidationException.php
│ │ │ ├── FileRules.php
│ │ │ ├── FormatRules.php
│ │ │ ├── Rules.php
│ │ │ ├── StrictRules
│ │ │ │ ├── CreditCardRules.php
│ │ │ │ ├── FileRules.php
│ │ │ │ ├── FormatRules.php
│ │ │ │ └── Rules.php
│ │ │ ├── Validation.php
│ │ │ ├── ValidationInterface.php
│ │ │ └── Views
│ │ │ │ ├── list.php
│ │ │ │ └── single.php
│ │ ├── View
│ │ │ ├── Cell.php
│ │ │ ├── Exceptions
│ │ │ │ └── ViewException.php
│ │ │ ├── Filters.php
│ │ │ ├── Parser.php
│ │ │ ├── Plugins.php
│ │ │ ├── RendererInterface.php
│ │ │ ├── Table.php
│ │ │ ├── View.php
│ │ │ ├── ViewDecoratorInterface.php
│ │ │ └── ViewDecoratorTrait.php
│ │ ├── bootstrap.php
│ │ └── index.html
│ └── writable
│ │ ├── .htaccess
│ │ ├── cache
│ │ └── index.html
│ │ ├── logs
│ │ └── index.html
│ │ ├── session
│ │ └── index.html
│ │ └── uploads
│ │ └── index.html
└── robots.txt
├── system
├── .htaccess
├── API
│ └── ResponseTrait.php
├── Autoloader
│ ├── Autoloader.php
│ └── FileLocator.php
├── BaseModel.php
├── CLI
│ ├── BaseCommand.php
│ ├── CLI.php
│ ├── CommandRunner.php
│ ├── Commands.php
│ ├── Console.php
│ ├── Exceptions
│ │ └── CLIException.php
│ └── GeneratorTrait.php
├── Cache
│ ├── CacheFactory.php
│ ├── CacheInterface.php
│ ├── Exceptions
│ │ ├── CacheException.php
│ │ └── ExceptionInterface.php
│ └── Handlers
│ │ ├── BaseHandler.php
│ │ ├── DummyHandler.php
│ │ ├── FileHandler.php
│ │ ├── MemcachedHandler.php
│ │ ├── PredisHandler.php
│ │ ├── RedisHandler.php
│ │ └── WincacheHandler.php
├── CodeIgniter.php
├── Commands
│ ├── Cache
│ │ ├── ClearCache.php
│ │ └── InfoCache.php
│ ├── Database
│ │ ├── CreateDatabase.php
│ │ ├── Migrate.php
│ │ ├── MigrateRefresh.php
│ │ ├── MigrateRollback.php
│ │ ├── MigrateStatus.php
│ │ ├── Seed.php
│ │ └── ShowTableInfo.php
│ ├── Encryption
│ │ └── GenerateKey.php
│ ├── Generators
│ │ ├── CommandGenerator.php
│ │ ├── ConfigGenerator.php
│ │ ├── ControllerGenerator.php
│ │ ├── EntityGenerator.php
│ │ ├── FilterGenerator.php
│ │ ├── MigrateCreate.php
│ │ ├── MigrationGenerator.php
│ │ ├── ModelGenerator.php
│ │ ├── ScaffoldGenerator.php
│ │ ├── SeederGenerator.php
│ │ ├── SessionMigrationGenerator.php
│ │ ├── ValidationGenerator.php
│ │ └── Views
│ │ │ ├── command.tpl.php
│ │ │ ├── config.tpl.php
│ │ │ ├── controller.tpl.php
│ │ │ ├── entity.tpl.php
│ │ │ ├── filter.tpl.php
│ │ │ ├── migration.tpl.php
│ │ │ ├── model.tpl.php
│ │ │ ├── seeder.tpl.php
│ │ │ └── validation.tpl.php
│ ├── Help.php
│ ├── Housekeeping
│ │ ├── ClearDebugbar.php
│ │ └── ClearLogs.php
│ ├── ListCommands.php
│ ├── Server
│ │ ├── Serve.php
│ │ └── rewrite.php
│ └── Utilities
│ │ ├── Environment.php
│ │ ├── Namespaces.php
│ │ ├── Publish.php
│ │ ├── Routes.php
│ │ └── Routes
│ │ ├── AutoRouteCollector.php
│ │ ├── AutoRouterImproved
│ │ ├── AutoRouteCollector.php
│ │ └── ControllerMethodReader.php
│ │ ├── ControllerFinder.php
│ │ ├── ControllerMethodReader.php
│ │ ├── FilterCollector.php
│ │ ├── FilterFinder.php
│ │ └── SampleURIGenerator.php
├── Common.php
├── ComposerScripts.php
├── Config
│ ├── AutoloadConfig.php
│ ├── BaseConfig.php
│ ├── BaseService.php
│ ├── Config.php
│ ├── DotEnv.php
│ ├── Factories.php
│ ├── Factory.php
│ ├── ForeignCharacters.php
│ ├── Publisher.php
│ ├── Routes.php
│ ├── Services.php
│ └── View.php
├── Controller.php
├── Cookie
│ ├── CloneableCookieInterface.php
│ ├── Cookie.php
│ ├── CookieInterface.php
│ ├── CookieStore.php
│ └── Exceptions
│ │ └── CookieException.php
├── Database
│ ├── BaseBuilder.php
│ ├── BaseConnection.php
│ ├── BasePreparedQuery.php
│ ├── BaseResult.php
│ ├── BaseUtils.php
│ ├── Config.php
│ ├── ConnectionInterface.php
│ ├── Database.php
│ ├── Exceptions
│ │ ├── DataException.php
│ │ ├── DatabaseException.php
│ │ └── ExceptionInterface.php
│ ├── Forge.php
│ ├── Migration.php
│ ├── MigrationRunner.php
│ ├── ModelFactory.php
│ ├── MySQLi
│ │ ├── Builder.php
│ │ ├── Connection.php
│ │ ├── Forge.php
│ │ ├── PreparedQuery.php
│ │ ├── Result.php
│ │ └── Utils.php
│ ├── OCI8
│ │ ├── Builder.php
│ │ ├── Connection.php
│ │ ├── Forge.php
│ │ ├── PreparedQuery.php
│ │ ├── Result.php
│ │ └── Utils.php
│ ├── Postgre
│ │ ├── Builder.php
│ │ ├── Connection.php
│ │ ├── Forge.php
│ │ ├── PreparedQuery.php
│ │ ├── Result.php
│ │ └── Utils.php
│ ├── PreparedQueryInterface.php
│ ├── Query.php
│ ├── QueryInterface.php
│ ├── RawSql.php
│ ├── ResultInterface.php
│ ├── SQLSRV
│ │ ├── Builder.php
│ │ ├── Connection.php
│ │ ├── Forge.php
│ │ ├── PreparedQuery.php
│ │ ├── Result.php
│ │ └── Utils.php
│ ├── SQLite3
│ │ ├── Builder.php
│ │ ├── Connection.php
│ │ ├── Forge.php
│ │ ├── PreparedQuery.php
│ │ ├── Result.php
│ │ ├── Table.php
│ │ └── Utils.php
│ └── Seeder.php
├── Debug
│ ├── Exceptions.php
│ ├── Iterator.php
│ ├── Timer.php
│ ├── Toolbar.php
│ └── Toolbar
│ │ ├── Collectors
│ │ ├── BaseCollector.php
│ │ ├── Config.php
│ │ ├── Database.php
│ │ ├── Events.php
│ │ ├── Files.php
│ │ ├── History.php
│ │ ├── Logs.php
│ │ ├── Routes.php
│ │ ├── Timers.php
│ │ └── Views.php
│ │ └── Views
│ │ ├── _config.tpl
│ │ ├── _database.tpl
│ │ ├── _events.tpl
│ │ ├── _files.tpl
│ │ ├── _history.tpl
│ │ ├── _logs.tpl
│ │ ├── _routes.tpl
│ │ ├── toolbar.css
│ │ ├── toolbar.js
│ │ ├── toolbar.tpl.php
│ │ └── toolbarloader.js
├── Email
│ └── Email.php
├── Encryption
│ ├── EncrypterInterface.php
│ ├── Encryption.php
│ ├── Exceptions
│ │ └── EncryptionException.php
│ └── Handlers
│ │ ├── BaseHandler.php
│ │ ├── OpenSSLHandler.php
│ │ └── SodiumHandler.php
├── Entity.php
├── Entity
│ ├── Cast
│ │ ├── ArrayCast.php
│ │ ├── BaseCast.php
│ │ ├── BooleanCast.php
│ │ ├── CSVCast.php
│ │ ├── CastInterface.php
│ │ ├── DatetimeCast.php
│ │ ├── FloatCast.php
│ │ ├── IntegerCast.php
│ │ ├── JsonCast.php
│ │ ├── ObjectCast.php
│ │ ├── StringCast.php
│ │ ├── TimestampCast.php
│ │ └── URICast.php
│ ├── Entity.php
│ └── Exceptions
│ │ └── CastException.php
├── Events
│ └── Events.php
├── Exceptions
│ ├── AlertError.php
│ ├── CastException.php
│ ├── ConfigException.php
│ ├── CriticalError.php
│ ├── DebugTraceableTrait.php
│ ├── DownloadException.php
│ ├── EmergencyError.php
│ ├── ExceptionInterface.php
│ ├── FrameworkException.php
│ ├── ModelException.php
│ ├── PageNotFoundException.php
│ └── TestException.php
├── Files
│ ├── Exceptions
│ │ ├── FileException.php
│ │ └── FileNotFoundException.php
│ ├── File.php
│ └── FileCollection.php
├── Filters
│ ├── CSRF.php
│ ├── DebugToolbar.php
│ ├── Exceptions
│ │ └── FilterException.php
│ ├── FilterInterface.php
│ ├── Filters.php
│ ├── Honeypot.php
│ ├── InvalidChars.php
│ └── SecureHeaders.php
├── Format
│ ├── Exceptions
│ │ └── FormatException.php
│ ├── Format.php
│ ├── FormatterInterface.php
│ ├── JSONFormatter.php
│ └── XMLFormatter.php
├── HTTP
│ ├── CLIRequest.php
│ ├── CURLRequest.php
│ ├── ContentSecurityPolicy.php
│ ├── DownloadResponse.php
│ ├── Exceptions
│ │ └── HTTPException.php
│ ├── Files
│ │ ├── FileCollection.php
│ │ ├── UploadedFile.php
│ │ └── UploadedFileInterface.php
│ ├── Header.php
│ ├── IncomingRequest.php
│ ├── Message.php
│ ├── MessageInterface.php
│ ├── MessageTrait.php
│ ├── Negotiate.php
│ ├── RedirectResponse.php
│ ├── Request.php
│ ├── RequestInterface.php
│ ├── RequestTrait.php
│ ├── Response.php
│ ├── ResponseInterface.php
│ ├── ResponseTrait.php
│ ├── URI.php
│ └── UserAgent.php
├── Helpers
│ ├── array_helper.php
│ ├── cookie_helper.php
│ ├── date_helper.php
│ ├── filesystem_helper.php
│ ├── form_helper.php
│ ├── html_helper.php
│ ├── inflector_helper.php
│ ├── number_helper.php
│ ├── security_helper.php
│ ├── test_helper.php
│ ├── text_helper.php
│ ├── url_helper.php
│ └── xml_helper.php
├── Honeypot
│ ├── Exceptions
│ │ └── HoneypotException.php
│ └── Honeypot.php
├── I18n
│ ├── Exceptions
│ │ └── I18nException.php
│ ├── Time.php
│ └── TimeDifference.php
├── Images
│ ├── Exceptions
│ │ └── ImageException.php
│ ├── Handlers
│ │ ├── BaseHandler.php
│ │ ├── GDHandler.php
│ │ └── ImageMagickHandler.php
│ ├── Image.php
│ └── ImageHandlerInterface.php
├── Language
│ ├── Language.php
│ └── en
│ │ ├── CLI.php
│ │ ├── Cache.php
│ │ ├── Cast.php
│ │ ├── Cookie.php
│ │ ├── Core.php
│ │ ├── Database.php
│ │ ├── Email.php
│ │ ├── Encryption.php
│ │ ├── Fabricator.php
│ │ ├── Files.php
│ │ ├── Filters.php
│ │ ├── Format.php
│ │ ├── HTTP.php
│ │ ├── Images.php
│ │ ├── Log.php
│ │ ├── Migrations.php
│ │ ├── Number.php
│ │ ├── Pager.php
│ │ ├── Publisher.php
│ │ ├── RESTful.php
│ │ ├── Router.php
│ │ ├── Security.php
│ │ ├── Session.php
│ │ ├── Test.php
│ │ ├── Time.php
│ │ ├── Validation.php
│ │ └── View.php
├── Log
│ ├── Exceptions
│ │ └── LogException.php
│ ├── Handlers
│ │ ├── BaseHandler.php
│ │ ├── ChromeLoggerHandler.php
│ │ ├── ErrorlogHandler.php
│ │ ├── FileHandler.php
│ │ └── HandlerInterface.php
│ └── Logger.php
├── Model.php
├── Modules
│ └── Modules.php
├── Pager
│ ├── Exceptions
│ │ └── PagerException.php
│ ├── Pager.php
│ ├── PagerInterface.php
│ ├── PagerRenderer.php
│ └── Views
│ │ ├── default_full.php
│ │ ├── default_head.php
│ │ └── default_simple.php
├── Publisher
│ ├── Exceptions
│ │ └── PublisherException.php
│ └── Publisher.php
├── RESTful
│ ├── BaseResource.php
│ ├── ResourceController.php
│ └── ResourcePresenter.php
├── Router
│ ├── AutoRouter.php
│ ├── AutoRouterImproved.php
│ ├── AutoRouterInterface.php
│ ├── Exceptions
│ │ ├── RedirectException.php
│ │ └── RouterException.php
│ ├── RouteCollection.php
│ ├── RouteCollectionInterface.php
│ ├── Router.php
│ └── RouterInterface.php
├── Security
│ ├── Exceptions
│ │ └── SecurityException.php
│ ├── Security.php
│ └── SecurityInterface.php
├── Session
│ ├── Exceptions
│ │ └── SessionException.php
│ ├── Handlers
│ │ ├── ArrayHandler.php
│ │ ├── BaseHandler.php
│ │ ├── Database
│ │ │ ├── MySQLiHandler.php
│ │ │ └── PostgreHandler.php
│ │ ├── DatabaseHandler.php
│ │ ├── FileHandler.php
│ │ ├── MemcachedHandler.php
│ │ └── RedisHandler.php
│ ├── Session.php
│ └── SessionInterface.php
├── Test
│ ├── CIDatabaseTestCase.php
│ ├── CIUnitTestCase.php
│ ├── ConfigFromArrayTrait.php
│ ├── Constraints
│ │ └── SeeInDatabase.php
│ ├── ControllerResponse.php
│ ├── ControllerTestTrait.php
│ ├── ControllerTester.php
│ ├── DOMParser.php
│ ├── DatabaseTestTrait.php
│ ├── Fabricator.php
│ ├── FeatureResponse.php
│ ├── FeatureTestCase.php
│ ├── FeatureTestTrait.php
│ ├── FilterTestTrait.php
│ ├── Filters
│ │ └── CITestStreamFilter.php
│ ├── Interfaces
│ │ └── FabricatorModel.php
│ ├── Mock
│ │ ├── MockAppConfig.php
│ │ ├── MockAutoload.php
│ │ ├── MockBuilder.php
│ │ ├── MockCLIConfig.php
│ │ ├── MockCURLRequest.php
│ │ ├── MockCache.php
│ │ ├── MockCodeIgniter.php
│ │ ├── MockCommon.php
│ │ ├── MockConnection.php
│ │ ├── MockEmail.php
│ │ ├── MockEvents.php
│ │ ├── MockFileLogger.php
│ │ ├── MockIncomingRequest.php
│ │ ├── MockLanguage.php
│ │ ├── MockLogger.php
│ │ ├── MockQuery.php
│ │ ├── MockResourceController.php
│ │ ├── MockResourcePresenter.php
│ │ ├── MockResponse.php
│ │ ├── MockResult.php
│ │ ├── MockSecurity.php
│ │ ├── MockSecurityConfig.php
│ │ ├── MockServices.php
│ │ ├── MockSession.php
│ │ └── MockTable.php
│ ├── ReflectionHelper.php
│ ├── TestLogger.php
│ ├── TestResponse.php
│ └── bootstrap.php
├── ThirdParty
│ ├── Escaper
│ │ ├── Escaper.php
│ │ ├── Exception
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ └── RuntimeException.php
│ │ └── LICENSE.md
│ ├── Kint
│ │ ├── CallFinder.php
│ │ ├── Kint.php
│ │ ├── LICENSE
│ │ ├── Parser
│ │ │ ├── ArrayLimitPlugin.php
│ │ │ ├── ArrayObjectPlugin.php
│ │ │ ├── Base64Plugin.php
│ │ │ ├── BinaryPlugin.php
│ │ │ ├── BlacklistPlugin.php
│ │ │ ├── ClassMethodsPlugin.php
│ │ │ ├── ClassStaticsPlugin.php
│ │ │ ├── ClosurePlugin.php
│ │ │ ├── ColorPlugin.php
│ │ │ ├── DOMDocumentPlugin.php
│ │ │ ├── DateTimePlugin.php
│ │ │ ├── EnumPlugin.php
│ │ │ ├── FsPathPlugin.php
│ │ │ ├── IteratorPlugin.php
│ │ │ ├── JsonPlugin.php
│ │ │ ├── MicrotimePlugin.php
│ │ │ ├── MysqliPlugin.php
│ │ │ ├── Parser.php
│ │ │ ├── Plugin.php
│ │ │ ├── ProxyPlugin.php
│ │ │ ├── SerializePlugin.php
│ │ │ ├── SimpleXMLElementPlugin.php
│ │ │ ├── SplFileInfoPlugin.php
│ │ │ ├── SplObjectStoragePlugin.php
│ │ │ ├── StreamPlugin.php
│ │ │ ├── TablePlugin.php
│ │ │ ├── ThrowablePlugin.php
│ │ │ ├── TimestampPlugin.php
│ │ │ ├── ToStringPlugin.php
│ │ │ ├── TracePlugin.php
│ │ │ └── XmlPlugin.php
│ │ ├── Renderer
│ │ │ ├── CliRenderer.php
│ │ │ ├── PlainRenderer.php
│ │ │ ├── Renderer.php
│ │ │ ├── Rich
│ │ │ │ ├── ArrayLimitPlugin.php
│ │ │ │ ├── BinaryPlugin.php
│ │ │ │ ├── BlacklistPlugin.php
│ │ │ │ ├── CallablePlugin.php
│ │ │ │ ├── ClosurePlugin.php
│ │ │ │ ├── ColorPlugin.php
│ │ │ │ ├── DepthLimitPlugin.php
│ │ │ │ ├── DocstringPlugin.php
│ │ │ │ ├── MicrotimePlugin.php
│ │ │ │ ├── Plugin.php
│ │ │ │ ├── PluginInterface.php
│ │ │ │ ├── RecursionPlugin.php
│ │ │ │ ├── SimpleXMLElementPlugin.php
│ │ │ │ ├── SourcePlugin.php
│ │ │ │ ├── TabPluginInterface.php
│ │ │ │ ├── TablePlugin.php
│ │ │ │ ├── TimestampPlugin.php
│ │ │ │ ├── TraceFramePlugin.php
│ │ │ │ └── ValuePluginInterface.php
│ │ │ ├── RichRenderer.php
│ │ │ ├── Text
│ │ │ │ ├── ArrayLimitPlugin.php
│ │ │ │ ├── BlacklistPlugin.php
│ │ │ │ ├── DepthLimitPlugin.php
│ │ │ │ ├── EnumPlugin.php
│ │ │ │ ├── MicrotimePlugin.php
│ │ │ │ ├── Plugin.php
│ │ │ │ ├── RecursionPlugin.php
│ │ │ │ └── TracePlugin.php
│ │ │ └── TextRenderer.php
│ │ ├── Utils.php
│ │ ├── Zval
│ │ │ ├── BlobValue.php
│ │ │ ├── ClosureValue.php
│ │ │ ├── DateTimeValue.php
│ │ │ ├── EnumValue.php
│ │ │ ├── InstanceValue.php
│ │ │ ├── MethodValue.php
│ │ │ ├── ParameterValue.php
│ │ │ ├── Representation
│ │ │ │ ├── ColorRepresentation.php
│ │ │ │ ├── DocstringRepresentation.php
│ │ │ │ ├── MicrotimeRepresentation.php
│ │ │ │ ├── Representation.php
│ │ │ │ ├── SourceRepresentation.php
│ │ │ │ └── SplFileInfoRepresentation.php
│ │ │ ├── ResourceValue.php
│ │ │ ├── SimpleXMLElementValue.php
│ │ │ ├── StreamValue.php
│ │ │ ├── ThrowableValue.php
│ │ │ ├── TraceFrameValue.php
│ │ │ ├── TraceValue.php
│ │ │ └── Value.php
│ │ ├── init.php
│ │ ├── init_helpers.php
│ │ └── resources
│ │ │ └── compiled
│ │ │ ├── aante-light.css
│ │ │ ├── microtime.js
│ │ │ ├── original.css
│ │ │ ├── plain.css
│ │ │ ├── plain.js
│ │ │ ├── rich.js
│ │ │ ├── shared.js
│ │ │ ├── solarized-dark.css
│ │ │ └── solarized.css
│ └── PSR
│ │ └── Log
│ │ ├── AbstractLogger.php
│ │ ├── InvalidArgumentException.php
│ │ ├── LICENSE
│ │ ├── LogLevel.php
│ │ ├── LoggerAwareInterface.php
│ │ ├── LoggerAwareTrait.php
│ │ ├── LoggerInterface.php
│ │ ├── LoggerTrait.php
│ │ └── NullLogger.php
├── Throttle
│ ├── Throttler.php
│ └── ThrottlerInterface.php
├── Typography
│ └── Typography.php
├── Validation
│ ├── CreditCardRules.php
│ ├── Exceptions
│ │ └── ValidationException.php
│ ├── FileRules.php
│ ├── FormatRules.php
│ ├── Rules.php
│ ├── StrictRules
│ │ ├── CreditCardRules.php
│ │ ├── FileRules.php
│ │ ├── FormatRules.php
│ │ └── Rules.php
│ ├── Validation.php
│ ├── ValidationInterface.php
│ └── Views
│ │ ├── list.php
│ │ └── single.php
├── View
│ ├── Cell.php
│ ├── Exceptions
│ │ └── ViewException.php
│ ├── Filters.php
│ ├── Parser.php
│ ├── Plugins.php
│ ├── RendererInterface.php
│ ├── Table.php
│ ├── View.php
│ ├── ViewDecoratorInterface.php
│ └── ViewDecoratorTrait.php
├── bootstrap.php
└── index.html
├── theme_admin
├── com_example
│ └── Test
│ │ ├── Config
│ │ └── Routes.php
│ │ ├── Controllers
│ │ └── Admin
│ │ │ └── Appearance
│ │ │ └── Admin
│ │ │ └── Theme
│ │ │ └── com_example
│ │ │ └── Test.php
│ │ ├── Language
│ │ └── en
│ │ │ ├── Heading.php
│ │ │ └── Text.php
│ │ ├── Views
│ │ ├── Appearance
│ │ │ └── Admin
│ │ │ │ └── Theme
│ │ │ │ └── com_example
│ │ │ │ └── test.php
│ │ └── Common
│ │ │ └── header.php
│ │ └── assets
│ │ └── admin
│ │ └── theme
│ │ └── com_example
│ │ └── Test
│ │ └── images
│ │ └── test.png
└── com_openmvm
│ └── Basic
│ ├── Config
│ └── Routes.php
│ ├── Controllers
│ └── Admin
│ │ └── Appearance
│ │ └── Admin
│ │ └── Theme
│ │ └── com_openmvm
│ │ └── Basic.php
│ ├── Language
│ └── en
│ │ ├── Heading.php
│ │ └── Text.php
│ └── Views
│ ├── Administrator
│ ├── administrator_form.php
│ ├── administrator_group_form.php
│ ├── administrator_group_list.php
│ ├── administrator_list.php
│ ├── login.php
│ └── logout.php
│ ├── Appearance
│ ├── Admin
│ │ ├── Theme
│ │ │ └── com_openmvm
│ │ │ │ └── basic.php
│ │ └── theme.php
│ └── Marketplace
│ │ ├── Widgets
│ │ ├── category.php
│ │ ├── html_content.php
│ │ ├── link.php
│ │ ├── page.php
│ │ ├── seller_bestseller_product.php
│ │ ├── seller_category.php
│ │ ├── seller_dashboard_chart.php
│ │ ├── seller_dashboard_latest_order.php
│ │ ├── seller_dashboard_stat.php
│ │ ├── seller_description.php
│ │ ├── seller_faq.php
│ │ ├── seller_featured_product.php
│ │ ├── seller_latest_product.php
│ │ ├── seller_menu.php
│ │ └── seller_special_product.php
│ │ ├── layout_form.php
│ │ ├── layout_list.php
│ │ ├── theme.php
│ │ └── widget.php
│ ├── Common
│ ├── column_left.php
│ ├── dashboard.php
│ ├── footer.php
│ ├── header.php
│ └── permission.php
│ ├── Component
│ ├── Analytics
│ │ └── google_analytics_4.php
│ ├── Component
│ │ ├── analytics.php
│ │ ├── order_total.php
│ │ ├── payment_method.php
│ │ └── shipping_method.php
│ ├── Order_Total
│ │ ├── shipping.php
│ │ ├── sub_total.php
│ │ └── total.php
│ ├── Payment_Method
│ │ ├── bank_transfer.php
│ │ ├── cash_on_delivery.php
│ │ ├── free_checkout.php
│ │ └── wallet.php
│ └── Shipping_Method
│ │ ├── flat_rate.php
│ │ ├── weight_based.php
│ │ └── zone_based.php
│ ├── Customer
│ ├── customer_form.php
│ ├── customer_group_form.php
│ ├── customer_group_list.php
│ ├── customer_list.php
│ └── wallet.php
│ ├── Developer
│ ├── demo_manager.php
│ ├── language_editor_form.php
│ └── language_editor_list.php
│ ├── File_Manager
│ ├── image_manager.php
│ └── image_manager_workspace.php
│ ├── Localisation
│ ├── country_form.php
│ ├── country_list.php
│ ├── currency_form.php
│ ├── currency_list.php
│ ├── geo_zone_form.php
│ ├── geo_zone_list.php
│ ├── language_form.php
│ ├── language_list.php
│ ├── length_class_form.php
│ ├── length_class_list.php
│ ├── order_status_form.php
│ ├── order_status_list.php
│ ├── weight_class_form.php
│ ├── weight_class_list.php
│ ├── zone_form.php
│ └── zone_list.php
│ ├── Marketplace
│ ├── category_form.php
│ ├── category_list.php
│ ├── order_info.php
│ ├── order_list.php
│ └── order_status_history.php
│ ├── Page
│ ├── page_form.php
│ └── page_list.php
│ ├── Plugin
│ └── plugin.php
│ └── System
│ ├── error_log.php
│ ├── performance.php
│ └── setting.php
├── theme_marketplace
├── com_example
│ └── Test
│ │ ├── Config
│ │ └── Routes.php
│ │ ├── Controllers
│ │ └── Admin
│ │ │ └── Appearance
│ │ │ └── Marketplace
│ │ │ └── Theme
│ │ │ └── com_example
│ │ │ └── Test.php
│ │ ├── Language
│ │ └── en
│ │ │ ├── Heading.php
│ │ │ └── Text.php
│ │ ├── Views
│ │ ├── Admin
│ │ │ └── Appearance
│ │ │ │ └── Marketplace
│ │ │ │ └── Theme
│ │ │ │ └── com_example
│ │ │ │ └── test.php
│ │ └── Common
│ │ │ └── header.php
│ │ └── assets
│ │ └── marketplace
│ │ └── theme
│ │ └── com_example
│ │ └── Test
│ │ └── images
│ │ └── test.png
└── com_openmvm
│ └── Basic
│ ├── Config
│ └── Routes.php
│ ├── Controllers
│ └── Admin
│ │ └── Appearance
│ │ └── Marketplace
│ │ └── Theme
│ │ └── com_openmvm
│ │ └── Basic.php
│ └── Views
│ ├── Account
│ ├── account.php
│ ├── address_form.php
│ ├── address_list.php
│ ├── login.php
│ ├── logout.php
│ ├── order_info.php
│ ├── order_list.php
│ ├── product_download.php
│ ├── product_review_form.php
│ ├── product_review_list.php
│ ├── profile.php
│ ├── register.php
│ ├── reset_password.php
│ ├── reset_password_confirm.php
│ ├── wallet.php
│ └── wishlist.php
│ ├── Admin
│ └── Appearance
│ │ └── Marketplace
│ │ └── Theme
│ │ └── com_openmvm
│ │ └── basic.php
│ ├── Appearance
│ └── Marketplace
│ │ └── Widgets
│ │ ├── category.php
│ │ ├── html_content.php
│ │ ├── link.php
│ │ ├── page.php
│ │ ├── seller_bestseller_product.php
│ │ ├── seller_category.php
│ │ ├── seller_dashboard_chart.php
│ │ ├── seller_dashboard_latest_order.php
│ │ ├── seller_dashboard_stat.php
│ │ ├── seller_description.php
│ │ ├── seller_faq.php
│ │ ├── seller_featured_product.php
│ │ ├── seller_latest_product.php
│ │ ├── seller_menu.php
│ │ └── seller_special_product.php
│ ├── Checkout
│ ├── cart.php
│ ├── checkout.php
│ ├── checkout_cart.php
│ ├── checkout_confirm.php
│ ├── checkout_payment_address.php
│ ├── checkout_payment_method.php
│ ├── checkout_shipping_address.php
│ ├── checkout_shipping_method.php
│ └── success.php
│ ├── Common
│ ├── cart.php
│ ├── currency.php
│ ├── error.php
│ ├── footer.php
│ ├── header.php
│ ├── home.php
│ ├── language.php
│ ├── offcanvas_left.php
│ ├── offcanvas_right.php
│ ├── search.php
│ └── wallet.php
│ ├── Component
│ └── Payment_Method
│ │ ├── bank_transfer.php
│ │ ├── cash_on_delivery.php
│ │ ├── free_checkout.php
│ │ └── wallet.php
│ ├── Mail
│ └── Account
│ │ └── reset_password.php
│ ├── Page
│ ├── page.php
│ └── page_info.php
│ ├── Product
│ ├── category.php
│ ├── category_all.php
│ ├── customer_question.php
│ ├── customer_question_answer.php
│ ├── customer_question_list.php
│ ├── product.php
│ ├── product_all.php
│ ├── product_question.php
│ ├── product_review.php
│ └── search.php
│ └── Seller
│ ├── Component
│ └── shipping_method.php
│ ├── Localisation
│ ├── geo_zone_form.php
│ └── geo_zone_list.php
│ ├── Shipping_Method
│ ├── flat_rate.php
│ ├── weight_based.php
│ └── zone_based.php
│ ├── dashboard.php
│ ├── edit.php
│ ├── option_form.php
│ ├── option_list.php
│ ├── order_info.php
│ ├── order_list.php
│ ├── product_form.php
│ ├── product_list.php
│ ├── product_question_answer.php
│ ├── product_question_form.php
│ ├── product_question_list.php
│ ├── product_variant.php
│ ├── product_variant_discount.php
│ ├── product_variant_special.php
│ ├── register.php
│ ├── search.php
│ ├── seller.php
│ ├── seller_category_form.php
│ ├── seller_category_info.php
│ ├── seller_category_list.php
│ ├── seller_faq_form.php
│ ├── seller_faq_list.php
│ ├── seller_info.php
│ └── seller_product.php
└── writable
├── .htaccess
├── cache
└── index.html
├── debugbar
└── .gitkeep
├── downloads
└── index.html
├── logs
└── index.html
├── session
└── index.html
├── temp
└── index.html
└── uploads
└── index.html
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: openmvm
--------------------------------------------------------------------------------
/app/.htaccess:
--------------------------------------------------------------------------------
1 |
We seem to have hit a snag. Please try again later...
20 | 21 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /main/marketplace/Controllers/Account/Logout.php: -------------------------------------------------------------------------------- 1 | session->remove('shopping_cart_key'); 18 | 19 | // Logged out customer 20 | $this->customer->logout(); 21 | 22 | $this->session->set('success', lang('Success.logout', [], $this->language->getCurrentCode())); 23 | 24 | return redirect()->to('marketplace/account/login'); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /plugins/com_example/Widget_Blank/Language/en/Heading.php: -------------------------------------------------------------------------------- 1 | 'Blank', 6 | ]; 7 | -------------------------------------------------------------------------------- /plugins/com_example/Widget_Blank/Language/en/Text.php: -------------------------------------------------------------------------------- 1 | 'Blank', 6 | 'widget_blank' => 'Widget Blank', 7 | 'example_widget_blank_description' => 'Blank widget developed by example.com.', 8 | ]; 9 | -------------------------------------------------------------------------------- /plugins/com_example/Widget_Blank/Views/Marketplace/Appearance/Marketplace/Widgets/blank.php: -------------------------------------------------------------------------------- 1 |Please rename both env files in root and in public/install folder to .env.
14 |Click here after renaming those files to start the installation process.
15 | 16 | -------------------------------------------------------------------------------- /public/install/app/Views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |We seem to have hit a snag. Please try again later...
20 | 21 |