gitextract_8j091w8s/ ├── .circleci/ │ └── config.yml ├── .coveralls.yml ├── .devcontainer/ │ └── devcontainer.json ├── .gitattributes ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── build.xml ├── composer.json ├── config/ │ ├── default.php │ └── shop.php ├── phpunit.xml.dist ├── routes/ │ └── aimeos.php ├── src/ │ ├── Base/ │ │ ├── Aimeos.php │ │ ├── Config.php │ │ ├── Context.php │ │ ├── I18n.php │ │ ├── Locale.php │ │ ├── Shop.php │ │ ├── Support.php │ │ └── View.php │ ├── Command/ │ │ ├── AbstractCommand.php │ │ ├── AccountCommand.php │ │ ├── ClearCommand.php │ │ ├── JobsCommand.php │ │ └── SetupCommand.php │ ├── Composer.php │ ├── Controller/ │ │ ├── AccountController.php │ │ ├── AdminController.php │ │ ├── BasketController.php │ │ ├── CatalogController.php │ │ ├── CheckoutController.php │ │ ├── GraphqlController.php │ │ ├── JqadmController.php │ │ ├── JsonadmController.php │ │ ├── JsonapiController.php │ │ ├── PageController.php │ │ ├── ResolveController.php │ │ └── SupplierController.php │ ├── Facades/ │ │ ├── Attribute.php │ │ ├── Basket.php │ │ ├── Catalog.php │ │ ├── Cms.php │ │ ├── Customer.php │ │ ├── Locale.php │ │ ├── Order.php │ │ ├── Product.php │ │ ├── Service.php │ │ ├── Shop.php │ │ ├── Stock.php │ │ ├── Subscription.php │ │ └── Supplier.php │ ├── ShopServiceProvider.php │ └── helpers.php ├── tests/ │ ├── AimeosTestAbstract.php │ ├── Base/ │ │ ├── AimeosTest.php │ │ ├── ConfigTest.php │ │ ├── ContextTest.php │ │ ├── I18nTest.php │ │ ├── LocaleTest.php │ │ ├── SupportTest.php │ │ └── ViewTest.php │ ├── Command/ │ │ ├── AccountCommandTest.php │ │ ├── ClearCommandTest.php │ │ ├── JobsCommandTest.php │ │ └── SetupCommandTest.php │ ├── Controller/ │ │ ├── AccountControllerTest.php │ │ ├── AdminControllerTest.php │ │ ├── BasketControllerTest.php │ │ ├── CatalogControllerTest.php │ │ ├── CheckoutControllerTest.php │ │ ├── GraphqlControllerTest.php │ │ ├── JqadmControllerTest.php │ │ ├── JsonadmControllerTest.php │ │ ├── JsonapiControllerTest.php │ │ ├── PageControllerTest.php │ │ ├── ResolveControllerTest.php │ │ └── SupplierControllerTest.php │ ├── FacadesTest.php │ ├── HelpersTest.php │ └── fixtures/ │ └── views/ │ └── app.blade.php └── views/ ├── account/ │ └── index.blade.php ├── admin/ │ └── index.blade.php ├── base.blade.php ├── basket/ │ └── index.blade.php ├── catalog/ │ ├── count.blade.php │ ├── detail.blade.php │ ├── home.blade.php │ ├── list.blade.php │ ├── session.blade.php │ ├── stock.blade.php │ ├── suggest.blade.php │ └── tree.blade.php ├── checkout/ │ ├── confirm.blade.php │ ├── index.blade.php │ └── update.blade.php ├── jqadm/ │ └── index.blade.php ├── page/ │ └── index.blade.php └── supplier/ └── detail.blade.php