├── .gitattributes ├── Checkout ├── Cart │ ├── AbstractCartPersister.php │ ├── AbstractRuleLoader.php │ ├── Address │ │ ├── AddressValidator.php │ │ └── Error │ │ │ ├── AddressErrorInterface.php │ │ │ ├── AddressValidationError.php │ │ │ ├── BillingAddressBlockedError.php │ │ │ ├── BillingAddressCountryRegionMissingError.php │ │ │ ├── BillingAddressSalutationMissingError.php │ │ │ ├── CountryRegionMissingError.php │ │ │ ├── SalutationMissingError.php │ │ │ ├── ShippingAddressBlockedError.php │ │ │ ├── ShippingAddressCountryRegionMissingError.php │ │ │ └── ShippingAddressSalutationMissingError.php │ ├── ApiOrderCartService.php │ ├── CachedRuleLoader.php │ ├── Calculator.php │ ├── Cart.php │ ├── CartBehavior.php │ ├── CartCalculator.php │ ├── CartCompressor.php │ ├── CartContextHashStruct.php │ ├── CartContextHasher.php │ ├── CartDataCollectorInterface.php │ ├── CartException.php │ ├── CartFactory.php │ ├── CartLocker.php │ ├── CartPersister.php │ ├── CartProcessorInterface.php │ ├── CartRuleLoader.php │ ├── CartSerializationCleaner.php │ ├── CartValidatorInterface.php │ ├── CartValueResolver.php │ ├── Cleanup │ │ ├── CleanupCartTask.php │ │ └── CleanupCartTaskHandler.php │ ├── Command │ │ └── CartMigrateCommand.php │ ├── CreditCartProcessor.php │ ├── CustomCartProcessor.php │ ├── Delivery │ │ ├── DeliveryBuilder.php │ │ ├── DeliveryCalculator.php │ │ ├── DeliveryProcessor.php │ │ ├── DeliveryValidator.php │ │ └── Struct │ │ │ ├── Delivery.php │ │ │ ├── DeliveryCollection.php │ │ │ ├── DeliveryDate.php │ │ │ ├── DeliveryInformation.php │ │ │ ├── DeliveryPosition.php │ │ │ ├── DeliveryPositionCollection.php │ │ │ ├── DeliveryTime.php │ │ │ └── ShippingLocation.php │ ├── Error │ │ ├── Error.php │ │ ├── ErrorCollection.php │ │ ├── ErrorRoute.php │ │ ├── GenericCartError.php │ │ └── IncompleteLineItemError.php │ ├── Event │ │ ├── AfterLineItemAddedEvent.php │ │ ├── AfterLineItemQuantityChangedEvent.php │ │ ├── AfterLineItemRemovedEvent.php │ │ ├── BeforeCartMergeEvent.php │ │ ├── BeforeLineItemAddedEvent.php │ │ ├── BeforeLineItemQuantityChangedEvent.php │ │ ├── BeforeLineItemRemovedEvent.php │ │ ├── BeforeSalesChannelContextAssembledEvent.php │ │ ├── CartBeforeSerializationEvent.php │ │ ├── CartChangedEvent.php │ │ ├── CartContextHashEvent.php │ │ ├── CartCreatedEvent.php │ │ ├── CartDeletedEvent.php │ │ ├── CartEvent.php │ │ ├── CartLoadedEvent.php │ │ ├── CartMergedEvent.php │ │ ├── CartSavedEvent.php │ │ ├── CartVerifyPersistEvent.php │ │ ├── CheckoutOrderPlacedCriteriaEvent.php │ │ ├── CheckoutOrderPlacedEvent.php │ │ ├── LineItemRemovedEvent.php │ │ └── SalesChannelContextAssembledEvent.php │ ├── Exception │ │ ├── CartTokenNotFoundException.php │ │ ├── CustomerNotLoggedInException.php │ │ ├── InvalidCartException.php │ │ ├── LineItemNotFoundException.php │ │ └── TaxProviderExceptions.php │ ├── Extension │ │ ├── CheckoutCartRuleLoaderExtension.php │ │ └── CheckoutPlaceOrderExtension.php │ ├── Facade │ │ ├── CartFacade.php │ │ ├── CartFacadeHelper.php │ │ ├── CartFacadeHookFactory.php │ │ ├── CartPriceFacade.php │ │ ├── ContainerFacade.php │ │ ├── DiscountFacade.php │ │ ├── ErrorsFacade.php │ │ ├── ItemFacade.php │ │ ├── ItemsFacade.php │ │ ├── PriceFacade.php │ │ ├── PriceFactory.php │ │ ├── PriceFactoryFactory.php │ │ ├── ProductsFacade.php │ │ ├── ScriptPriceStubs.php │ │ ├── StatesFacade.php │ │ └── Traits │ │ │ ├── ContainerFactoryTrait.php │ │ │ ├── DiscountTrait.php │ │ │ ├── ItemsAddTrait.php │ │ │ ├── ItemsCountTrait.php │ │ │ ├── ItemsGetTrait.php │ │ │ ├── ItemsHasTrait.php │ │ │ ├── ItemsIteratorTrait.php │ │ │ ├── ItemsRemoveTrait.php │ │ │ ├── PriceFactoryTrait.php │ │ │ └── SurchargeTrait.php │ ├── Hook │ │ ├── CartAware.php │ │ └── CartHook.php │ ├── LineItem │ │ ├── CartDataCollection.php │ │ ├── Group │ │ │ ├── AbstractProductLineItemProvider.php │ │ │ ├── LineItemGroup.php │ │ │ ├── LineItemGroupBuilder.php │ │ │ ├── LineItemGroupBuilderResult.php │ │ │ ├── LineItemGroupDefinition.php │ │ │ ├── LineItemGroupPackagerInterface.php │ │ │ ├── LineItemGroupRuleMatcherInterface.php │ │ │ ├── LineItemGroupServiceRegistry.php │ │ │ ├── LineItemGroupSorterInterface.php │ │ │ ├── LineItemQuantity.php │ │ │ ├── LineItemQuantityCollection.php │ │ │ ├── Packager │ │ │ │ ├── LineItemGroupCountPackager.php │ │ │ │ ├── LineItemGroupUnitPriceGrossPackager.php │ │ │ │ └── LineItemGroupUnitPriceNetPackager.php │ │ │ ├── ProductLineItemProvider.php │ │ │ ├── RulesMatcher │ │ │ │ ├── AbstractAnyRuleLineItemMatcher.php │ │ │ │ ├── AnyRuleLineItemMatcher.php │ │ │ │ └── AnyRuleMatcher.php │ │ │ └── Sorter │ │ │ │ ├── LineItemGroupPriceAscSorter.php │ │ │ │ └── LineItemGroupPriceDescSorter.php │ │ ├── LineItem.php │ │ ├── LineItemCollection.php │ │ ├── LineItemFlatCollection.php │ │ ├── LineItemQuantitySplitter.php │ │ ├── LineItemValidator.php │ │ └── QuantityInformation.php │ ├── LineItemFactoryHandler │ │ ├── CreditLineItemFactory.php │ │ ├── CustomLineItemFactory.php │ │ ├── LineItemFactoryInterface.php │ │ ├── ProductLineItemFactory.php │ │ └── PromotionLineItemFactory.php │ ├── LineItemFactoryRegistry.php │ ├── Order │ │ ├── Api │ │ │ ├── OrderConverterController.php │ │ │ └── OrderRecalculationController.php │ │ ├── CartConvertedEvent.php │ │ ├── IdStruct.php │ │ ├── LineItemDownloadLoader.php │ │ ├── OrderConversionContext.php │ │ ├── OrderConvertedEvent.php │ │ ├── OrderConverter.php │ │ ├── OrderPersister.php │ │ ├── OrderPersisterInterface.php │ │ ├── OrderPlaceResult.php │ │ ├── RecalculationService.php │ │ └── Transformer │ │ │ ├── AddressTransformer.php │ │ │ ├── CartTransformer.php │ │ │ ├── CustomerTransformer.php │ │ │ ├── DeliveryTransformer.php │ │ │ ├── LineItemTransformer.php │ │ │ └── TransactionTransformer.php │ ├── Price │ │ ├── AbsolutePriceCalculator.php │ │ ├── AmountCalculator.php │ │ ├── CashRounding.php │ │ ├── CurrencyPriceCalculator.php │ │ ├── GrossPriceCalculator.php │ │ ├── NetPriceCalculator.php │ │ ├── PercentagePriceCalculator.php │ │ ├── QuantityPriceCalculator.php │ │ └── Struct │ │ │ ├── AbsolutePriceDefinition.php │ │ │ ├── CalculatedPrice.php │ │ │ ├── CartPrice.php │ │ │ ├── CurrencyPriceDefinition.php │ │ │ ├── FilterableInterface.php │ │ │ ├── ListPrice.php │ │ │ ├── PercentagePriceDefinition.php │ │ │ ├── PriceCollection.php │ │ │ ├── PriceDefinitionCollection.php │ │ │ ├── PriceDefinitionInterface.php │ │ │ ├── QuantityPriceDefinition.php │ │ │ ├── ReferencePrice.php │ │ │ ├── ReferencePriceDefinition.php │ │ │ └── RegulationPrice.php │ ├── PriceActionController.php │ ├── PriceDefinitionFactory.php │ ├── Processor.php │ ├── Processor │ │ ├── ContainerCartProcessor.php │ │ └── DiscountCartProcessor.php │ ├── RedisCartPersister.php │ ├── Rule │ │ ├── AdminSalesChannelSourceRule.php │ │ ├── AffiliateCodeOfOrderRule.php │ │ ├── AlwaysValidRule.php │ │ ├── CampaignCodeOfOrderRule.php │ │ ├── CartAmountRule.php │ │ ├── CartHasDeliveryFreeItemRule.php │ │ ├── CartPositionPriceRule.php │ │ ├── CartRuleScope.php │ │ ├── CartShippingCostRule.php │ │ ├── CartTaxDisplayRule.php │ │ ├── CartTotalPurchasePriceRule.php │ │ ├── CartVolumeRule.php │ │ ├── CartWeightRule.php │ │ ├── GoodsCountRule.php │ │ ├── GoodsPriceRule.php │ │ ├── LineItemActualStockRule.php │ │ ├── LineItemClearanceSaleRule.php │ │ ├── LineItemCreationDateRule.php │ │ ├── LineItemCustomFieldRule.php │ │ ├── LineItemDimensionHeightRule.php │ │ ├── LineItemDimensionLengthRule.php │ │ ├── LineItemDimensionVolumeRule.php │ │ ├── LineItemDimensionWeightRule.php │ │ ├── LineItemDimensionWidthRule.php │ │ ├── LineItemGoodsTotalRule.php │ │ ├── LineItemGroupRule.php │ │ ├── LineItemInCategoryRule.php │ │ ├── LineItemInProductStreamRule.php │ │ ├── LineItemIsNewRule.php │ │ ├── LineItemListPriceRatioRule.php │ │ ├── LineItemListPriceRule.php │ │ ├── LineItemOfManufacturerRule.php │ │ ├── LineItemOfTypeRule.php │ │ ├── LineItemProductStatesRule.php │ │ ├── LineItemPromotedRule.php │ │ ├── LineItemPropertyRule.php │ │ ├── LineItemPropertyValueRule.php │ │ ├── LineItemPurchasePriceRule.php │ │ ├── LineItemReleaseDateRule.php │ │ ├── LineItemRule.php │ │ ├── LineItemScope.php │ │ ├── LineItemStockRule.php │ │ ├── LineItemTagRule.php │ │ ├── LineItemTaxationRule.php │ │ ├── LineItemTotalPriceRule.php │ │ ├── LineItemUnitPriceRule.php │ │ ├── LineItemVariantValueRule.php │ │ ├── LineItemWithQuantityRule.php │ │ ├── LineItemWrapperRule.php │ │ ├── LineItemsInCartCountRule.php │ │ ├── PaymentMethodRule.php │ │ └── ShippingMethodRule.php │ ├── RuleLoader.php │ ├── RuleLoaderResult.php │ ├── SalesChannel │ │ ├── AbstractCartDeleteRoute.php │ │ ├── AbstractCartItemAddRoute.php │ │ ├── AbstractCartItemRemoveRoute.php │ │ ├── AbstractCartItemUpdateRoute.php │ │ ├── AbstractCartLoadRoute.php │ │ ├── AbstractCartOrderRoute.php │ │ ├── CartDeleteRoute.php │ │ ├── CartItemAddRoute.php │ │ ├── CartItemRemoveRoute.php │ │ ├── CartItemUpdateRoute.php │ │ ├── CartLoadRoute.php │ │ ├── CartOrderRoute.php │ │ ├── CartOrderRouteResponse.php │ │ ├── CartResponse.php │ │ └── CartService.php │ ├── Subscriber │ │ └── CartOrderEventSubscriber.php │ ├── Tax │ │ ├── AbstractTaxDetector.php │ │ ├── PercentageTaxRuleBuilder.php │ │ ├── Struct │ │ │ ├── CalculatedTax.php │ │ │ ├── CalculatedTaxCollection.php │ │ │ ├── TaxRule.php │ │ │ └── TaxRuleCollection.php │ │ ├── TaxCalculator.php │ │ └── TaxDetector.php │ ├── TaxProvider │ │ ├── AbstractTaxProvider.php │ │ ├── Struct │ │ │ └── TaxProviderResult.php │ │ ├── TaxAdjustment.php │ │ ├── TaxAdjustmentCalculator.php │ │ ├── TaxProviderProcessor.php │ │ └── TaxProviderRegistry.php │ ├── Transaction │ │ ├── Struct │ │ │ ├── Transaction.php │ │ │ └── TransactionCollection.php │ │ └── TransactionProcessor.php │ └── Validator.php ├── Checkout.php ├── CheckoutPermissions.php ├── CheckoutRuleScope.php ├── Customer │ ├── Aggregate │ │ ├── CustomerAddress │ │ │ ├── CustomerAddressCollection.php │ │ │ ├── CustomerAddressDefinition.php │ │ │ └── CustomerAddressEntity.php │ │ ├── CustomerGroup │ │ │ ├── CustomerGroupCollection.php │ │ │ ├── CustomerGroupDefinition.php │ │ │ └── CustomerGroupEntity.php │ │ ├── CustomerGroupRegistrationSalesChannel │ │ │ └── CustomerGroupRegistrationSalesChannelDefinition.php │ │ ├── CustomerGroupTranslation │ │ │ ├── CustomerGroupTranslationCollection.php │ │ │ ├── CustomerGroupTranslationDefinition.php │ │ │ └── CustomerGroupTranslationEntity.php │ │ ├── CustomerRecovery │ │ │ ├── CustomerRecoveryCollection.php │ │ │ ├── CustomerRecoveryDefinition.php │ │ │ └── CustomerRecoveryEntity.php │ │ ├── CustomerTag │ │ │ └── CustomerTagDefinition.php │ │ ├── CustomerWishlist │ │ │ ├── CustomerWishlistCollection.php │ │ │ ├── CustomerWishlistDefinition.php │ │ │ └── CustomerWishlistEntity.php │ │ └── CustomerWishlistProduct │ │ │ ├── CustomerWishlistProductCollection.php │ │ │ ├── CustomerWishlistProductDefinition.php │ │ │ └── CustomerWishlistProductEntity.php │ ├── Api │ │ └── CustomerGroupRegistrationActionController.php │ ├── Command │ │ └── DeleteUnusedGuestCustomersCommand.php │ ├── Cookie │ │ └── WishlistCookieCollectListener.php │ ├── CustomerCollection.php │ ├── CustomerDefinition.php │ ├── CustomerEntity.php │ ├── CustomerEvents.php │ ├── CustomerException.php │ ├── CustomerValueResolver.php │ ├── DataAbstractionLayer │ │ ├── CustomerIndexer.php │ │ ├── CustomerIndexingMessage.php │ │ └── CustomerWishlistProductExceptionHandler.php │ ├── DeleteUnusedGuestCustomerHandler.php │ ├── DeleteUnusedGuestCustomerService.php │ ├── DeleteUnusedGuestCustomerTask.php │ ├── Event │ │ ├── AddressListingCriteriaEvent.php │ │ ├── CustomerAccountRecoverRequestEvent.php │ │ ├── CustomerBeforeLoginEvent.php │ │ ├── CustomerConfirmRegisterUrlEvent.php │ │ ├── CustomerDeletedEvent.php │ │ ├── CustomerDoubleOptInRegistrationEvent.php │ │ ├── CustomerGroupRegistrationAccepted.php │ │ ├── CustomerGroupRegistrationDeclined.php │ │ ├── CustomerIndexerEvent.php │ │ ├── CustomerLoginEvent.php │ │ ├── CustomerLogoutEvent.php │ │ ├── CustomerRegisterEvent.php │ │ ├── CustomerSetDefaultBillingAddressEvent.php │ │ ├── CustomerSetDefaultShippingAddressEvent.php │ │ ├── CustomerWishlistLoaderCriteriaEvent.php │ │ ├── CustomerWishlistProductListingResultEvent.php │ │ ├── DoubleOptInGuestOrderEvent.php │ │ ├── GuestCustomerRegisterEvent.php │ │ ├── PasswordRecoveryUrlEvent.php │ │ ├── WishlistMergedEvent.php │ │ ├── WishlistProductAddedEvent.php │ │ └── WishlistProductRemovedEvent.php │ ├── Exception │ │ ├── AddressNotFoundException.php │ │ ├── BadCredentialsException.php │ │ ├── CannotDeleteDefaultAddressException.php │ │ ├── CustomerAlreadyConfirmedException.php │ │ ├── CustomerAuthThrottledException.php │ │ ├── CustomerNotFoundByHashException.php │ │ ├── CustomerNotFoundByIdException.php │ │ ├── CustomerNotFoundException.php │ │ ├── CustomerOptinNotCompletedException.php │ │ ├── CustomerRecoveryHashExpiredException.php │ │ ├── CustomerWishlistNotFoundException.php │ │ ├── DuplicateWishlistProductException.php │ │ ├── InvalidImitateCustomerTokenException.php │ │ └── PasswordPoliciesUpdatedException.php │ ├── ImitateCustomerTokenGenerator.php │ ├── Password │ │ ├── LegacyEncoder │ │ │ ├── LegacyEncoderInterface.php │ │ │ ├── Md5.php │ │ │ └── Sha256.php │ │ └── LegacyPasswordVerifier.php │ ├── Rule │ │ ├── AffiliateCodeRule.php │ │ ├── BillingCityRule.php │ │ ├── BillingCountryRule.php │ │ ├── BillingStateRule.php │ │ ├── BillingStreetRule.php │ │ ├── BillingZipCodeRule.php │ │ ├── CampaignCodeRule.php │ │ ├── CustomerAgeRule.php │ │ ├── CustomerBirthdayRule.php │ │ ├── CustomerCreatedByAdminRule.php │ │ ├── CustomerCustomFieldRule.php │ │ ├── CustomerGroupRule.php │ │ ├── CustomerLoggedInRule.php │ │ ├── CustomerNumberRule.php │ │ ├── CustomerRequestedGroupRule.php │ │ ├── CustomerSalutationRule.php │ │ ├── CustomerTagRule.php │ │ ├── DaysSinceFirstLoginRule.php │ │ ├── DaysSinceLastLoginRule.php │ │ ├── DaysSinceLastOrderRule.php │ │ ├── DifferentAddressesRule.php │ │ ├── EmailRule.php │ │ ├── IsActiveRule.php │ │ ├── IsCompanyRule.php │ │ ├── IsGuestCustomerRule.php │ │ ├── IsNewsletterRecipientRule.php │ │ ├── LastNameRule.php │ │ ├── NumberOfReviewsRule.php │ │ ├── OrderCountRule.php │ │ ├── OrderTotalAmountRule.php │ │ ├── ShippingCityRule.php │ │ ├── ShippingCountryRule.php │ │ ├── ShippingStateRule.php │ │ ├── ShippingStreetRule.php │ │ └── ShippingZipCodeRule.php │ ├── SalesChannel │ │ ├── AbstractAccountNewsletterRecipientRoute.php │ │ ├── AbstractAddWishlistProductRoute.php │ │ ├── AbstractChangeCustomerProfileRoute.php │ │ ├── AbstractChangeEmailRoute.php │ │ ├── AbstractChangeLanguageRoute.php │ │ ├── AbstractChangePasswordRoute.php │ │ ├── AbstractConvertGuestRoute.php │ │ ├── AbstractCustomerGroupRegistrationSettingsRoute.php │ │ ├── AbstractCustomerRecoveryIsExpiredRoute.php │ │ ├── AbstractCustomerRoute.php │ │ ├── AbstractDeleteAddressRoute.php │ │ ├── AbstractDeleteCustomerRoute.php │ │ ├── AbstractDownloadRoute.php │ │ ├── AbstractImitateCustomerRoute.php │ │ ├── AbstractListAddressRoute.php │ │ ├── AbstractLoadWishlistRoute.php │ │ ├── AbstractLoginRoute.php │ │ ├── AbstractLogoutRoute.php │ │ ├── AbstractMergeWishlistProductRoute.php │ │ ├── AbstractRegisterConfirmRoute.php │ │ ├── AbstractRegisterRoute.php │ │ ├── AbstractRemoveWishlistProductRoute.php │ │ ├── AbstractResetPasswordRoute.php │ │ ├── AbstractSendPasswordRecoveryMailRoute.php │ │ ├── AbstractSwitchDefaultAddressRoute.php │ │ ├── AbstractUpsertAddressRoute.php │ │ ├── AccountNewsletterRecipientResult.php │ │ ├── AccountNewsletterRecipientRoute.php │ │ ├── AccountNewsletterRecipientRouteResponse.php │ │ ├── AccountService.php │ │ ├── AddWishlistProductRoute.php │ │ ├── ChangeCustomerProfileRoute.php │ │ ├── ChangeEmailRoute.php │ │ ├── ChangeLanguageRoute.php │ │ ├── ChangePasswordRoute.php │ │ ├── ConvertGuestRoute.php │ │ ├── CustomerAddressValidationTrait.php │ │ ├── CustomerGroupRegistrationSettingsRoute.php │ │ ├── CustomerGroupRegistrationSettingsRouteResponse.php │ │ ├── CustomerRecoveryIsExpiredResponse.php │ │ ├── CustomerRecoveryIsExpiredRoute.php │ │ ├── CustomerResponse.php │ │ ├── CustomerRoute.php │ │ ├── DeleteAddressRoute.php │ │ ├── DeleteCustomerRoute.php │ │ ├── DownloadRoute.php │ │ ├── ImitateCustomerRoute.php │ │ ├── ListAddressRoute.php │ │ ├── ListAddressRouteResponse.php │ │ ├── LoadWishlistRoute.php │ │ ├── LoadWishlistRouteResponse.php │ │ ├── LoginRoute.php │ │ ├── LogoutRoute.php │ │ ├── MergeWishlistProductRoute.php │ │ ├── RegisterConfirmRoute.php │ │ ├── RegisterRoute.php │ │ ├── RemoveWishlistProductRoute.php │ │ ├── ResetPasswordRoute.php │ │ ├── SendPasswordRecoveryMailRoute.php │ │ ├── SwitchDefaultAddressRoute.php │ │ ├── UpsertAddressRoute.php │ │ └── UpsertAddressRouteResponse.php │ ├── Service │ │ ├── EmailIdnConverter.php │ │ ├── GuestAuthenticator.php │ │ └── ProductReviewCountService.php │ ├── Struct │ │ └── ImitateCustomerToken.php │ ├── Subscriber │ │ ├── AddressHashSubscriber.php │ │ ├── CustomerBeforeDeleteSubscriber.php │ │ ├── CustomerChangePasswordSubscriber.php │ │ ├── CustomerFlowEventsSubscriber.php │ │ ├── CustomerLogoutSubscriber.php │ │ ├── CustomerMetaFieldSubscriber.php │ │ ├── CustomerRemoteAddressSubscriber.php │ │ ├── CustomerSalutationSubscriber.php │ │ ├── CustomerTokenSubscriber.php │ │ └── ProductReviewSubscriber.php │ └── Validation │ │ ├── AddressValidationFactory.php │ │ ├── Constraint │ │ ├── CustomerEmailUnique.php │ │ ├── CustomerEmailUniqueValidator.php │ │ ├── CustomerPasswordMatches.php │ │ ├── CustomerPasswordMatchesValidator.php │ │ ├── CustomerVatIdentification.php │ │ ├── CustomerVatIdentificationValidator.php │ │ ├── CustomerZipCode.php │ │ └── CustomerZipCodeValidator.php │ │ ├── CustomerProfileValidationFactory.php │ │ ├── CustomerValidationFactory.php │ │ └── PasswordValidationFactory.php ├── DependencyInjection │ ├── CompilerPass │ │ └── CartStorageCompilerPass.php │ ├── DependencyInjectionException.php │ ├── cart.xml │ ├── customer.xml │ ├── document.xml │ ├── order.xml │ ├── payment.xml │ ├── promotion.xml │ ├── rule.xml │ └── shipping.xml ├── Document │ ├── Aggregate │ │ ├── DocumentBaseConfig │ │ │ ├── DocumentBaseConfigCollection.php │ │ │ ├── DocumentBaseConfigDefinition.php │ │ │ └── DocumentBaseConfigEntity.php │ │ ├── DocumentBaseConfigSalesChannel │ │ │ ├── DocumentBaseConfigSalesChannelCollection.php │ │ │ ├── DocumentBaseConfigSalesChannelDefinition.php │ │ │ └── DocumentBaseConfigSalesChannelEntity.php │ │ ├── DocumentType │ │ │ ├── DocumentTypeCollection.php │ │ │ ├── DocumentTypeDefinition.php │ │ │ └── DocumentTypeEntity.php │ │ └── DocumentTypeTranslation │ │ │ ├── DocumentTypeTranslationCollection.php │ │ │ ├── DocumentTypeTranslationDefinition.php │ │ │ └── DocumentTypeTranslationEntity.php │ ├── Controller │ │ └── DocumentController.php │ ├── DocumentCollection.php │ ├── DocumentConfiguration.php │ ├── DocumentConfigurationFactory.php │ ├── DocumentDefinition.php │ ├── DocumentEntity.php │ ├── DocumentEvents.php │ ├── DocumentException.php │ ├── DocumentGenerationResult.php │ ├── DocumentGenerator │ │ └── Counter.php │ ├── DocumentGeneratorController.php │ ├── DocumentIdCollection.php │ ├── DocumentIdStruct.php │ ├── Event │ │ ├── CreditNoteOrdersEvent.php │ │ ├── DeliveryNoteOrdersEvent.php │ │ ├── DocumentOrderCriteriaEvent.php │ │ ├── DocumentOrderEvent.php │ │ ├── DocumentTemplateRendererParameterEvent.php │ │ ├── InvoiceOrdersEvent.php │ │ └── StornoOrdersEvent.php │ ├── Extension │ │ ├── HtmlRendererExtension.php │ │ └── PdfRendererExtension.php │ ├── FileGenerator │ │ ├── FileGeneratorInterface.php │ │ └── FileTypes.php │ ├── Renderer │ │ ├── AbstractDocumentRenderer.php │ │ ├── CreditNoteRenderer.php │ │ ├── DeliveryNoteRenderer.php │ │ ├── DocumentRendererConfig.php │ │ ├── DocumentRendererRegistry.php │ │ ├── InvoiceRenderer.php │ │ ├── OrderDocumentCriteriaFactory.php │ │ ├── RenderedDocument.php │ │ ├── RendererResult.php │ │ ├── StornoRenderer.php │ │ ├── ZugferdEmbeddedRenderer.php │ │ └── ZugferdRenderer.php │ ├── Resources │ │ └── fonts │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ └── SourceSansPro-Regular.ttf │ ├── SalesChannel │ │ ├── AbstractDocumentRoute.php │ │ └── DocumentRoute.php │ ├── Service │ │ ├── AbstractDocumentTypeRenderer.php │ │ ├── DocumentConfigLoader.php │ │ ├── DocumentFileRendererRegistry.php │ │ ├── DocumentGenerator.php │ │ ├── DocumentMerger.php │ │ ├── HtmlRenderer.php │ │ ├── PdfRenderer.php │ │ └── ReferenceInvoiceLoader.php │ ├── Struct │ │ └── DocumentGenerateOperation.php │ ├── Twig │ │ └── DocumentTemplateRenderer.php │ └── Zugferd │ │ ├── ZugferdBuilder.php │ │ ├── ZugferdDocument.php │ │ ├── ZugferdInvoiceGeneratedEvent.php │ │ ├── ZugferdInvoiceItemAddedEvent.php │ │ └── ZugferdInvoiceOrdersEvent.php ├── Gateway │ ├── CheckoutGatewayException.php │ ├── CheckoutGatewayInterface.php │ ├── CheckoutGatewayResponse.php │ ├── Command │ │ ├── AbstractCheckoutGatewayCommand.php │ │ ├── AddCartErrorCommand.php │ │ ├── AddPaymentMethodCommand.php │ │ ├── AddPaymentMethodExtensionCommand.php │ │ ├── AddShippingMethodCommand.php │ │ ├── AddShippingMethodExtensionCommand.php │ │ ├── CheckoutGatewayCommandCollection.php │ │ ├── Event │ │ │ └── CheckoutGatewayCommandsCollectedEvent.php │ │ ├── Executor │ │ │ └── CheckoutGatewayCommandExecutor.php │ │ ├── Handler │ │ │ ├── AbstractCheckoutGatewayCommandHandler.php │ │ │ ├── AddCartErrorCommandHandler.php │ │ │ ├── AddPaymentMethodCommandHandler.php │ │ │ ├── AddPaymentMethodExtensionsCommandHandler.php │ │ │ ├── AddShippingMethodCommandHandler.php │ │ │ ├── AddShippingMethodExtensionsCommandHandler.php │ │ │ ├── RemovePaymentMethodCommandHandler.php │ │ │ └── RemoveShippingMethodCommandHandler.php │ │ ├── Registry │ │ │ └── CheckoutGatewayCommandRegistry.php │ │ ├── RemovePaymentMethodCommand.php │ │ ├── RemoveShippingMethodCommand.php │ │ └── Struct │ │ │ └── CheckoutGatewayPayloadStruct.php │ ├── Error │ │ └── CheckoutGatewayError.php │ └── SalesChannel │ │ ├── AbstractCheckoutGatewayRoute.php │ │ ├── CheckoutGatewayRoute.php │ │ └── CheckoutGatewayRouteResponse.php ├── Order │ ├── Aggregate │ │ ├── OrderAddress │ │ │ ├── OrderAddressCollection.php │ │ │ ├── OrderAddressDefinition.php │ │ │ └── OrderAddressEntity.php │ │ ├── OrderCustomer │ │ │ ├── OrderCustomerCollection.php │ │ │ ├── OrderCustomerDefinition.php │ │ │ └── OrderCustomerEntity.php │ │ ├── OrderDelivery │ │ │ ├── OrderDeliveryCollection.php │ │ │ ├── OrderDeliveryDefinition.php │ │ │ ├── OrderDeliveryEntity.php │ │ │ └── OrderDeliveryStates.php │ │ ├── OrderDeliveryPosition │ │ │ ├── OrderDeliveryPositionCollection.php │ │ │ ├── OrderDeliveryPositionDefinition.php │ │ │ └── OrderDeliveryPositionEntity.php │ │ ├── OrderLineItem │ │ │ ├── OrderLineItemCollection.php │ │ │ ├── OrderLineItemDefinition.php │ │ │ └── OrderLineItemEntity.php │ │ ├── OrderLineItemDownload │ │ │ ├── OrderLineItemDownloadCollection.php │ │ │ ├── OrderLineItemDownloadDefinition.php │ │ │ └── OrderLineItemDownloadEntity.php │ │ ├── OrderTag │ │ │ └── OrderTagDefinition.php │ │ ├── OrderTransaction │ │ │ ├── OrderTransactionCollection.php │ │ │ ├── OrderTransactionDefinition.php │ │ │ ├── OrderTransactionEntity.php │ │ │ ├── OrderTransactionStateHandler.php │ │ │ └── OrderTransactionStates.php │ │ ├── OrderTransactionCapture │ │ │ ├── OrderTransactionCaptureCollection.php │ │ │ ├── OrderTransactionCaptureDefinition.php │ │ │ ├── OrderTransactionCaptureEntity.php │ │ │ ├── OrderTransactionCaptureStateHandler.php │ │ │ └── OrderTransactionCaptureStates.php │ │ ├── OrderTransactionCaptureRefund │ │ │ ├── OrderTransactionCaptureRefundCollection.php │ │ │ ├── OrderTransactionCaptureRefundDefinition.php │ │ │ ├── OrderTransactionCaptureRefundEntity.php │ │ │ ├── OrderTransactionCaptureRefundStateHandler.php │ │ │ └── OrderTransactionCaptureRefundStates.php │ │ └── OrderTransactionCaptureRefundPosition │ │ │ ├── OrderTransactionCaptureRefundPositionCollection.php │ │ │ ├── OrderTransactionCaptureRefundPositionDefinition.php │ │ │ └── OrderTransactionCaptureRefundPositionEntity.php │ ├── Api │ │ └── OrderActionController.php │ ├── Event │ │ ├── OrderCriteriaEvent.php │ │ ├── OrderPaymentMethodChangedCriteriaEvent.php │ │ ├── OrderPaymentMethodChangedEvent.php │ │ ├── OrderStateChangeCriteriaEvent.php │ │ └── OrderStateMachineStateChangeEvent.php │ ├── Exception │ │ ├── EmptyCartException.php │ │ ├── GuestNotAuthenticatedException.php │ │ ├── LanguageOfOrderDeleteException.php │ │ ├── PaymentMethodNotAvailableException.php │ │ ├── PaymentMethodNotChangeableException.php │ │ └── WrongGuestCredentialsException.php │ ├── Listener │ │ └── OrderStateChangeEventListener.php │ ├── OrderAddressService.php │ ├── OrderCollection.php │ ├── OrderDefinition.php │ ├── OrderEntity.php │ ├── OrderEvents.php │ ├── OrderException.php │ ├── OrderExceptionHandler.php │ ├── OrderStates.php │ ├── SalesChannel │ │ ├── AbstractCancelOrderRoute.php │ │ ├── AbstractOrderRoute.php │ │ ├── AbstractSetPaymentOrderRoute.php │ │ ├── CancelOrderRoute.php │ │ ├── CancelOrderRouteResponse.php │ │ ├── OrderRoute.php │ │ ├── OrderRouteResponse.php │ │ ├── OrderService.php │ │ ├── SetPaymentOrderRoute.php │ │ └── SetPaymentOrderRouteResponse.php │ ├── Subscriber │ │ └── OrderSalutationSubscriber.php │ └── Validation │ │ └── OrderValidationFactory.php ├── Payment │ ├── Aggregate │ │ └── PaymentMethodTranslation │ │ │ ├── PaymentMethodTranslationCollection.php │ │ │ ├── PaymentMethodTranslationDefinition.php │ │ │ └── PaymentMethodTranslationEntity.php │ ├── Cart │ │ ├── AbstractPaymentTransactionStructFactory.php │ │ ├── Error │ │ │ └── PaymentMethodBlockedError.php │ │ ├── PaymentHandler │ │ │ ├── AbstractPaymentHandler.php │ │ │ ├── CashPayment.php │ │ │ ├── DebitPayment.php │ │ │ ├── DefaultPayment.php │ │ │ ├── InvoicePayment.php │ │ │ ├── PaymentHandlerRegistry.php │ │ │ ├── PaymentHandlerType.php │ │ │ └── PrePayment.php │ │ ├── PaymentMethodValidator.php │ │ ├── PaymentRecurringProcessor.php │ │ ├── PaymentRefundProcessor.php │ │ ├── PaymentTransactionStruct.php │ │ ├── PaymentTransactionStructFactory.php │ │ ├── Recurring │ │ │ └── RecurringDataStruct.php │ │ ├── RefundPaymentTransactionStruct.php │ │ └── Token │ │ │ ├── Constraint │ │ │ ├── PaymentTokenRegistered.php │ │ │ └── PaymentTokenRegisteredValidator.php │ │ │ ├── JWTFactoryV2.php │ │ │ ├── PaymentToken.php │ │ │ ├── PaymentTokenGenerator.php │ │ │ ├── PaymentTokenLifecycle.php │ │ │ ├── TokenFactoryInterfaceV2.php │ │ │ └── TokenStruct.php │ ├── Cleanup │ │ ├── CleanupPaymentTokenTask.php │ │ └── CleanupPaymentTokenTaskHandler.php │ ├── Controller │ │ └── PaymentController.php │ ├── DataAbstractionLayer │ │ ├── PaymentDistinguishableNameGenerator.php │ │ ├── PaymentDistinguishableNameSubscriber.php │ │ ├── PaymentHandlerIdentifierSubscriber.php │ │ ├── PaymentMethodIndexer.php │ │ ├── PaymentMethodIndexingMessage.php │ │ └── PaymentMethodValidator.php │ ├── Event │ │ ├── FinalizePaymentOrderTransactionCriteriaEvent.php │ │ ├── PayPaymentOrderCriteriaEvent.php │ │ ├── PaymentMethodIndexerEvent.php │ │ ├── PaymentMethodRouteCacheKeyEvent.php │ │ └── PaymentMethodRouteCacheTagsEvent.php │ ├── Hook │ │ └── PaymentMethodRouteHook.php │ ├── PaymentEvents.php │ ├── PaymentException.php │ ├── PaymentMethodCollection.php │ ├── PaymentMethodDefinition.php │ ├── PaymentMethodEntity.php │ ├── PaymentProcessor.php │ └── SalesChannel │ │ ├── AbstractHandlePaymentMethodRoute.php │ │ ├── AbstractPaymentMethodRoute.php │ │ ├── HandlePaymentMethodRoute.php │ │ ├── HandlePaymentMethodRouteResponse.php │ │ ├── PaymentMethodRoute.php │ │ ├── PaymentMethodRouteResponse.php │ │ └── SalesChannelPaymentMethodDefinition.php ├── Promotion │ ├── Aggregate │ │ ├── PromotionCartRule │ │ │ └── PromotionCartRuleDefinition.php │ │ ├── PromotionDiscount │ │ │ ├── PromotionDiscountCollection.php │ │ │ ├── PromotionDiscountDefinition.php │ │ │ └── PromotionDiscountEntity.php │ │ ├── PromotionDiscountPrice │ │ │ ├── PromotionDiscountPriceCollection.php │ │ │ ├── PromotionDiscountPriceDefinition.php │ │ │ └── PromotionDiscountPriceEntity.php │ │ ├── PromotionDiscountRule │ │ │ └── PromotionDiscountRuleDefinition.php │ │ ├── PromotionIndividualCode │ │ │ ├── PromotionIndividualCodeCollection.php │ │ │ ├── PromotionIndividualCodeDefinition.php │ │ │ └── PromotionIndividualCodeEntity.php │ │ ├── PromotionOrderRule │ │ │ └── PromotionOrderRuleDefinition.php │ │ ├── PromotionPersonaCustomer │ │ │ └── PromotionPersonaCustomerDefinition.php │ │ ├── PromotionPersonaRule │ │ │ └── PromotionPersonaRuleDefinition.php │ │ ├── PromotionSalesChannel │ │ │ ├── PromotionSalesChannelCollection.php │ │ │ ├── PromotionSalesChannelDefinition.php │ │ │ └── PromotionSalesChannelEntity.php │ │ ├── PromotionSetGroup │ │ │ ├── PromotionSetGroupCollection.php │ │ │ ├── PromotionSetGroupDefinition.php │ │ │ └── PromotionSetGroupEntity.php │ │ ├── PromotionSetGroupRule │ │ │ └── PromotionSetGroupRuleDefinition.php │ │ └── PromotionTranslation │ │ │ ├── PromotionTranslationCollection.php │ │ │ ├── PromotionTranslationDefinition.php │ │ │ └── PromotionTranslationEntity.php │ ├── Api │ │ ├── PromotionActionController.php │ │ └── PromotionController.php │ ├── Cart │ │ ├── CartPromotionsDataDefinition.php │ │ ├── CartPromotionsSubscriber.php │ │ ├── Discount │ │ │ ├── Calculator │ │ │ │ ├── DiscountAbsoluteCalculator.php │ │ │ │ ├── DiscountFixedPriceCalculator.php │ │ │ │ ├── DiscountFixedUnitPriceCalculator.php │ │ │ │ └── DiscountPercentageCalculator.php │ │ │ ├── Composition │ │ │ │ ├── DiscountCompositionBuilder.php │ │ │ │ └── DiscountCompositionItem.php │ │ │ ├── DiscountCalculatorInterface.php │ │ │ ├── DiscountCalculatorResult.php │ │ │ ├── DiscountLineItem.php │ │ │ ├── DiscountPackage.php │ │ │ ├── DiscountPackageCollection.php │ │ │ ├── DiscountPackager.php │ │ │ ├── Filter │ │ │ │ ├── AdvancedPackageFilter.php │ │ │ │ ├── AdvancedPackagePicker.php │ │ │ │ ├── AdvancedPackageRules.php │ │ │ │ ├── Applier │ │ │ │ │ └── Applier.php │ │ │ │ ├── Exception │ │ │ │ │ ├── FilterPickerNotFoundException.php │ │ │ │ │ └── FilterSorterNotFoundException.php │ │ │ │ ├── FilterPickerInterface.php │ │ │ │ ├── FilterServiceRegistry.php │ │ │ │ ├── FilterSorterInterface.php │ │ │ │ ├── MaxUsage │ │ │ │ │ └── MaxUsage.php │ │ │ │ ├── PackageFilter.php │ │ │ │ ├── Picker │ │ │ │ │ ├── HorizontalPicker.php │ │ │ │ │ └── VerticalPicker.php │ │ │ │ ├── SetGroupScopeFilter.php │ │ │ │ └── Sorter │ │ │ │ │ ├── AbstractPriceSorter.php │ │ │ │ │ ├── FilterSorterPriceAsc.php │ │ │ │ │ └── FilterSorterPriceDesc.php │ │ │ └── ScopePackager │ │ │ │ ├── CartScopeDiscountPackager.php │ │ │ │ ├── SetGroupScopeDiscountPackager.php │ │ │ │ └── SetScopeDiscountPackager.php │ │ ├── Error │ │ │ ├── AutoPromotionNotFoundError.php │ │ │ ├── PromotionExcludedError.php │ │ │ ├── PromotionNotEligibleError.php │ │ │ ├── PromotionNotFoundError.php │ │ │ └── PromotionsOnCartPriceZeroError.php │ │ ├── Extension │ │ │ ├── CartExtension.php │ │ │ └── LockExtension.php │ │ ├── PromotionCalculator.php │ │ ├── PromotionCartAddedInformationError.php │ │ ├── PromotionCartDeletedInformationError.php │ │ ├── PromotionCartInformationTrait.php │ │ ├── PromotionCodeTuple.php │ │ ├── PromotionCollector.php │ │ ├── PromotionDeliveryCalculator.php │ │ ├── PromotionDeliveryProcessor.php │ │ ├── PromotionItemBuilder.php │ │ ├── PromotionProcessor.php │ │ └── PromotionRedemptionLocker.php │ ├── DataAbstractionLayer │ │ ├── PromotionExclusionUpdater.php │ │ ├── PromotionIndexer.php │ │ ├── PromotionIndexingMessage.php │ │ ├── PromotionRedemptionUpdater.php │ │ └── PromotionValidator.php │ ├── Event │ │ └── PromotionIndexerEvent.php │ ├── Exception │ │ ├── DiscountCalculatorNotFoundException.php │ │ ├── InvalidCodePatternException.php │ │ ├── InvalidScopeDefinitionException.php │ │ ├── PatternNotComplexEnoughException.php │ │ ├── PriceDefinitionNotValidForDiscountTypeException.php │ │ └── PriceNotFoundException.php │ ├── Gateway │ │ ├── PromotionGateway.php │ │ ├── PromotionGatewayInterface.php │ │ └── Template │ │ │ ├── ActiveDateRange.php │ │ │ ├── PermittedAutomaticPromotions.php │ │ │ ├── PermittedGlobalCodePromotions.php │ │ │ └── PermittedIndividualCodePromotions.php │ ├── PromotionCollection.php │ ├── PromotionDefinition.php │ ├── PromotionEntity.php │ ├── PromotionException.php │ ├── Rule │ │ ├── PromotionCodeOfTypeRule.php │ │ ├── PromotionLineItemRule.php │ │ ├── PromotionValueRule.php │ │ └── PromotionsInCartCountRule.php │ ├── Service │ │ ├── PromotionDateTimeService.php │ │ └── PromotionDateTimeServiceInterface.php │ ├── Subscriber │ │ ├── PromotionIndividualCodeRedeemer.php │ │ └── Storefront │ │ │ └── StorefrontCartSubscriber.php │ ├── Util │ │ └── PromotionCodeService.php │ └── Validator │ │ └── PromotionValidator.php ├── Resources │ └── config │ │ └── routes.xml └── Shipping │ ├── Aggregate │ ├── ShippingMethodPrice │ │ ├── ShippingMethodPriceCollection.php │ │ ├── ShippingMethodPriceDefinition.php │ │ ├── ShippingMethodPriceEntity.php │ │ └── ShippingMethodPriceExceptionHandler.php │ ├── ShippingMethodTag │ │ └── ShippingMethodTagDefinition.php │ └── ShippingMethodTranslation │ │ ├── ShippingMethodTranslationCollection.php │ │ ├── ShippingMethodTranslationDefinition.php │ │ └── ShippingMethodTranslationEntity.php │ ├── Cart │ └── Error │ │ └── ShippingMethodBlockedError.php │ ├── Event │ ├── ShippingMethodRouteCacheKeyEvent.php │ └── ShippingMethodRouteCacheTagsEvent.php │ ├── Hook │ └── ShippingMethodRouteHook.php │ ├── SalesChannel │ ├── AbstractShippingMethodRoute.php │ ├── SalesChannelShippingMethodDefinition.php │ ├── ShippingMethodRoute.php │ └── ShippingMethodRouteResponse.php │ ├── ShippingEvents.php │ ├── ShippingException.php │ ├── ShippingMethodCollection.php │ ├── ShippingMethodDefinition.php │ ├── ShippingMethodEntity.php │ └── Validator │ └── ShippingMethodValidator.php ├── Content ├── Breadcrumb │ ├── BreadcrumbException.php │ ├── SalesChannel │ │ ├── AbstractBreadcrumbRoute.php │ │ ├── BreadcrumbRoute.php │ │ └── BreadcrumbRouteResponse.php │ └── Struct │ │ ├── Breadcrumb.php │ │ └── BreadcrumbCollection.php ├── Category │ ├── Aggregate │ │ ├── CategoryTag │ │ │ └── CategoryTagDefinition.php │ │ └── CategoryTranslation │ │ │ ├── CategoryTranslationCollection.php │ │ │ ├── CategoryTranslationDefinition.php │ │ │ └── CategoryTranslationEntity.php │ ├── CategoryCollection.php │ ├── CategoryDefinition.php │ ├── CategoryEntity.php │ ├── CategoryEvents.php │ ├── CategoryException.php │ ├── CategoryHydrator.php │ ├── Cms │ │ └── CategoryNavigationCmsElementResolver.php │ ├── DataAbstractionLayer │ │ ├── CategoryBreadcrumbUpdater.php │ │ ├── CategoryIndexer.php │ │ ├── CategoryIndexingMessage.php │ │ └── CategoryNonExistentExceptionHandler.php │ ├── Event │ │ ├── CategoryIndexerEvent.php │ │ ├── CategoryLevelLoaderCacheKeyEvent.php │ │ ├── CategoryRouteCacheKeyEvent.php │ │ ├── CategoryRouteCacheTagsEvent.php │ │ ├── NavigationLoadedEvent.php │ │ ├── NavigationRouteCacheKeyEvent.php │ │ ├── NavigationRouteCacheTagsEvent.php │ │ └── SalesChannelCategoryIdsFetchedEvent.php │ ├── Exception │ │ └── CategoryNotFoundException.php │ ├── SalesChannel │ │ ├── AbstractCategoryListRoute.php │ │ ├── AbstractCategoryRoute.php │ │ ├── AbstractNavigationRoute.php │ │ ├── CategoryListRoute.php │ │ ├── CategoryListRouteResponse.php │ │ ├── CategoryRoute.php │ │ ├── CategoryRouteResponse.php │ │ ├── NavigationRoute.php │ │ ├── NavigationRouteResponse.php │ │ ├── SalesChannelCategoryDefinition.php │ │ ├── SalesChannelCategoryEntity.php │ │ └── TreeBuildingNavigationRoute.php │ ├── Service │ │ ├── AbstractCategoryUrlGenerator.php │ │ ├── CachedDefaultCategoryLevelLoader.php │ │ ├── CategoryBreadcrumbBuilder.php │ │ ├── CategoryUrlGenerator.php │ │ ├── DefaultCategoryLevelLoader.php │ │ ├── DefaultCategoryLevelLoaderInterface.php │ │ ├── NavigationLoader.php │ │ └── NavigationLoaderInterface.php │ ├── Subscriber │ │ ├── CategorySubscriber.php │ │ └── CategoryTreeMovedSubscriber.php │ ├── Tree │ │ ├── CategoryTreePathResolver.php │ │ ├── Tree.php │ │ └── TreeItem.php │ └── Validation │ │ └── EntryPointValidator.php ├── Cms │ ├── Aggregate │ │ ├── CmsBlock │ │ │ ├── CmsBlockCollection.php │ │ │ ├── CmsBlockDefinition.php │ │ │ └── CmsBlockEntity.php │ │ ├── CmsPageTranslation │ │ │ ├── CmsPageTranslationDefinition.php │ │ │ └── CmsPageTranslationEntity.php │ │ ├── CmsSection │ │ │ ├── CmsSectionCollection.php │ │ │ ├── CmsSectionDefinition.php │ │ │ └── CmsSectionEntity.php │ │ ├── CmsSlot │ │ │ ├── CmsSlotCollection.php │ │ │ ├── CmsSlotDefinition.php │ │ │ └── CmsSlotEntity.php │ │ └── CmsSlotTranslation │ │ │ ├── CmsSlotTranslationDefinition.php │ │ │ └── CmsSlotTranslationEntity.php │ ├── CmsException.php │ ├── CmsPageCollection.php │ ├── CmsPageDefinition.php │ ├── CmsPageEntity.php │ ├── CmsPageEvents.php │ ├── Command │ │ └── CreatePageCommand.php │ ├── DataAbstractionLayer │ │ ├── Field │ │ │ └── SlotConfigField.php │ │ └── FieldSerializer │ │ │ └── SlotConfigFieldSerializer.php │ ├── DataResolver │ │ ├── CmsSlotsDataResolver.php │ │ ├── CriteriaCollection.php │ │ ├── Element │ │ │ ├── AbstractCmsElementResolver.php │ │ │ ├── CmsElementResolverInterface.php │ │ │ ├── ElementDataCollection.php │ │ │ ├── FormCmsElementResolver.php │ │ │ ├── HtmlCmsElementResolver.php │ │ │ └── TextCmsElementResolver.php │ │ ├── FieldConfig.php │ │ ├── FieldConfigCollection.php │ │ └── ResolverContext │ │ │ ├── EntityResolverContext.php │ │ │ └── ResolverContext.php │ ├── Events │ │ ├── CmsPageLoadedEvent.php │ │ └── CmsPageLoaderCriteriaEvent.php │ ├── Exception │ │ ├── DuplicateCriteriaKeyException.php │ │ ├── PageNotFoundException.php │ │ └── UnexpectedFieldConfigValueType.php │ ├── Extension │ │ ├── CmsSlotsDataCollectExtension.php │ │ ├── CmsSlotsDataEnrichExtension.php │ │ └── CmsSlotsDataResolveExtension.php │ ├── SalesChannel │ │ ├── AbstractCmsRoute.php │ │ ├── CmsRoute.php │ │ ├── CmsRouteResponse.php │ │ ├── SalesChannelCmsPageLoader.php │ │ ├── SalesChannelCmsPageLoaderInterface.php │ │ └── Struct │ │ │ ├── BuyBoxStruct.php │ │ │ ├── CrossSellingStruct.php │ │ │ ├── HtmlStruct.php │ │ │ ├── ImageSliderItemStruct.php │ │ │ ├── ImageSliderStruct.php │ │ │ ├── ImageStruct.php │ │ │ ├── ManufacturerLogoStruct.php │ │ │ ├── ProductBoxStruct.php │ │ │ ├── ProductDescriptionReviewsStruct.php │ │ │ ├── ProductListingStruct.php │ │ │ ├── ProductSliderStruct.php │ │ │ └── TextStruct.php │ └── Subscriber │ │ ├── CmsPageDefaultChangeSubscriber.php │ │ ├── CmsVersionMergeSubscriber.php │ │ └── UnusedMediaSubscriber.php ├── ContactForm │ ├── Event │ │ └── ContactFormEvent.php │ ├── SalesChannel │ │ ├── AbstractContactFormRoute.php │ │ ├── ContactFormRoute.php │ │ ├── ContactFormRouteResponse.php │ │ └── ContactFormRouteResponseStruct.php │ └── Validation │ │ └── ContactFormValidationFactory.php ├── Content.php ├── Cookie │ ├── CookieException.php │ ├── Event │ │ └── CookieGroupCollectEvent.php │ ├── SalesChannel │ │ ├── AbstractCookieRoute.php │ │ ├── CookieRoute.php │ │ └── CookieRouteResponse.php │ ├── Service │ │ └── CookieProvider.php │ └── Struct │ │ ├── CookieEntry.php │ │ ├── CookieEntryCollection.php │ │ ├── CookieGroup.php │ │ └── CookieGroupCollection.php ├── DependencyInjection │ ├── breadcrumb.xml │ ├── category.xml │ ├── cms.xml │ ├── contact_form.xml │ ├── cookie.xml │ ├── delivery_time.xml │ ├── flow.xml │ ├── import_export.xml │ ├── landing_page.xml │ ├── mail_template.xml │ ├── measurement_system.xml │ ├── media.xml │ ├── media_path.xml │ ├── newsletter_recipient.xml │ ├── product.xml │ ├── product_export.xml │ ├── product_stream.xml │ ├── property.xml │ ├── rule.xml │ └── sitemap.xml ├── Flow │ ├── Aggregate │ │ ├── FlowSequence │ │ │ ├── FlowSequenceCollection.php │ │ │ ├── FlowSequenceDefinition.php │ │ │ └── FlowSequenceEntity.php │ │ └── FlowTemplate │ │ │ ├── FlowTemplateCollection.php │ │ │ ├── FlowTemplateDefinition.php │ │ │ └── FlowTemplateEntity.php │ ├── Api │ │ ├── FlowActionCollector.php │ │ ├── FlowActionCollectorResponse.php │ │ └── FlowActionDefinition.php │ ├── Controller │ │ └── TriggerFlowController.php │ ├── DataAbstractionLayer │ │ ├── Field │ │ │ └── FlowTemplateConfigField.php │ │ └── FieldSerializer │ │ │ └── FlowTemplateConfigFieldSerializer.php │ ├── Dispatching │ │ ├── AbstractFlowLoader.php │ │ ├── Action │ │ │ ├── AddCustomerAffiliateAndCampaignCodeAction.php │ │ │ ├── AddCustomerTagAction.php │ │ │ ├── AddOrderAffiliateAndCampaignCodeAction.php │ │ │ ├── AddOrderTagAction.php │ │ │ ├── ChangeCustomerGroupAction.php │ │ │ ├── ChangeCustomerStatusAction.php │ │ │ ├── CustomFieldActionTrait.php │ │ │ ├── FlowAction.php │ │ │ ├── FlowMailVariables.php │ │ │ ├── GenerateDocumentAction.php │ │ │ ├── GrantDownloadAccessAction.php │ │ │ ├── RemoveCustomerTagAction.php │ │ │ ├── RemoveOrderTagAction.php │ │ │ ├── SendMailAction.php │ │ │ ├── SetCustomerCustomFieldAction.php │ │ │ ├── SetCustomerGroupCustomFieldAction.php │ │ │ ├── SetOrderCustomFieldAction.php │ │ │ ├── SetOrderStateAction.php │ │ │ └── StopFlowAction.php │ │ ├── Aware │ │ │ ├── CustomAppAware.php │ │ │ ├── CustomerRecoveryAware.php │ │ │ ├── MessageAware.php │ │ │ ├── NewsletterRecipientAware.php │ │ │ ├── OrderTransactionAware.php │ │ │ └── ScalarValuesAware.php │ │ ├── BufferedFlowExecutionTriggersListener.php │ │ ├── BufferedFlowExecutor.php │ │ ├── BufferedFlowQueue.php │ │ ├── CachedFlowLoader.php │ │ ├── DelayableAction.php │ │ ├── FlowBuilder.php │ │ ├── FlowDispatcher.php │ │ ├── FlowExecutor.php │ │ ├── FlowFactory.php │ │ ├── FlowLoader.php │ │ ├── FlowState.php │ │ ├── StorableFlow.php │ │ ├── Storer │ │ │ ├── A11yRenderedDocumentStorer.php │ │ │ ├── CustomAppStorer.php │ │ │ ├── CustomerGroupStorer.php │ │ │ ├── CustomerRecoveryStorer.php │ │ │ ├── CustomerStorer.php │ │ │ ├── FlowStorer.php │ │ │ ├── LanguageStorer.php │ │ │ ├── MailStorer.php │ │ │ ├── MessageStorer.php │ │ │ ├── NewsletterRecipientStorer.php │ │ │ ├── OrderStorer.php │ │ │ ├── OrderTransactionStorer.php │ │ │ ├── ProductStorer.php │ │ │ ├── ScalarValuesStorer.php │ │ │ ├── TimezoneStorer.php │ │ │ └── UserStorer.php │ │ ├── Struct │ │ │ ├── ActionSequence.php │ │ │ ├── Flow.php │ │ │ ├── IfSequence.php │ │ │ └── Sequence.php │ │ ├── TransactionFailedException.php │ │ └── TransactionalAction.php │ ├── Events │ │ ├── BeforeLoadStorableFlowDataEvent.php │ │ ├── FlowActionCollectorEvent.php │ │ ├── FlowIndexerEvent.php │ │ └── FlowSendMailActionEvent.php │ ├── Exception │ │ ├── CustomTriggerByNameNotFoundException.php │ │ ├── CustomerDeletedException.php │ │ ├── ExecuteSequenceException.php │ │ └── GenerateDocumentActionException.php │ ├── Extension │ │ └── FlowExecutorExtension.php │ ├── FlowCollection.php │ ├── FlowDefinition.php │ ├── FlowEntity.php │ ├── FlowEvents.php │ ├── FlowException.php │ ├── Indexing │ │ ├── FlowIndexer.php │ │ ├── FlowIndexerSubscriber.php │ │ ├── FlowIndexingMessage.php │ │ └── FlowPayloadUpdater.php │ └── Rule │ │ ├── FlowRuleScope.php │ │ ├── FlowRuleScopeBuilder.php │ │ ├── OrderCreatedByAdminRule.php │ │ ├── OrderCustomFieldRule.php │ │ ├── OrderDeliveryStatusRule.php │ │ ├── OrderDocumentTypeRule.php │ │ ├── OrderDocumentTypeSentRule.php │ │ ├── OrderStatusRule.php │ │ ├── OrderTagRule.php │ │ ├── OrderTrackingCodeRule.php │ │ └── OrderTransactionStatusRule.php ├── ImportExport │ ├── Aggregate │ │ ├── ImportExportFile │ │ │ ├── ImportExportFileDefinition.php │ │ │ ├── ImportExportFileEntity.php │ │ │ └── ImportExportFileEvents.php │ │ └── ImportExportLog │ │ │ ├── ImportExportLogCollection.php │ │ │ ├── ImportExportLogDefinition.php │ │ │ ├── ImportExportLogEntity.php │ │ │ └── ImportExportLogEvents.php │ ├── Command │ │ ├── DeleteExpiredFilesCommand.php │ │ └── ImportEntityCommand.php │ ├── Controller │ │ └── ImportExportActionController.php │ ├── DataAbstractionLayer │ │ ├── Serializer │ │ │ ├── Entity │ │ │ │ ├── AbstractEntitySerializer.php │ │ │ │ ├── AbstractMediaSerializer.php │ │ │ │ ├── CountrySerializer.php │ │ │ │ ├── CustomerSerializer.php │ │ │ │ ├── EntitySerializer.php │ │ │ │ ├── LanguageSerializer.php │ │ │ │ ├── MediaSerializer.php │ │ │ │ ├── MediaSerializerSubscriber.php │ │ │ │ ├── OrderSerializer.php │ │ │ │ ├── ProductCrossSellingSerializer.php │ │ │ │ ├── ProductSerializer.php │ │ │ │ ├── PromotionIndividualCodeSerializer.php │ │ │ │ └── SalutationSerializer.php │ │ │ ├── Field │ │ │ │ ├── AbstractFieldSerializer.php │ │ │ │ ├── CustomFieldsSerializer.php │ │ │ │ ├── FieldSerializer.php │ │ │ │ ├── PriceSerializer.php │ │ │ │ ├── ScalarTypeSerializer.php │ │ │ │ ├── ToOneSerializer.php │ │ │ │ └── TranslationsSerializer.php │ │ │ ├── PrimaryKeyResolver.php │ │ │ └── SerializerRegistry.php │ │ └── SystemDefaultValidator.php │ ├── Event │ │ ├── EnrichExportCriteriaEvent.php │ │ ├── ImportExportAfterImportRecordEvent.php │ │ ├── ImportExportAfterProcessFinishedEvent.php │ │ ├── ImportExportBeforeExportRecordEvent.php │ │ ├── ImportExportBeforeImportRecordEvent.php │ │ ├── ImportExportBeforeImportRowEvent.php │ │ ├── ImportExportExceptionExportRecordEvent.php │ │ ├── ImportExportExceptionImportExportHandlerEvent.php │ │ ├── ImportExportExceptionImportRecordEvent.php │ │ ├── ImportExportProfileEvents.php │ │ └── Subscriber │ │ │ ├── CategoryCriteriaSubscriber.php │ │ │ ├── FileDeletedSubscriber.php │ │ │ ├── ProductCategoryPathsSubscriber.php │ │ │ ├── ProductCriteriaSubscriber.php │ │ │ └── ProductVariantsSubscriber.php │ ├── Exception │ │ ├── DeleteDefaultProfileException.php │ │ ├── FileNotFoundException.php │ │ ├── InvalidFileAccessTokenException.php │ │ ├── InvalidIdentifierException.php │ │ ├── InvalidMediaUrlException.php │ │ ├── LogNotWritableException.php │ │ ├── MappingException.php │ │ ├── MediaDownloadException.php │ │ ├── ProcessingException.php │ │ ├── ProfileNotFoundException.php │ │ ├── RequiredByUserException.php │ │ └── UpdatedByValueNotFoundException.php │ ├── ImportExport.php │ ├── ImportExportException.php │ ├── ImportExportFactory.php │ ├── ImportExportProfileDefinition.php │ ├── ImportExportProfileEntity.php │ ├── ImportExportProfileTranslationCollection.php │ ├── ImportExportProfileTranslationDefinition.php │ ├── ImportExportProfileTranslationEntity.php │ ├── Message │ │ ├── DeleteFileHandler.php │ │ ├── DeleteFileMessage.php │ │ ├── ImportExportHandler.php │ │ └── ImportExportMessage.php │ ├── Processing │ │ ├── Mapping │ │ │ ├── CriteriaBuilder.php │ │ │ ├── Mapping.php │ │ │ ├── MappingCollection.php │ │ │ ├── UpdateBy.php │ │ │ └── UpdateByCollection.php │ │ ├── Pipe │ │ │ ├── AbstractPipe.php │ │ │ ├── AbstractPipeFactory.php │ │ │ ├── ChainPipe.php │ │ │ ├── EntityPipe.php │ │ │ ├── KeyMappingPipe.php │ │ │ └── PipeFactory.php │ │ ├── Reader │ │ │ ├── AbstractReader.php │ │ │ ├── AbstractReaderFactory.php │ │ │ ├── CsvReader.php │ │ │ └── CsvReaderFactory.php │ │ └── Writer │ │ │ ├── AbstractFileWriter.php │ │ │ ├── AbstractWriter.php │ │ │ ├── AbstractWriterFactory.php │ │ │ ├── CsvFileWriter.php │ │ │ └── CsvFileWriterFactory.php │ ├── ScheduledTask │ │ ├── CleanupImportExportFileTask.php │ │ └── CleanupImportExportFileTaskHandler.php │ ├── Service │ │ ├── AbstractFileService.php │ │ ├── AbstractMappingService.php │ │ ├── DeleteExpiredFilesService.php │ │ ├── DownloadService.php │ │ ├── FileService.php │ │ ├── ImportExportService.php │ │ ├── MappingService.php │ │ └── SupportedFeaturesService.php │ ├── Strategy │ │ └── Import │ │ │ ├── BatchImportStrategy.php │ │ │ ├── ImportStrategyService.php │ │ │ └── OneByOneImportStrategy.php │ └── Struct │ │ ├── Config.php │ │ ├── ImportResult.php │ │ └── Progress.php ├── LandingPage │ ├── Aggregate │ │ ├── LandingPageSalesChannel │ │ │ └── LandingPageSalesChannelDefinition.php │ │ ├── LandingPageTag │ │ │ └── LandingPageTagDefinition.php │ │ └── LandingPageTranslation │ │ │ ├── LandingPageTranslationCollection.php │ │ │ ├── LandingPageTranslationDefinition.php │ │ │ └── LandingPageTranslationEntity.php │ ├── DataAbstractionLayer │ │ ├── LandingPageIndexer.php │ │ └── LandingPageIndexingMessage.php │ ├── Event │ │ ├── LandingPageIndexerEvent.php │ │ ├── LandingPageRouteCacheKeyEvent.php │ │ └── LandingPageRouteCacheTagsEvent.php │ ├── LandingPageCollection.php │ ├── LandingPageDefinition.php │ ├── LandingPageEntity.php │ ├── LandingPageEvents.php │ ├── LandingPageException.php │ ├── LandingPageValidator.php │ └── SalesChannel │ │ ├── AbstractLandingPageRoute.php │ │ ├── LandingPageRoute.php │ │ ├── LandingPageRouteResponse.php │ │ └── SalesChannelLandingPageDefinition.php ├── Mail │ ├── MailException.php │ ├── MailerConfigurationCompilerPass.php │ ├── Message │ │ ├── SendMailHandler.php │ │ └── SendMailMessage.php │ ├── Service │ │ ├── AbstractMailFactory.php │ │ ├── AbstractMailSender.php │ │ ├── AbstractMailService.php │ │ ├── Mail.php │ │ ├── MailAttachmentsBuilder.php │ │ ├── MailAttachmentsConfig.php │ │ ├── MailFactory.php │ │ ├── MailSender.php │ │ ├── MailService.php │ │ ├── SendMailTemplate.php │ │ └── SendMailTemplateParams.php │ ├── Subscriber │ │ └── FailedMessageSubscriber.php │ └── Transport │ │ ├── MailerTransportDecorator.php │ │ ├── MailerTransportLoader.php │ │ ├── SmtpOauthAuthenticator.php │ │ ├── SmtpOauthTokenProvider.php │ │ └── SmtpOauthTransportFactoryDecorator.php ├── MailTemplate │ ├── Aggregate │ │ ├── MailHeaderFooter │ │ │ ├── MailHeaderFooterCollection.php │ │ │ ├── MailHeaderFooterDefinition.php │ │ │ └── MailHeaderFooterEntity.php │ │ ├── MailHeaderFooterTranslation │ │ │ ├── MailHeaderFooterTranslationCollection.php │ │ │ ├── MailHeaderFooterTranslationDefinition.php │ │ │ └── MailHeaderFooterTranslationEntity.php │ │ ├── MailTemplateMedia │ │ │ ├── MailTemplateMediaCollection.php │ │ │ ├── MailTemplateMediaDefinition.php │ │ │ └── MailTemplateMediaEntity.php │ │ ├── MailTemplateTranslation │ │ │ ├── MailTemplateTranslationCollection.php │ │ │ ├── MailTemplateTranslationDefinition.php │ │ │ └── MailTemplateTranslationEntity.php │ │ ├── MailTemplateType │ │ │ ├── MailTemplateTypeCollection.php │ │ │ ├── MailTemplateTypeDefinition.php │ │ │ └── MailTemplateTypeEntity.php │ │ └── MailTemplateTypeTranslation │ │ │ ├── MailTemplateTypeTranslationCollection.php │ │ │ ├── MailTemplateTypeTranslationDefinition.php │ │ │ └── MailTemplateTypeTranslationEntity.php │ ├── Api │ │ └── MailActionController.php │ ├── Exception │ │ ├── MailEventConfigurationException.php │ │ ├── MailTemplateRendererException.php │ │ └── SalesChannelNotFoundException.php │ ├── MailTemplateCollection.php │ ├── MailTemplateDefinition.php │ ├── MailTemplateEntity.php │ ├── MailTemplateEvents.php │ ├── MailTemplateException.php │ ├── MailTemplateTypes.php │ ├── Service │ │ └── Event │ │ │ ├── MailBeforeSentEvent.php │ │ │ ├── MailBeforeValidateEvent.php │ │ │ ├── MailErrorEvent.php │ │ │ └── MailSentEvent.php │ └── Subscriber │ │ └── MailSendSubscriberConfig.php ├── MeasurementSystem │ ├── DataAbstractionLayer │ │ ├── MeasurementDisplayUnitEntity.php │ │ └── MeasurementSystemEntity.php │ ├── Field │ │ ├── MeasurementUnitsField.php │ │ └── MeasurementUnitsFieldSerializer.php │ ├── MeasurementSystemException.php │ ├── MeasurementUnitTypeEnum.php │ ├── MeasurementUnits.php │ ├── ProductMeasurement │ │ ├── ProductMeasurementEnum.php │ │ └── ProductMeasurementUnitBuilder.php │ ├── TwigExtension │ │ └── MeasurementConvertUnitTwigFilter.php │ └── Unit │ │ ├── AbstractMeasurementUnitConverter.php │ │ ├── AbstractMeasurementUnitProvider.php │ │ ├── ConvertedUnit.php │ │ ├── ConvertedUnitSet.php │ │ ├── MeasurementUnitConverter.php │ │ └── MeasurementUnitProvider.php ├── Media │ ├── Aggregate │ │ ├── MediaDefaultFolder │ │ │ ├── MediaDefaultFolderCollection.php │ │ │ ├── MediaDefaultFolderDefinition.php │ │ │ └── MediaDefaultFolderEntity.php │ │ ├── MediaFolder │ │ │ ├── MediaFolderCollection.php │ │ │ ├── MediaFolderDefinition.php │ │ │ └── MediaFolderEntity.php │ │ ├── MediaFolderConfiguration │ │ │ ├── MediaFolderConfigurationCollection.php │ │ │ ├── MediaFolderConfigurationDefinition.php │ │ │ └── MediaFolderConfigurationEntity.php │ │ ├── MediaFolderConfigurationMediaThumbnailSize │ │ │ └── MediaFolderConfigurationMediaThumbnailSizeDefinition.php │ │ ├── MediaTag │ │ │ └── MediaTagDefinition.php │ │ ├── MediaThumbnail │ │ │ ├── MediaThumbnailCollection.php │ │ │ ├── MediaThumbnailDefinition.php │ │ │ └── MediaThumbnailEntity.php │ │ ├── MediaThumbnailSize │ │ │ ├── MediaThumbnailSizeCollection.php │ │ │ ├── MediaThumbnailSizeDefinition.php │ │ │ └── MediaThumbnailSizeEntity.php │ │ └── MediaTranslation │ │ │ ├── MediaTranslationCollection.php │ │ │ ├── MediaTranslationDefinition.php │ │ │ └── MediaTranslationEntity.php │ ├── Api │ │ ├── MediaFolderController.php │ │ ├── MediaUploadController.php │ │ ├── MediaUploadV2Controller.php │ │ └── MediaVideoCoverController.php │ ├── Cms │ │ ├── AbstractDefaultMediaResolver.php │ │ ├── DefaultMediaResolver.php │ │ ├── ImageCmsElementResolver.php │ │ ├── Type │ │ │ ├── ImageGalleryTypeDataResolver.php │ │ │ └── ImageSliderTypeDataResolver.php │ │ ├── VimeoVideoCmsElementResolver.php │ │ └── YoutubeVideoCmsElementResolver.php │ ├── Commands │ │ ├── DeleteNotUsedMediaCommand.php │ │ ├── DeleteThumbnailsCommand.php │ │ ├── GenerateMediaTypesCommand.php │ │ └── GenerateThumbnailsCommand.php │ ├── Core │ │ ├── Application │ │ │ ├── AbstractMediaPathStrategy.php │ │ │ ├── AbstractMediaUrlGenerator.php │ │ │ ├── MediaLocationBuilder.php │ │ │ ├── MediaPathStorage.php │ │ │ ├── MediaPathUpdater.php │ │ │ ├── MediaReverseProxy.php │ │ │ ├── MediaUrlLoader.php │ │ │ └── RemoteThumbnailLoader.php │ │ ├── Event │ │ │ ├── MediaLocationEvent.php │ │ │ ├── ThumbnailLocationEvent.php │ │ │ ├── UpdateMediaPathEvent.php │ │ │ └── UpdateThumbnailPathEvent.php │ │ ├── Params │ │ │ ├── MediaLocationStruct.php │ │ │ ├── ThumbnailLocationStruct.php │ │ │ ├── UrlParams.php │ │ │ └── UrlParamsSource.php │ │ └── Strategy │ │ │ ├── FilenamePathStrategy.php │ │ │ ├── IdPathStrategy.php │ │ │ ├── PathStrategyFactory.php │ │ │ ├── PhysicalFilenamePathStrategy.php │ │ │ └── PlainPathStrategy.php │ ├── DataAbstractionLayer │ │ ├── MediaFolderConfigurationIndexer.php │ │ ├── MediaFolderIndexer.php │ │ ├── MediaIndexer.php │ │ └── MediaIndexingMessage.php │ ├── Event │ │ ├── MediaFileExtensionWhitelistEvent.php │ │ ├── MediaFolderConfigurationIndexerEvent.php │ │ ├── MediaFolderIndexerEvent.php │ │ ├── MediaIndexerEvent.php │ │ ├── MediaPathChangedEvent.php │ │ ├── MediaThumbnailDeletedEvent.php │ │ ├── MediaUploadedEvent.php │ │ ├── UnusedMediaSearchEvent.php │ │ └── UnusedMediaSearchStartEvent.php │ ├── Extension │ │ └── ResolveRemoteThumbnailUrlExtension.php │ ├── File │ │ ├── DownloadResponseGenerator.php │ │ ├── FileFetcher.php │ │ ├── FileInfoHelper.php │ │ ├── FileLoader.php │ │ ├── FileNameProvider.php │ │ ├── FileNameValidator.php │ │ ├── FileSaver.php │ │ ├── FileService.php │ │ ├── FileUrlValidator.php │ │ ├── FileUrlValidatorInterface.php │ │ ├── MediaFile.php │ │ └── WindowsStyleFileNameProvider.php │ ├── Infrastructure │ │ ├── Command │ │ │ └── UpdatePathCommand.php │ │ └── Path │ │ │ ├── BanMediaUrl.php │ │ │ ├── FastlyMediaReverseProxy.php │ │ │ ├── MediaPathPostUpdater.php │ │ │ ├── MediaUrlGenerator.php │ │ │ ├── SqlMediaLocationBuilder.php │ │ │ └── SqlMediaPathStorage.php │ ├── MediaCollection.php │ ├── MediaDefinition.php │ ├── MediaEntity.php │ ├── MediaEvents.php │ ├── MediaException.php │ ├── MediaFolderService.php │ ├── MediaHydrator.php │ ├── MediaService.php │ ├── MediaType │ │ ├── AudioType.php │ │ ├── BinaryType.php │ │ ├── DocumentType.php │ │ ├── ImageType.php │ │ ├── MediaType.php │ │ ├── SpatialObjectType.php │ │ └── VideoType.php │ ├── MediaUrlPlaceholderHandler.php │ ├── MediaUrlPlaceholderHandlerInterface.php │ ├── Message │ │ ├── DeleteFileHandler.php │ │ ├── DeleteFileMessage.php │ │ ├── GenerateThumbnailsHandler.php │ │ ├── GenerateThumbnailsMessage.php │ │ └── UpdateThumbnailsMessage.php │ ├── Metadata │ │ ├── MetadataLoader.php │ │ └── MetadataLoader │ │ │ ├── ImageMetadataLoader.php │ │ │ └── MetadataLoaderInterface.php │ ├── SalesChannel │ │ ├── AbstractMediaRoute.php │ │ ├── MediaRoute.php │ │ └── MediaRouteResponse.php │ ├── ScheduledTask │ │ ├── CleanupCorruptedMediaHandler.php │ │ └── CleanupCorruptedMediaTask.php │ ├── Service │ │ └── VideoCoverService.php │ ├── Subscriber │ │ ├── CustomFieldsUnusedMediaSubscriber.php │ │ ├── MediaCreationSubscriber.php │ │ ├── MediaDeletionSubscriber.php │ │ ├── MediaFolderConfigLoadedSubscriber.php │ │ ├── MediaLoadedSubscriber.php │ │ ├── MediaVisibilityRestrictionSubscriber.php │ │ ├── VideoCoverCleanupSubscriber.php │ │ └── VideoCoverLoadedSubscriber.php │ ├── Thumbnail │ │ ├── ThumbnailService.php │ │ └── ThumbnailSizeCalculator.php │ ├── TypeDetector │ │ ├── AudioTypeDetector.php │ │ ├── DefaultTypeDetector.php │ │ ├── DocumentTypeDetector.php │ │ ├── ImageTypeDetector.php │ │ ├── SpatialObjectTypeDetector.php │ │ ├── TypeDetector.php │ │ ├── TypeDetectorInterface.php │ │ └── VideoTypeDetector.php │ ├── UnusedMediaPurger.php │ └── Upload │ │ ├── MediaUploadParameters.php │ │ └── MediaUploadService.php ├── Newsletter │ ├── Aggregate │ │ ├── NewsletterRecipient │ │ │ ├── NewsletterRecipientCollection.php │ │ │ ├── NewsletterRecipientDefinition.php │ │ │ └── NewsletterRecipientEntity.php │ │ └── NewsletterRecipientTag │ │ │ └── NewsletterRecipientTagDefinition.php │ ├── DataAbstractionLayer │ │ ├── Indexing │ │ │ └── CustomerNewsletterSalesChannelsUpdater.php │ │ ├── NewsletterRecipientIndexer.php │ │ └── NewsletterRecipientIndexingMessage.php │ ├── Event │ │ ├── NewsletterConfirmEvent.php │ │ ├── NewsletterRecipientIndexerEvent.php │ │ ├── NewsletterRegisterEvent.php │ │ ├── NewsletterSubscribeUrlEvent.php │ │ ├── NewsletterUnsubscribeEvent.php │ │ └── Subscriber │ │ │ └── NewsletterRecipientDeletedSubscriber.php │ ├── Exception │ │ ├── LanguageOfNewsletterDeleteException.php │ │ └── SalesChannelDomainNotFoundException.php │ ├── NewsletterEvents.php │ ├── NewsletterException.php │ ├── NewsletterExceptionHandler.php │ ├── SalesChannel │ │ ├── AbstractNewsletterConfirmRoute.php │ │ ├── AbstractNewsletterSubscribeRoute.php │ │ ├── AbstractNewsletterUnsubscribeRoute.php │ │ ├── NewsletterConfirmRoute.php │ │ ├── NewsletterSubscribeRoute.php │ │ ├── NewsletterUnsubscribeRoute.php │ │ └── SalesChannelNewsletterRecipientDefinition.php │ ├── ScheduledTask │ │ ├── NewsletterRecipientTask.php │ │ └── NewsletterRecipientTaskHandler.php │ └── Subscriber │ │ └── NewsletterRecipientSalutationSubscriber.php ├── Product │ ├── AbstractIsNewDetector.php │ ├── AbstractProductMaxPurchaseCalculator.php │ ├── AbstractProductVariationBuilder.php │ ├── AbstractPropertyGroupSorter.php │ ├── Aggregate │ │ ├── ProductCategory │ │ │ └── ProductCategoryDefinition.php │ │ ├── ProductCategoryTree │ │ │ └── ProductCategoryTreeDefinition.php │ │ ├── ProductConfiguratorSetting │ │ │ ├── ProductConfiguratorSettingCollection.php │ │ │ ├── ProductConfiguratorSettingDefinition.php │ │ │ ├── ProductConfiguratorSettingEntity.php │ │ │ ├── ProductConfiguratorSettingExceptionHandler.php │ │ │ └── ProductConfiguratorSettingHydrator.php │ │ ├── ProductCrossSelling │ │ │ ├── ProductCrossSellingCollection.php │ │ │ ├── ProductCrossSellingDefinition.php │ │ │ ├── ProductCrossSellingEntity.php │ │ │ └── ProductCrossSellingHydrator.php │ │ ├── ProductCrossSellingAssignedProducts │ │ │ ├── ProductCrossSellingAssignedProductsCollection.php │ │ │ ├── ProductCrossSellingAssignedProductsDefinition.php │ │ │ ├── ProductCrossSellingAssignedProductsEntity.php │ │ │ └── ProductCrossSellingAssignedProductsHydrator.php │ │ ├── ProductCrossSellingTranslation │ │ │ ├── ProductCrossSellingTranslationCollection.php │ │ │ ├── ProductCrossSellingTranslationDefinition.php │ │ │ └── ProductCrossSellingTranslationEntity.php │ │ ├── ProductCustomFieldSet │ │ │ └── ProductCustomFieldSetDefinition.php │ │ ├── ProductDownload │ │ │ ├── ProductDownloadCollection.php │ │ │ ├── ProductDownloadDefinition.php │ │ │ └── ProductDownloadEntity.php │ │ ├── ProductFeatureSet │ │ │ ├── ProductFeatureSetCollection.php │ │ │ ├── ProductFeatureSetDefinition.php │ │ │ ├── ProductFeatureSetEntity.php │ │ │ └── ProductFeatureSetHydrator.php │ │ ├── ProductFeatureSetTranslation │ │ │ ├── ProductFeatureSetTranslationCollection.php │ │ │ ├── ProductFeatureSetTranslationDefinition.php │ │ │ └── ProductFeatureSetTranslationEntity.php │ │ ├── ProductKeywordDictionary │ │ │ ├── ProductKeywordDictionaryCollection.php │ │ │ ├── ProductKeywordDictionaryDefinition.php │ │ │ ├── ProductKeywordDictionaryEntity.php │ │ │ └── ProductKeywordDictionaryHydrator.php │ │ ├── ProductManufacturer │ │ │ ├── ProductManufacturerCollection.php │ │ │ ├── ProductManufacturerDefinition.php │ │ │ ├── ProductManufacturerEntity.php │ │ │ └── ProductManufacturerHydrator.php │ │ ├── ProductManufacturerTranslation │ │ │ ├── ProductManufacturerTranslationCollection.php │ │ │ ├── ProductManufacturerTranslationDefinition.php │ │ │ └── ProductManufacturerTranslationEntity.php │ │ ├── ProductMedia │ │ │ ├── ProductMediaCollection.php │ │ │ ├── ProductMediaDefinition.php │ │ │ ├── ProductMediaEntity.php │ │ │ └── ProductMediaHydrator.php │ │ ├── ProductOption │ │ │ └── ProductOptionDefinition.php │ │ ├── ProductPrice │ │ │ ├── ProductPriceCollection.php │ │ │ ├── ProductPriceDefinition.php │ │ │ ├── ProductPriceEntity.php │ │ │ └── ProductPriceHydrator.php │ │ ├── ProductProperty │ │ │ └── ProductPropertyDefinition.php │ │ ├── ProductReview │ │ │ ├── ProductReviewCollection.php │ │ │ ├── ProductReviewDefinition.php │ │ │ ├── ProductReviewEntity.php │ │ │ └── ProductReviewHydrator.php │ │ ├── ProductSearchConfig │ │ │ ├── ProductSearchConfigCollection.php │ │ │ ├── ProductSearchConfigDefinition.php │ │ │ ├── ProductSearchConfigEntity.php │ │ │ ├── ProductSearchConfigExceptionHandler.php │ │ │ └── ProductSearchConfigHydrator.php │ │ ├── ProductSearchConfigField │ │ │ ├── ProductSearchConfigFieldCollection.php │ │ │ ├── ProductSearchConfigFieldDefinition.php │ │ │ ├── ProductSearchConfigFieldEntity.php │ │ │ ├── ProductSearchConfigFieldExceptionHandler.php │ │ │ └── ProductSearchConfigFieldHydrator.php │ │ ├── ProductSearchKeyword │ │ │ ├── ProductSearchKeywordCollection.php │ │ │ ├── ProductSearchKeywordDefinition.php │ │ │ ├── ProductSearchKeywordEntity.php │ │ │ └── ProductSearchKeywordHydrator.php │ │ ├── ProductStreamMapping │ │ │ └── ProductStreamMappingDefinition.php │ │ ├── ProductTag │ │ │ └── ProductTagDefinition.php │ │ ├── ProductTranslation │ │ │ ├── ProductTranslationCollection.php │ │ │ ├── ProductTranslationDefinition.php │ │ │ └── ProductTranslationEntity.php │ │ └── ProductVisibility │ │ │ ├── ProductVisibilityCollection.php │ │ │ ├── ProductVisibilityDefinition.php │ │ │ ├── ProductVisibilityEntity.php │ │ │ └── ProductVisibilityHydrator.php │ ├── Api │ │ ├── ProductActionController.php │ │ └── ProductNumberFkResolver.php │ ├── Cart │ │ ├── MinOrderQuantityError.php │ │ ├── ProductCartProcessor.php │ │ ├── ProductFeatureBuilder.php │ │ ├── ProductGateway.php │ │ ├── ProductGatewayInterface.php │ │ ├── ProductLineItemCommandValidator.php │ │ ├── ProductLineItemValidator.php │ │ ├── ProductNotFoundError.php │ │ ├── ProductOutOfStockError.php │ │ ├── ProductStockReachedError.php │ │ └── PurchaseStepsError.php │ ├── Cleanup │ │ ├── CleanupProductKeywordDictionaryTask.php │ │ ├── CleanupProductKeywordDictionaryTaskHandler.php │ │ ├── CleanupUnusedDownloadMediaTask.php │ │ └── CleanupUnusedDownloadMediaTaskHandler.php │ ├── Cms │ │ ├── AbstractProductDetailCmsElementResolver.php │ │ ├── BuyBoxCmsElementResolver.php │ │ ├── CrossSellingCmsElementResolver.php │ │ ├── ManufacturerLogoCmsElementResolver.php │ │ ├── ProductBoxCmsElementResolver.php │ │ ├── ProductDescriptionReviewsCmsElementResolver.php │ │ ├── ProductListingCmsElementResolver.php │ │ ├── ProductNameCmsElementResolver.php │ │ ├── ProductSlider │ │ │ ├── AbstractProductSliderProcessor.php │ │ │ ├── ProductStreamProcessor.php │ │ │ └── StaticProductProcessor.php │ │ └── ProductSliderCmsElementResolver.php │ ├── DataAbstractionLayer │ │ ├── AbstractCheapestPriceQuantitySelector.php │ │ ├── AbstractProductStreamUpdater.php │ │ ├── CheapestPrice │ │ │ ├── CalculatedCheapestPrice.php │ │ │ ├── CheapestPrice.php │ │ │ ├── CheapestPriceAccessorBuilder.php │ │ │ ├── CheapestPriceContainer.php │ │ │ └── CheapestPriceField.php │ │ ├── CheapestPriceQuantitySelector.php │ │ ├── CheapestPriceUpdater.php │ │ ├── ProductCategoryDenormalizer.php │ │ ├── ProductExceptionHandler.php │ │ ├── ProductIndexer.php │ │ ├── ProductIndexingMessage.php │ │ ├── ProductStreamMappingIndexingMessage.php │ │ ├── ProductStreamUpdater.php │ │ ├── RatingAverageUpdater.php │ │ ├── SearchKeywordUpdater.php │ │ ├── StatesUpdater.php │ │ ├── StockUpdate │ │ │ ├── AbstractStockUpdateFilter.php │ │ │ └── StockUpdateFilterProvider.php │ │ ├── UpdatedStates.php │ │ ├── VariantListingConfig.php │ │ └── VariantListingUpdater.php │ ├── Events │ │ ├── CrossSellingRouteCacheKeyEvent.php │ │ ├── CrossSellingRouteCacheTagsEvent.php │ │ ├── InvalidateProductCache.php │ │ ├── ProductChangedEventInterface.php │ │ ├── ProductCrossSellingCriteriaEvent.php │ │ ├── ProductCrossSellingCriteriaLoadEvent.php │ │ ├── ProductCrossSellingIdsCriteriaEvent.php │ │ ├── ProductCrossSellingStreamCriteriaEvent.php │ │ ├── ProductCrossSellingsLoadedEvent.php │ │ ├── ProductDetailRouteCacheKeyEvent.php │ │ ├── ProductDetailRouteCacheTagsEvent.php │ │ ├── ProductGatewayCriteriaEvent.php │ │ ├── ProductIndexerEvent.php │ │ ├── ProductListingCollectFilterEvent.php │ │ ├── ProductListingCriteriaEvent.php │ │ ├── ProductListingPreviewCriteriaEvent.php │ │ ├── ProductListingResolvePreviewEvent.php │ │ ├── ProductListingResultEvent.php │ │ ├── ProductListingRouteCacheKeyEvent.php │ │ ├── ProductListingRouteCacheTagsEvent.php │ │ ├── ProductNoLongerAvailableEvent.php │ │ ├── ProductSearchCriteriaEvent.php │ │ ├── ProductSearchResultEvent.php │ │ ├── ProductSearchRouteCacheKeyEvent.php │ │ ├── ProductSearchRouteCacheTagsEvent.php │ │ ├── ProductStatesBeforeChangeEvent.php │ │ ├── ProductStatesChangedEvent.php │ │ ├── ProductStockAlteredEvent.php │ │ ├── ProductSuggestCriteriaEvent.php │ │ ├── ProductSuggestResultEvent.php │ │ ├── ProductSuggestRouteCacheKeyEvent.php │ │ └── ProductSuggestRouteCacheTagsEvent.php │ ├── Exception │ │ ├── DuplicateProductNumberException.php │ │ ├── DuplicateProductSearchConfigFieldException.php │ │ ├── DuplicateProductSearchConfigLanguageException.php │ │ ├── DuplicateProductSortingKeyException.php │ │ ├── LanguageOfProductReviewDeleteException.php │ │ ├── NoConfiguratorFoundException.php │ │ ├── ProductLineItemDifferentIdException.php │ │ ├── ProductLineItemInconsistentException.php │ │ ├── ProductNotFoundException.php │ │ ├── ProductNumberNotFoundException.php │ │ ├── ReviewNotActiveExeption.php │ │ └── VariantNotFoundException.php │ ├── Extension │ │ ├── LoadPreviewExtension.php │ │ ├── ProductListingCriteriaExtension.php │ │ ├── ProductPriceCalculationExtension.php │ │ ├── ResolveListingExtension.php │ │ └── ResolveListingIdsExtension.php │ ├── Hook │ │ └── Pricing │ │ │ ├── CheapestPriceFacade.php │ │ │ ├── PriceCollectionFacade.php │ │ │ ├── ProductPricingHook.php │ │ │ └── ProductProxy.php │ ├── IsNewDetector.php │ ├── ProductCollection.php │ ├── ProductDefinition.php │ ├── ProductEntity.php │ ├── ProductEvents.php │ ├── ProductException.php │ ├── ProductHydrator.php │ ├── ProductMaxPurchaseCalculator.php │ ├── ProductVariationBuilder.php │ ├── PropertyGroupSorter.php │ ├── SalesChannel │ │ ├── AbstractProductCloseoutFilterFactory.php │ │ ├── AbstractProductListRoute.php │ │ ├── CrossSelling │ │ │ ├── AbstractProductCrossSellingRoute.php │ │ │ ├── CrossSellingElement.php │ │ │ ├── CrossSellingElementCollection.php │ │ │ ├── ProductCrossSellingRoute.php │ │ │ └── ProductCrossSellingRouteResponse.php │ │ ├── Detail │ │ │ ├── AbstractAvailableCombinationLoader.php │ │ │ ├── AbstractProductDetailRoute.php │ │ │ ├── AvailableCombinationLoader.php │ │ │ ├── AvailableCombinationResult.php │ │ │ ├── Event │ │ │ │ └── ResolveVariantIdEvent.php │ │ │ ├── ProductConfiguratorLoader.php │ │ │ ├── ProductDetailRoute.php │ │ │ └── ProductDetailRouteResponse.php │ │ ├── Exception │ │ │ └── ProductSortingNotFoundException.php │ │ ├── FindVariant │ │ │ ├── AbstractFindProductVariantRoute.php │ │ │ ├── FindProductVariantRoute.php │ │ │ ├── FindProductVariantRouteResponse.php │ │ │ └── FoundCombination.php │ │ ├── Listing │ │ │ ├── AbstractProductListingRoute.php │ │ │ ├── Filter.php │ │ │ ├── Filter │ │ │ │ ├── AbstractListingFilterHandler.php │ │ │ │ ├── ManufacturerListingFilterHandler.php │ │ │ │ ├── PriceListingFilterHandler.php │ │ │ │ ├── PropertyListingFilterHandler.php │ │ │ │ ├── RatingListingFilterHandler.php │ │ │ │ └── ShippingFreeListingFilterHandler.php │ │ │ ├── FilterCollection.php │ │ │ ├── Processor │ │ │ │ ├── AbstractListingProcessor.php │ │ │ │ ├── AggregationListingProcessor.php │ │ │ │ ├── AssociationLoadingListingProcessor.php │ │ │ │ ├── BehaviorListingProcessor.php │ │ │ │ ├── CompositeListingProcessor.php │ │ │ │ ├── PagingListingProcessor.php │ │ │ │ └── SortingListingProcessor.php │ │ │ ├── ProductListingLoader.php │ │ │ ├── ProductListingResult.php │ │ │ ├── ProductListingRoute.php │ │ │ ├── ProductListingRouteResponse.php │ │ │ └── ResolveCriteriaProductListingRoute.php │ │ ├── Price │ │ │ ├── AbstractProductPriceCalculator.php │ │ │ ├── AppScriptProductPriceCalculator.php │ │ │ ├── ProductPriceCalculator.php │ │ │ └── ReferencePriceDto.php │ │ ├── ProductAvailableFilter.php │ │ ├── ProductCloseoutFilter.php │ │ ├── ProductCloseoutFilterFactory.php │ │ ├── ProductListResponse.php │ │ ├── ProductListRoute.php │ │ ├── Review │ │ │ ├── AbstractProductReviewLoader.php │ │ │ ├── AbstractProductReviewRoute.php │ │ │ ├── AbstractProductReviewSaveRoute.php │ │ │ ├── Event │ │ │ │ ├── ProductReviewsLoadedEvent.php │ │ │ │ └── ReviewFormEvent.php │ │ │ ├── MatrixElement.php │ │ │ ├── ProductReviewLoader.php │ │ │ ├── ProductReviewResult.php │ │ │ ├── ProductReviewRoute.php │ │ │ ├── ProductReviewRouteResponse.php │ │ │ ├── ProductReviewSaveRoute.php │ │ │ ├── ProductReviewsWidgetLoadedHook.php │ │ │ └── RatingMatrix.php │ │ ├── SalesChannelProductCollection.php │ │ ├── SalesChannelProductDefinition.php │ │ ├── SalesChannelProductEntity.php │ │ ├── Search │ │ │ ├── AbstractProductSearchRoute.php │ │ │ ├── ProductSearchRoute.php │ │ │ ├── ProductSearchRouteResponse.php │ │ │ └── ResolvedCriteriaProductSearchRoute.php │ │ ├── Sorting │ │ │ ├── ProductSortingCollection.php │ │ │ ├── ProductSortingDefinition.php │ │ │ ├── ProductSortingEntity.php │ │ │ ├── ProductSortingExceptionHandler.php │ │ │ ├── ProductSortingHydrator.php │ │ │ ├── ProductSortingTranslationCollection.php │ │ │ ├── ProductSortingTranslationDefinition.php │ │ │ └── ProductSortingTranslationEntity.php │ │ └── Suggest │ │ │ ├── AbstractProductSuggestRoute.php │ │ │ ├── ProductSuggestRoute.php │ │ │ ├── ProductSuggestRouteResponse.php │ │ │ └── ResolvedCriteriaProductSuggestRoute.php │ ├── SearchKeyword │ │ ├── AnalyzedKeyword.php │ │ ├── AnalyzedKeywordCollection.php │ │ ├── KeywordLoader.php │ │ ├── ProductSearchBuilder.php │ │ ├── ProductSearchBuilderInterface.php │ │ ├── ProductSearchKeywordAnalyzer.php │ │ ├── ProductSearchKeywordAnalyzerInterface.php │ │ ├── ProductSearchTermInterpreter.php │ │ └── ProductSearchTermInterpreterInterface.php │ ├── State.php │ ├── Stock │ │ ├── AbstractStockStorage.php │ │ ├── AvailableStockMirrorSubscriber.php │ │ ├── LoadProductStockSubscriber.php │ │ ├── OrderStockSubscriber.php │ │ ├── StockAlteration.php │ │ ├── StockData.php │ │ ├── StockDataCollection.php │ │ ├── StockLoadRequest.php │ │ └── StockStorage.php │ ├── Subscriber │ │ └── ProductSubscriber.php │ └── Util │ │ └── VariantCombinationLoader.php ├── ProductExport │ ├── Api │ │ └── ProductExportController.php │ ├── Command │ │ └── ProductExportGenerateCommand.php │ ├── DataAbstractionLayer │ │ └── ProductExportExceptionHandler.php │ ├── Error │ │ ├── Error.php │ │ ├── ErrorCollection.php │ │ ├── ErrorMessage.php │ │ └── XmlValidationError.php │ ├── Event │ │ ├── ProductExportChangeEncodingEvent.php │ │ ├── ProductExportContentTypeEvent.php │ │ ├── ProductExportLoggingEvent.php │ │ ├── ProductExportProductCriteriaEvent.php │ │ ├── ProductExportRenderBodyContextEvent.php │ │ ├── ProductExportRenderFooterContextEvent.php │ │ └── ProductExportRenderHeaderContextEvent.php │ ├── EventListener │ │ └── ProductExportEventListener.php │ ├── Exception │ │ ├── DuplicateFileNameException.php │ │ ├── ExportInvalidException.php │ │ ├── ExportNotFoundException.php │ │ ├── ExportNotGeneratedException.php │ │ ├── MissingRootFilterException.php │ │ ├── SalesChannelDomainNotFoundException.php │ │ └── SalesChannelNotFoundException.php │ ├── ProductExportCollection.php │ ├── ProductExportDefinition.php │ ├── ProductExportEntity.php │ ├── ProductExportException.php │ ├── ProductExportHydrator.php │ ├── SalesChannel │ │ └── ExportController.php │ ├── ScheduledTask │ │ ├── ProductExportGenerateTask.php │ │ ├── ProductExportGenerateTaskHandler.php │ │ ├── ProductExportPartialGeneration.php │ │ └── ProductExportPartialGenerationHandler.php │ ├── Service │ │ ├── ProductExportFileHandler.php │ │ ├── ProductExportFileHandlerInterface.php │ │ ├── ProductExportGenerator.php │ │ ├── ProductExportGeneratorInterface.php │ │ ├── ProductExportRenderer.php │ │ ├── ProductExportRendererInterface.php │ │ ├── ProductExportValidator.php │ │ ├── ProductExportValidatorInterface.php │ │ ├── ProductExporter.php │ │ └── ProductExporterInterface.php │ ├── Struct │ │ ├── ExportBehavior.php │ │ └── ProductExportResult.php │ └── Validator │ │ ├── ValidatorInterface.php │ │ └── XmlValidator.php ├── ProductStream │ ├── Aggregate │ │ ├── ProductStreamFilter │ │ │ ├── ProductStreamFilterCollection.php │ │ │ ├── ProductStreamFilterDefinition.php │ │ │ ├── ProductStreamFilterEntity.php │ │ │ └── ProductStreamFilterHydrator.php │ │ └── ProductStreamTranslation │ │ │ ├── ProductStreamTranslationCollection.php │ │ │ ├── ProductStreamTranslationDefinition.php │ │ │ └── ProductStreamTranslationEntity.php │ ├── DataAbstractionLayer │ │ ├── ProductStreamIndexer.php │ │ └── ProductStreamIndexingMessage.php │ ├── Event │ │ └── ProductStreamIndexerEvent.php │ ├── Exception │ │ ├── FilterNotFoundException.php │ │ └── NoFilterException.php │ ├── ProductStreamCollection.php │ ├── ProductStreamDefinition.php │ ├── ProductStreamEntity.php │ ├── ProductStreamHydrator.php │ ├── ScheduledTask │ │ ├── UpdateProductStreamMappingTask.php │ │ └── UpdateProductStreamMappingTaskHandler.php │ └── Service │ │ ├── ProductStreamBuilder.php │ │ └── ProductStreamBuilderInterface.php ├── Property │ ├── Aggregate │ │ ├── PropertyGroupOption │ │ │ ├── PropertyGroupOptionCollection.php │ │ │ ├── PropertyGroupOptionDefinition.php │ │ │ ├── PropertyGroupOptionEntity.php │ │ │ └── PropertyGroupOptionHydrator.php │ │ ├── PropertyGroupOptionTranslation │ │ │ ├── PropertyGroupOptionTranslationCollection.php │ │ │ ├── PropertyGroupOptionTranslationDefinition.php │ │ │ └── PropertyGroupOptionTranslationEntity.php │ │ └── PropertyGroupTranslation │ │ │ ├── PropertyGroupTranslationCollection.php │ │ │ ├── PropertyGroupTranslationDefinition.php │ │ │ └── PropertyGroupTranslationEntity.php │ ├── PropertyEvents.php │ ├── PropertyGroupCollection.php │ ├── PropertyGroupDefinition.php │ ├── PropertyGroupEntity.php │ └── PropertyGroupHydrator.php ├── Resources │ └── config │ │ ├── routes.xml │ │ └── routes_test.xml ├── Rule │ ├── Aggregate │ │ ├── RuleCondition │ │ │ ├── RuleConditionCollection.php │ │ │ ├── RuleConditionDefinition.php │ │ │ └── RuleConditionEntity.php │ │ └── RuleTag │ │ │ └── RuleTagDefinition.php │ ├── DataAbstractionLayer │ │ ├── Indexing │ │ │ └── ConditionTypeNotFound.php │ │ ├── RuleAreaUpdater.php │ │ ├── RuleIndexer.php │ │ ├── RuleIndexerSubscriber.php │ │ ├── RuleIndexingMessage.php │ │ ├── RulePayloadSubscriber.php │ │ └── RulePayloadUpdater.php │ ├── Event │ │ └── RuleIndexerEvent.php │ ├── RuleCollection.php │ ├── RuleDefinition.php │ ├── RuleEntity.php │ ├── RuleEvents.php │ ├── RuleException.php │ └── RuleValidator.php ├── Seo │ ├── AbstractSeoResolver.php │ ├── Api │ │ └── SeoActionController.php │ ├── ConfiguredSeoUrlRoute.php │ ├── EmptyPathInfoResolver.php │ ├── Event │ │ ├── SeoEvents.php │ │ └── SeoUrlUpdateEvent.php │ ├── Exception │ │ ├── InvalidSeoUrlException.php │ │ ├── InvalidTemplateException.php │ │ ├── NoEntitiesForPreviewException.php │ │ └── SeoUrlRouteNotFoundException.php │ ├── Hreflang │ │ ├── HreflangCollection.php │ │ └── HreflangStruct.php │ ├── HreflangLoader.php │ ├── HreflangLoaderInterface.php │ ├── HreflangLoaderParameter.php │ ├── MainCategory │ │ ├── MainCategoryCollection.php │ │ ├── MainCategoryDefinition.php │ │ ├── MainCategoryEntity.php │ │ └── SalesChannel │ │ │ └── SalesChannelMainCategoryDefinition.php │ ├── SalesChannel │ │ ├── AbstractSeoUrlRoute.php │ │ ├── SeoResolverData.php │ │ ├── SeoUrlRoute.php │ │ ├── SeoUrlRouteResponse.php │ │ └── StoreApiSeoResolver.php │ ├── SeoException.php │ ├── SeoResolver.php │ ├── SeoTemplateReplacementVariable.php │ ├── SeoUrl │ │ ├── SalesChannel │ │ │ └── SalesChannelSeoUrlDefinition.php │ │ ├── SeoUrlCollection.php │ │ ├── SeoUrlDefinition.php │ │ └── SeoUrlEntity.php │ ├── SeoUrlGenerator.php │ ├── SeoUrlPersister.php │ ├── SeoUrlPlaceholderHandler.php │ ├── SeoUrlPlaceholderHandlerInterface.php │ ├── SeoUrlRoute │ │ ├── SeoUrlMapping.php │ │ ├── SeoUrlRouteConfig.php │ │ ├── SeoUrlRouteInterface.php │ │ └── SeoUrlRouteRegistry.php │ ├── SeoUrlTemplate │ │ ├── SeoUrlTemplateCollection.php │ │ ├── SeoUrlTemplateDefinition.php │ │ ├── SeoUrlTemplateEntity.php │ │ └── TemplateGroup.php │ ├── SeoUrlTwigFactory.php │ ├── SeoUrlUpdater.php │ └── Validation │ │ ├── SeoUrlDataValidationFactoryInterface.php │ │ └── SeoUrlValidationFactory.php ├── Sitemap │ ├── Commands │ │ └── SitemapGenerateCommand.php │ ├── ConfigHandler │ │ ├── ConfigHandlerInterface.php │ │ └── File.php │ ├── Event │ │ ├── SitemapFilterOpenTagEvent.php │ │ ├── SitemapGeneratedEvent.php │ │ ├── SitemapGenerationStartEvent.php │ │ ├── SitemapQueryEvent.php │ │ ├── SitemapRouteCacheKeyEvent.php │ │ ├── SitemapRouteCacheTagsEvent.php │ │ └── SitemapSalesChannelCriteriaEvent.php │ ├── Exception │ │ ├── AlreadyLockedException.php │ │ ├── InvalidSitemapKey.php │ │ ├── UnknownFileException.php │ │ └── UrlProviderNotFound.php │ ├── Extension │ │ └── SitemapFileExtension.php │ ├── Provider │ │ ├── AbstractUrlProvider.php │ │ ├── CategoryUrlProvider.php │ │ ├── CustomUrlProvider.php │ │ ├── HomeUrlProvider.php │ │ ├── LandingPageUrlProvider.php │ │ └── ProductUrlProvider.php │ ├── SalesChannel │ │ ├── AbstractSitemapRoute.php │ │ ├── SitemapFileRoute.php │ │ ├── SitemapRoute.php │ │ └── SitemapRouteResponse.php │ ├── ScheduledTask │ │ ├── SitemapGenerateTask.php │ │ ├── SitemapGenerateTaskHandler.php │ │ ├── SitemapMessage.php │ │ └── SitemapMessageHandler.php │ ├── Service │ │ ├── ConfigHandler.php │ │ ├── SitemapExporter.php │ │ ├── SitemapExporterInterface.php │ │ ├── SitemapHandle.php │ │ ├── SitemapHandleFactory.php │ │ ├── SitemapHandleFactoryInterface.php │ │ ├── SitemapHandleInterface.php │ │ ├── SitemapLister.php │ │ └── SitemapListerInterface.php │ ├── SitemapException.php │ └── Struct │ │ ├── Sitemap.php │ │ ├── SitemapCollection.php │ │ ├── SitemapGenerationResult.php │ │ ├── Url.php │ │ └── UrlResult.php └── Test │ ├── Category │ ├── CategoryBuilder.php │ └── Service │ │ ├── CountingEntityReader.php │ │ └── CountingEntitySearcher.php │ ├── Cms │ └── LayoutBuilder.php │ ├── Flow │ ├── OrderActionTrait.php │ ├── TestFlowBusinessEvent.php │ └── fixtures │ │ ├── CustomerAwareEvent.php │ │ └── RawFlowEvent.php │ ├── ImportExport │ ├── MockRepository.php │ ├── StockSubscriber.php │ └── TestSubscriber.php │ ├── Media │ └── MediaFixtures.php │ ├── Product │ ├── ProductBuilder.php │ ├── ProductFeatureSet │ │ └── ProductFeatureSetFixtures.php │ └── SalesChannel │ │ └── Fixture │ │ └── ListingTestData.php │ ├── Seo │ └── Twig │ │ └── LastLetterBigTwigFilter.php │ ├── TestNavigationSeoUrlRoute.php │ └── TestProductSeoUrlRoute.php ├── Defaults.php ├── DevOps ├── DependencyInjection │ ├── services.xml │ ├── services_dev.xml │ └── services_e2e.xml ├── DevOps.php ├── Docs │ ├── App │ │ ├── DocsAppEventCommand.php │ │ └── HookableEventDoc.php │ ├── ArrayWriter.php │ ├── DocsException.php │ └── Script │ │ ├── HooksReferenceGenerator.php │ │ ├── ScriptReferenceDataCollector.php │ │ ├── ScriptReferenceGenerator.php │ │ ├── ScriptReferenceGeneratorCommand.php │ │ └── ServiceReferenceGenerator.php ├── Environment │ ├── EnvironmentHelper.php │ ├── EnvironmentHelperTransformerData.php │ └── EnvironmentHelperTransformerInterface.php ├── Resources │ └── templates │ │ ├── app-system-event-description-permissions.php │ │ ├── hook-reference.md.twig │ │ ├── hookable-events-list.md.twig │ │ └── service-reference.md.twig ├── StaticAnalyze │ ├── PHPStan │ │ ├── Configuration.php │ │ ├── README.md │ │ ├── Rules │ │ │ ├── AbstractClassUsageRule.php │ │ │ ├── AclValidPermissionsHelper.php │ │ │ ├── AclValidPermissionsInMethodRule.php │ │ │ ├── AclValidPermissionsInRouteAttributesRule.php │ │ │ ├── AttributeFinalRule.php │ │ │ ├── DALFieldsMustBeRegisteredWithSchemaBuilder.php │ │ │ ├── DecorationPatternRule.php │ │ │ ├── Deprecation │ │ │ │ └── DeprecatedMethodsThrowDeprecationRule.php │ │ │ ├── DomainExceptionRule.php │ │ │ ├── ExtensionRule.php │ │ │ ├── InTestClassTrait.php │ │ │ ├── Internal │ │ │ │ ├── InternalClassRule.php │ │ │ │ └── InternalMethodRule.php │ │ │ ├── MessageHandlerFinalRule.php │ │ │ ├── MessagesShouldNotUsePHPStanTypes.php │ │ │ ├── Migration │ │ │ │ ├── AddColumnRule.php │ │ │ │ ├── InMigrationClassTrait.php │ │ │ │ ├── NoAfterStatementRule.php │ │ │ │ └── NoDropStatementInUpdateRule.php │ │ │ ├── NameConstantEntityDefinition.php │ │ │ ├── NoAddCacheTagEventRule.php │ │ │ ├── NoDALAutoload.php │ │ │ ├── NoDelayStampRule.php │ │ │ ├── NoEnvironmentHelperInsideCompilerPassRule.php │ │ │ ├── NoFileExistsRule.php │ │ │ ├── NoFlowStoreFunctionRule.php │ │ │ ├── NoManualSalesChannelContextCreationRule.php │ │ │ ├── NoNewRequestInStorefrontRule.php │ │ │ ├── NoSuperGlobalsInsideCompilerPassRule.php │ │ │ ├── NoUnconfiguredMetricAllowed.php │ │ │ ├── NoUpdatesInExecuteQueryRule.php │ │ │ ├── NotExtendFlowEventAwareRule.php │ │ │ ├── PackageAnnotationRule.php │ │ │ ├── PropertyNativeTypeRule.php │ │ │ ├── PublicServiceDecoratorRule.php │ │ │ ├── RestrictNamespacesRule.php │ │ │ ├── RouteScopeRule.php │ │ │ ├── RuleAreasFlagNotAllowedRule.php │ │ │ ├── RuleConditionHasRuleConfigRule.php │ │ │ ├── ScheduledTaskTooLowIntervalRule.php │ │ │ ├── ShopwareNamespaceStyleRule.php │ │ │ ├── StorefrontRouteUsageRule.php │ │ │ ├── Symplify │ │ │ │ └── NoReturnSetterMethodWithFluentSettersRule.php │ │ │ ├── Tests │ │ │ │ ├── CoversAttributeRule.php │ │ │ │ ├── MockingSimpleObjectsNotAllowedRule.php │ │ │ │ ├── NoAssertsOnObjectsRule.php │ │ │ │ ├── PHPUnitClassAttributesOverAnnotationsRule.php │ │ │ │ ├── PHPUnitMethodAttributesOverAnnotationsRule.php │ │ │ │ ├── TestReflectionClassInterface.php │ │ │ │ └── TestRuleHelper.php │ │ │ ├── UseCLIContextRule.php │ │ │ └── UseHasherRule.php │ │ ├── Type │ │ │ └── CollectionHasSpecifyingExtension.php │ │ ├── common.neon │ │ ├── core-rules.neon │ │ ├── extension.neon │ │ └── rules.neon │ ├── StaticAnalyzeKernel.php │ ├── console-application.php │ ├── phpstan-bootstrap.php │ └── print-ignored-errors-by-area.php ├── System │ └── Command │ │ ├── OpenApiValidationCommand.php │ │ ├── SyncComposerVersionCommand.php │ │ ├── SystemDumpDatabaseCommand.php │ │ └── SystemRestoreDatabaseCommand.php └── Test │ ├── AnnotationTagTester.php │ ├── Command │ ├── MakeCoverageTestCommand.php │ └── stubs │ │ ├── migration-test.stub │ │ └── unit-test.stub │ └── Environment │ ├── EnvironmentHelperTest.php │ └── _fixtures │ ├── EnvironmentHelperTransformer.php │ └── EnvironmentHelperTransformer2.php ├── Framework ├── Adapter │ ├── AdapterException.php │ ├── Asset │ │ ├── AssetInstallCommand.php │ │ ├── AssetPackageService.php │ │ ├── FallbackUrlPackage.php │ │ ├── FlysystemLastModifiedVersionStrategy.php │ │ └── PrefixVersionStrategy.php │ ├── Cache │ │ ├── CacheClearer.php │ │ ├── CacheCompilerPass.php │ │ ├── CacheCompressor.php │ │ ├── CacheInvalidationSubscriber.php │ │ ├── CacheInvalidator.php │ │ ├── CacheStateSubscriber.php │ │ ├── CacheTagCollection.php │ │ ├── CacheTagCollector.php │ │ ├── CacheValueCompressor.php │ │ ├── Event │ │ │ ├── AddCacheTagEvent.php │ │ │ ├── HttpCacheCookieEvent.php │ │ │ ├── HttpCacheHitEvent.php │ │ │ ├── HttpCacheKeyEvent.php │ │ │ └── HttpCacheStoreEvent.php │ │ ├── Http │ │ │ ├── CacheAttribute.php │ │ │ ├── CacheControlDirectives.php │ │ │ ├── CacheControlListener.php │ │ │ ├── CacheHeadersService.php │ │ │ ├── CacheKey.php │ │ │ ├── CachePolicy.php │ │ │ ├── CachePolicyProvider.php │ │ │ ├── CachePolicyProviderFactory.php │ │ │ ├── CacheRelevantRulesResolver.php │ │ │ ├── CacheResponseSubscriber.php │ │ │ ├── CacheStateValidator.php │ │ │ ├── CacheStore.php │ │ │ ├── DefaultPolicies.php │ │ │ ├── Extension │ │ │ │ ├── CacheHashRequiredExtension.php │ │ │ │ └── ResolveCacheRelevantRuleIdsExtension.php │ │ │ └── HttpCacheKeyGenerator.php │ │ ├── InvalidateCacheEvent.php │ │ ├── InvalidateCacheTask.php │ │ ├── InvalidateCacheTaskHandler.php │ │ ├── InvalidatorStorage │ │ │ ├── AbstractInvalidatorStorage.php │ │ │ ├── MySQLInvalidatorStorage.php │ │ │ └── RedisInvalidatorStorage.php │ │ ├── Message │ │ │ ├── CleanupOldCacheFolders.php │ │ │ ├── CleanupOldCacheFoldersHandler.php │ │ │ ├── RefreshHttpCacheMessage.php │ │ │ └── RefreshHttpCacheMessageHandler.php │ │ ├── RedisConnectionFactory.php │ │ ├── ReverseProxy │ │ │ ├── AbstractReverseProxyGateway.php │ │ │ ├── FastlyReverseProxyGateway.php │ │ │ ├── ReverseProxyCache.php │ │ │ ├── ReverseProxyCompilerPass.php │ │ │ ├── ReverseProxyException.php │ │ │ └── VarnishReverseProxyGateway.php │ │ ├── Script │ │ │ ├── CacheInvalidationHook.php │ │ │ ├── Facade │ │ │ │ ├── CacheInvalidatorFacade.php │ │ │ │ ├── CacheInvalidatorFacadeHookFactory.php │ │ │ │ ├── WrittenEventIdCollection.php │ │ │ │ └── WrittenEventScriptFacade.php │ │ │ └── ScriptCacheInvalidationSubscriber.php │ │ ├── StoreApiRouteCacheKeyEvent.php │ │ ├── StoreApiRouteCacheTagsEvent.php │ │ └── Telemetry │ │ │ └── CacheTelemetrySubscriber.php │ ├── Command │ │ ├── CacheClearAllCommand.php │ │ ├── CacheClearHttpCommand.php │ │ ├── CacheInvalidateDelayedCommand.php │ │ ├── CacheWatchDelayedCommand.php │ │ └── S3FilesystemVisibilityCommand.php │ ├── Composer │ │ ├── ComposerInfoProvider.php │ │ └── ComposerPackage.php │ ├── Console │ │ └── ShopwareStyle.php │ ├── Database │ │ ├── MySQLFactory.php │ │ ├── Mysql.php │ │ └── ReplicaConnection.php │ ├── Doctrine │ │ ├── Messenger │ │ │ └── DoctrineTransportFactory.php │ │ └── Patch │ │ │ └── AbstractAsset.php │ ├── Filesystem │ │ ├── Adapter │ │ │ ├── AdapterFactoryInterface.php │ │ │ ├── AsyncAwsS3WriteBatchAdapter.php │ │ │ ├── AwsS3v3Factory.php │ │ │ ├── GoogleStorageFactory.php │ │ │ └── LocalFactory.php │ │ ├── Exception │ │ │ ├── AdapterFactoryNotFoundException.php │ │ │ └── DuplicateFilesystemFactoryException.php │ │ ├── FilesystemFactory.php │ │ ├── MemoryFilesystemAdapter.php │ │ ├── Plugin │ │ │ ├── CopyBatch.php │ │ │ ├── CopyBatchInput.php │ │ │ ├── CopyBatchInputFactory.php │ │ │ └── WriteBatchInterface.php │ │ └── PrefixFilesystem.php │ ├── Kernel │ │ ├── EsiDecoration.php │ │ ├── HttpCacheKernel.php │ │ ├── HttpKernel.php │ │ └── KernelFactory.php │ ├── Messenger │ │ ├── Middleware │ │ │ └── QueuedTimeMiddleware.php │ │ └── Stamp │ │ │ └── SentAtStamp.php │ ├── Redis │ │ ├── RedisConnectionProvider.php │ │ └── RedisConnectionsCompilerPass.php │ ├── Storage │ │ ├── AbstractKeyValueStorage.php │ │ └── MySQLKeyValueStorage.php │ ├── Translation │ │ ├── AbstractTranslator.php │ │ └── Translator.php │ └── Twig │ │ ├── AppTemplateIterator.php │ │ ├── ConfigurableFilesystemCache.php │ │ ├── EntityTemplateLoader.php │ │ ├── Extension │ │ ├── BuildBreadcrumbExtension.php │ │ ├── CategoryUrlExtension.php │ │ ├── ComparisonExtension.php │ │ ├── FeatureFlagExtension.php │ │ ├── InAppPurchaseExtension.php │ │ ├── InstanceOfExtension.php │ │ ├── MediaExtension.php │ │ ├── NodeExtension.php │ │ ├── PcreExtension.php │ │ ├── PhpSyntaxExtension.php │ │ ├── RawUrlFunctionExtension.php │ │ ├── SeoUrlFunctionExtension.php │ │ ├── SwSanitizeTwigFilter.php │ │ └── TwigFeaturesWithInheritanceExtension.php │ │ ├── Filter │ │ ├── CurrencyFilter.php │ │ ├── EmailIdnTwigFilter.php │ │ ├── LeadingSpacesFilter.php │ │ └── ReplaceRecursiveFilter.php │ │ ├── NamespaceHierarchy │ │ ├── BundleHierarchyBuilder.php │ │ ├── NamespaceHierarchyBuilder.php │ │ └── TemplateNamespaceHierarchyBuilderInterface.php │ │ ├── Node │ │ ├── FeatureCallSilentToken.php │ │ ├── MacroOverrideNode.php │ │ ├── ReturnNode.php │ │ ├── SwBlockReferenceExpression.php │ │ └── SwInclude.php │ │ ├── SecurityExtension.php │ │ ├── StringTemplateRenderer.php │ │ ├── SwTwigFunction.php │ │ ├── TemplateFinder.php │ │ ├── TemplateFinderInterface.php │ │ ├── TemplateIterator.php │ │ ├── TemplateScopeDetector.php │ │ ├── TokenParser │ │ ├── EmbedTokenParser.php │ │ ├── ExtendsTokenParser.php │ │ ├── FeatureFlagCallTokenParser.php │ │ ├── FromTokenParser.php │ │ ├── ImportTokenParser.php │ │ ├── IncludeTokenParser.php │ │ ├── MacroOverrideTokenParserMacro.php │ │ ├── ReturnNodeTokenParser.php │ │ ├── SwMacroFunctionTokenParser.php │ │ └── UseTokenParser.php │ │ ├── TwigEnvironment.php │ │ ├── TwigVariableParser.php │ │ └── TwigVariableParserFactory.php ├── Api │ ├── Acl │ │ ├── AclAnnotationValidator.php │ │ ├── AclCriteriaValidator.php │ │ ├── AclWriteValidator.php │ │ ├── Event │ │ │ ├── AclGetAdditionalPrivilegesEvent.php │ │ │ └── CommandAclValidationEvent.php │ │ └── Role │ │ │ ├── AclRoleCollection.php │ │ │ ├── AclRoleDefinition.php │ │ │ ├── AclRoleEntity.php │ │ │ ├── AclRoleEvents.php │ │ │ └── AclUserRoleDefinition.php │ ├── ApiDefinition │ │ ├── ApiDefinitionGeneratorInterface.php │ │ ├── ApiDefinitionGeneratorNotFoundException.php │ │ ├── ApiTypeNotFoundException.php │ │ ├── DefinitionService.php │ │ ├── Generator │ │ │ ├── BundleSchemaPathCollection.php │ │ │ ├── CachedEntitySchemaGenerator.php │ │ │ ├── EntitySchemaGenerator.php │ │ │ ├── OpenApi │ │ │ │ ├── DeactivateValidationAnalysis.php │ │ │ │ ├── OpenApiDefinitionSchemaBuilder.php │ │ │ │ ├── OpenApiPathBuilder.php │ │ │ │ └── OpenApiSchemaBuilder.php │ │ │ ├── OpenApi3Generator.php │ │ │ ├── OpenApiFileLoader.php │ │ │ ├── Schema │ │ │ │ ├── AdminApi │ │ │ │ │ ├── components │ │ │ │ │ │ ├── responses │ │ │ │ │ │ │ └── OpenApi3Response.json │ │ │ │ │ │ └── schemas │ │ │ │ │ │ │ ├── Criteria.json │ │ │ │ │ │ │ ├── MeasurementUnits.json │ │ │ │ │ │ │ ├── OAuthScopes.json │ │ │ │ │ │ │ ├── Price.json │ │ │ │ │ │ │ ├── businessEventsResponse.json │ │ │ │ │ │ │ ├── flowBuilderActionsResponse.json │ │ │ │ │ │ │ └── infoConfigResponse.json │ │ │ │ │ ├── paths │ │ │ │ │ │ ├── app.json │ │ │ │ │ │ ├── cache.json │ │ │ │ │ │ ├── cache_info.json │ │ │ │ │ │ ├── cleanup.json │ │ │ │ │ │ ├── config.json │ │ │ │ │ │ ├── container_cache.json │ │ │ │ │ │ ├── customer_impersonation.json │ │ │ │ │ │ ├── document.json │ │ │ │ │ │ ├── events.json.json │ │ │ │ │ │ ├── flow-actions.json.json │ │ │ │ │ │ ├── health_check.json │ │ │ │ │ │ ├── increment.json │ │ │ │ │ │ ├── index-products.json │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── indexing.json │ │ │ │ │ │ ├── info.json │ │ │ │ │ │ ├── mail-template.json │ │ │ │ │ │ ├── media.json │ │ │ │ │ │ ├── message-queue.json │ │ │ │ │ │ ├── message-stats.json │ │ │ │ │ │ ├── number-range.json │ │ │ │ │ │ ├── openapi3.json.json │ │ │ │ │ │ ├── order.json │ │ │ │ │ │ ├── order_address.json │ │ │ │ │ │ ├── order_delivery.json │ │ │ │ │ │ ├── order_transaction.json │ │ │ │ │ │ ├── order_transaction_capture_refund.json │ │ │ │ │ │ ├── scheduled-task.json │ │ │ │ │ │ ├── sso.json │ │ │ │ │ │ ├── sync.json │ │ │ │ │ │ ├── token.json │ │ │ │ │ │ └── version.json │ │ │ │ │ └── tags │ │ │ │ │ │ └── tags.json │ │ │ │ └── StoreApi │ │ │ │ │ ├── components │ │ │ │ │ ├── parameters │ │ │ │ │ │ ├── criteria.json │ │ │ │ │ │ └── productListingFlags.json │ │ │ │ │ ├── responses │ │ │ │ │ │ ├── CategoryListResponse.json │ │ │ │ │ │ ├── ContextTokenResponse.json │ │ │ │ │ │ ├── CountryListResponse.json │ │ │ │ │ │ ├── CountryStateListResponse.json │ │ │ │ │ │ ├── CurrencyListResponse.json │ │ │ │ │ │ ├── LanguageListResponse.json │ │ │ │ │ │ ├── OpenApi3Response.json │ │ │ │ │ │ ├── PaymentMethodListResponse.json │ │ │ │ │ │ ├── ProductListResponse.json │ │ │ │ │ │ ├── SalutationListResponse.json │ │ │ │ │ │ ├── SeoUrlListResponse.json │ │ │ │ │ │ └── ShippingMethodListResponse.json │ │ │ │ │ └── schemas │ │ │ │ │ │ ├── AccountNewsletterRecipient.json │ │ │ │ │ │ ├── AggregationBuckets.json │ │ │ │ │ │ ├── AggregationMetrics.json │ │ │ │ │ │ ├── Association.json │ │ │ │ │ │ ├── Breadcrumb.json │ │ │ │ │ │ ├── CalculatedPrice.json │ │ │ │ │ │ ├── Cart.json │ │ │ │ │ │ ├── CartDelivery.json │ │ │ │ │ │ ├── CartDeliveryInformation.json │ │ │ │ │ │ ├── CartDeliveryPosition.json │ │ │ │ │ │ ├── CartError.json │ │ │ │ │ │ ├── CartItems.json │ │ │ │ │ │ ├── CartListPrice.json │ │ │ │ │ │ ├── CartPriceQuantity.json │ │ │ │ │ │ ├── CartPriceReference.json │ │ │ │ │ │ ├── Category.json │ │ │ │ │ │ ├── CmsBlock.json │ │ │ │ │ │ ├── CmsPage.json │ │ │ │ │ │ ├── CmsSection.json │ │ │ │ │ │ ├── CmsSlot.json │ │ │ │ │ │ ├── ContextMeasurementSystemInfo.json │ │ │ │ │ │ ├── CookieEntry.json │ │ │ │ │ │ ├── CookieEntryCollection.json │ │ │ │ │ │ ├── CookieGroup.json │ │ │ │ │ │ ├── CookieGroupCollection.json │ │ │ │ │ │ ├── CookieRouteResponse.json │ │ │ │ │ │ ├── Criteria.json │ │ │ │ │ │ ├── CrossSellingElement.json │ │ │ │ │ │ ├── CrossSellingElementCollection.json │ │ │ │ │ │ ├── Customer.json │ │ │ │ │ │ ├── CustomerAddress.json │ │ │ │ │ │ ├── CustomerAddressBody.json │ │ │ │ │ │ ├── CustomerAddressRead.json │ │ │ │ │ │ ├── CustomerGroup.json │ │ │ │ │ │ ├── Document.json │ │ │ │ │ │ ├── EntitySearchResult.json │ │ │ │ │ │ ├── FindProductVariantRouteResponse.json │ │ │ │ │ │ ├── LandingPage.json │ │ │ │ │ │ ├── LineItem.json │ │ │ │ │ │ ├── ListPrice.json │ │ │ │ │ │ ├── MeasurementUnits.json │ │ │ │ │ │ ├── Media.json │ │ │ │ │ │ ├── MediaThumbnail.json │ │ │ │ │ │ ├── NavigationRouteResponse.json │ │ │ │ │ │ ├── NavigationType.json │ │ │ │ │ │ ├── Order.json │ │ │ │ │ │ ├── OrderLineItem.json │ │ │ │ │ │ ├── OrderLineItemDownload.json │ │ │ │ │ │ ├── OrderRouteResponse.json │ │ │ │ │ │ ├── Price.json │ │ │ │ │ │ ├── Product.json │ │ │ │ │ │ ├── ProductDetailResponse.json │ │ │ │ │ │ ├── ProductJsonApi.json │ │ │ │ │ │ ├── ProductListingCriteria.json │ │ │ │ │ │ ├── ProductListingFlags.json │ │ │ │ │ │ ├── ProductListingResult.json │ │ │ │ │ │ ├── ProductMeasurements.json │ │ │ │ │ │ ├── ProductMedia.json │ │ │ │ │ │ ├── PropertyGroupOption.json │ │ │ │ │ │ ├── ReferencePrice.json │ │ │ │ │ │ ├── SalesChannelContext.json │ │ │ │ │ │ ├── SeoUrl.json │ │ │ │ │ │ ├── ShippingMethodPageRouteResponse.json │ │ │ │ │ │ ├── Sitemap.json │ │ │ │ │ │ ├── StateMachineState.json │ │ │ │ │ │ ├── SuccessResponse.json │ │ │ │ │ │ └── WishlistLoadRouteResponse.json │ │ │ │ │ ├── paths │ │ │ │ │ ├── account.json │ │ │ │ │ ├── app.json │ │ │ │ │ ├── breadcrumb.json │ │ │ │ │ ├── category.json │ │ │ │ │ ├── checkout.json │ │ │ │ │ ├── cms.json │ │ │ │ │ ├── contact-form.json │ │ │ │ │ ├── context.json │ │ │ │ │ ├── cookie.json │ │ │ │ │ ├── country-state.json │ │ │ │ │ ├── country.json │ │ │ │ │ ├── currency.json │ │ │ │ │ ├── customer-group-registration.json │ │ │ │ │ ├── customer.json │ │ │ │ │ ├── document.json │ │ │ │ │ ├── handle-payment.json │ │ │ │ │ ├── info.json │ │ │ │ │ ├── landing-page.json │ │ │ │ │ ├── language.json │ │ │ │ │ ├── media.json │ │ │ │ │ ├── navigation.json │ │ │ │ │ ├── newsletter.json │ │ │ │ │ ├── openapi3.json.json │ │ │ │ │ ├── order.json │ │ │ │ │ ├── payment-method.json │ │ │ │ │ ├── product-export.json │ │ │ │ │ ├── product-listing.json │ │ │ │ │ ├── product.json │ │ │ │ │ ├── salutation.json │ │ │ │ │ ├── script.json │ │ │ │ │ ├── search-suggest.json │ │ │ │ │ ├── search.json │ │ │ │ │ ├── seo-url.json │ │ │ │ │ ├── shipping-method.json │ │ │ │ │ └── sitemap.json │ │ │ │ │ └── tags │ │ │ │ │ └── tags.json │ │ │ └── StoreApiGenerator.php │ │ └── README.md │ ├── ApiException.php │ ├── Command │ │ ├── CreateIntegrationCommand.php │ │ ├── DumpClassSchemaCommand.php │ │ └── DumpSchemaCommand.php │ ├── Context │ │ ├── AdminApiSource.php │ │ ├── AdminSalesChannelApiSource.php │ │ ├── ContextSource.php │ │ ├── ContextValueResolver.php │ │ ├── Exception │ │ │ ├── InvalidContextSourceException.php │ │ │ └── InvalidContextSourceUserException.php │ │ ├── SalesChannelApiSource.php │ │ ├── ShopApiSource.php │ │ └── SystemSource.php │ ├── Controller │ │ ├── AccessKeyController.php │ │ ├── AclController.php │ │ ├── ApiController.php │ │ ├── AuthController.php │ │ ├── CacheController.php │ │ ├── CustomSnippetFormatController.php │ │ ├── Exception │ │ │ ├── AuthThrottledException.php │ │ │ └── PermissionDeniedException.php │ │ ├── FallbackController.php │ │ ├── FeatureFlagController.php │ │ ├── HealthCheckController.php │ │ ├── IndexingController.php │ │ ├── InfoController.php │ │ ├── IntegrationController.php │ │ ├── SalesChannelProxyController.php │ │ ├── SyncController.php │ │ └── UserController.php │ ├── EventListener │ │ ├── Acl │ │ │ └── CreditOrderLineItemListener.php │ │ ├── Authentication │ │ │ ├── ApiAuthenticationListener.php │ │ │ ├── SalesChannelAuthenticationListener.php │ │ │ └── UserCredentialsChangedSubscriber.php │ │ ├── CorsListener.php │ │ ├── ErrorResponseFactory.php │ │ ├── ExpectationSubscriber.php │ │ ├── JsonRequestTransformerListener.php │ │ ├── ResponseExceptionListener.php │ │ └── ResponseHeaderListener.php │ ├── Exception │ │ ├── ExpectationFailedException.php │ │ ├── IncompletePrimaryKeyException.php │ │ ├── InvalidSalesChannelIdException.php │ │ ├── InvalidSyncOperationException.php │ │ ├── InvalidVersionNameException.php │ │ ├── LiveVersionDeleteException.php │ │ ├── MissingPrivilegeException.php │ │ ├── NoEntityClonedException.php │ │ └── ResourceNotFoundException.php │ ├── HealthCheck │ │ └── Event │ │ │ └── HealthCheckEvent.php │ ├── OAuth │ │ ├── AccessToken.php │ │ ├── AccessTokenRepository.php │ │ ├── Client │ │ │ └── ApiClient.php │ │ ├── ClientRepository.php │ │ ├── FakeCryptKey.php │ │ ├── JWTConfigurationFactory.php │ │ ├── RefreshToken.php │ │ ├── RefreshTokenRepository.php │ │ ├── Scope │ │ │ ├── AdminScope.php │ │ │ ├── UserVerifiedScope.php │ │ │ └── WriteScope.php │ │ ├── ScopeRepository.php │ │ ├── SymfonyBearerTokenValidator.php │ │ ├── User │ │ │ └── User.php │ │ └── UserRepository.php │ ├── Response │ │ ├── JsonApiResponse.php │ │ ├── ResponseFactoryInterface.php │ │ ├── ResponseFactoryInterfaceValueResolver.php │ │ ├── ResponseFactoryRegistry.php │ │ └── Type │ │ │ ├── Api │ │ │ ├── JsonApiType.php │ │ │ └── JsonType.php │ │ │ └── JsonFactoryBase.php │ ├── Route │ │ ├── ApiRouteInfoResolver.php │ │ ├── ApiRouteLoader.php │ │ └── RouteInfo.php │ ├── Serializer │ │ ├── JsonApiDecoder.php │ │ ├── JsonApiEncoder.php │ │ ├── JsonApiEncodingResult.php │ │ ├── JsonEntityEncoder.php │ │ └── Record.php │ ├── Sync │ │ ├── AbstractFkResolver.php │ │ ├── FkReference.php │ │ ├── SyncBehavior.php │ │ ├── SyncFkResolver.php │ │ ├── SyncOperation.php │ │ ├── SyncResult.php │ │ ├── SyncService.php │ │ └── SyncServiceInterface.php │ └── Util │ │ └── AccessKeyHelper.php ├── App │ ├── ActionButton │ │ ├── ActionButtonLoader.php │ │ ├── AppAction.php │ │ ├── AppActionLoader.php │ │ ├── Executor.php │ │ ├── Response │ │ │ ├── ActionButtonResponse.php │ │ │ ├── ActionButtonResponseFactory.php │ │ │ ├── ActionButtonResponseFactoryInterface.php │ │ │ ├── NotificationResponse.php │ │ │ ├── NotificationResponseFactory.php │ │ │ ├── OpenModalResponse.php │ │ │ ├── OpenModalResponseFactory.php │ │ │ ├── OpenNewTabResponse.php │ │ │ ├── OpenNewTabResponseFactory.php │ │ │ ├── ReloadDataResponse.php │ │ │ └── ReloadDataResponseFactory.php │ │ └── appActionEndpointSchema.json │ ├── ActiveAppsLoader.php │ ├── Aggregate │ │ ├── ActionButton │ │ │ ├── ActionButtonCollection.php │ │ │ ├── ActionButtonDefinition.php │ │ │ └── ActionButtonEntity.php │ │ ├── ActionButtonTranslation │ │ │ ├── ActionButtonTranslationCollection.php │ │ │ ├── ActionButtonTranslationDefinition.php │ │ │ └── ActionButtonTranslationEntity.php │ │ ├── AppPaymentMethod │ │ │ ├── AppPaymentMethodCollection.php │ │ │ ├── AppPaymentMethodDefinition.php │ │ │ └── AppPaymentMethodEntity.php │ │ ├── AppScriptCondition │ │ │ ├── AppScriptConditionCollection.php │ │ │ ├── AppScriptConditionDefinition.php │ │ │ └── AppScriptConditionEntity.php │ │ ├── AppScriptConditionTranslation │ │ │ ├── AppScriptConditionTranslationCollection.php │ │ │ ├── AppScriptConditionTranslationDefinition.php │ │ │ └── AppScriptConditionTranslationEntity.php │ │ ├── AppShippingMethod │ │ │ ├── AppShippingMethodDefinition.php │ │ │ └── AppShippingMethodEntity.php │ │ ├── AppTranslation │ │ │ ├── AppTranslationCollection.php │ │ │ ├── AppTranslationDefinition.php │ │ │ └── AppTranslationEntity.php │ │ ├── CmsBlock │ │ │ ├── AppCmsBlockCollection.php │ │ │ ├── AppCmsBlockDefinition.php │ │ │ └── AppCmsBlockEntity.php │ │ ├── CmsBlockTranslation │ │ │ ├── AppCmsBlockTranslationCollection.php │ │ │ ├── AppCmsBlockTranslationDefinition.php │ │ │ └── AppCmsBlockTranslationEntity.php │ │ ├── FlowAction │ │ │ ├── AppFlowActionCollection.php │ │ │ ├── AppFlowActionDefinition.php │ │ │ └── AppFlowActionEntity.php │ │ ├── FlowActionTranslation │ │ │ ├── AppFlowActionTranslationCollection.php │ │ │ ├── AppFlowActionTranslationDefinition.php │ │ │ └── AppFlowActionTranslationEntity.php │ │ └── FlowEvent │ │ │ ├── AppFlowEventCollection.php │ │ │ ├── AppFlowEventDefinition.php │ │ │ └── AppFlowEventEntity.php │ ├── Api │ │ ├── AppActionController.php │ │ ├── AppCmsController.php │ │ ├── AppJWTGenerateRoute.php │ │ ├── AppPrivilegeController.php │ │ └── ShopIdController.php │ ├── AppArchiveValidator.php │ ├── AppCollection.php │ ├── AppDefinition.php │ ├── AppDownloader.php │ ├── AppEntity.php │ ├── AppEvents.php │ ├── AppException.php │ ├── AppExtractor.php │ ├── AppLocaleProvider.php │ ├── AppService.php │ ├── AppStateService.php │ ├── Checkout │ │ ├── Gateway │ │ │ ├── AppCheckoutGateway.php │ │ │ └── AppCheckoutGatewayResponse.php │ │ └── Payload │ │ │ ├── AppCheckoutGatewayPayload.php │ │ │ └── AppCheckoutGatewayPayloadService.php │ ├── Cms │ │ ├── AbstractBlockTemplateLoader.php │ │ ├── BlockTemplateLoader.php │ │ ├── CmsExtensions.php │ │ ├── Schema │ │ │ └── cms-1.0.xsd │ │ └── Xml │ │ │ ├── Block.php │ │ │ ├── Blocks.php │ │ │ ├── Config.php │ │ │ ├── DefaultConfig.php │ │ │ └── Slot.php │ ├── Command │ │ ├── AbstractAppActivationCommand.php │ │ ├── ActivateAppCommand.php │ │ ├── AppListCommand.php │ │ ├── AppPrinter.php │ │ ├── ChangeShopIdCommand.php │ │ ├── CheckShopIdCommand.php │ │ ├── CreateAppCommand.php │ │ ├── DeactivateAppCommand.php │ │ ├── InstallAppCommand.php │ │ ├── RefreshAppCommand.php │ │ ├── UninstallAppCommand.php │ │ └── ValidateAppCommand.php │ ├── Context │ │ ├── Gateway │ │ │ ├── AppContextGateway.php │ │ │ └── AppContextGatewayResponse.php │ │ └── Payload │ │ │ └── AppContextGatewayPayloadService.php │ ├── Cookie │ │ └── AppCookieCollectListener.php │ ├── Delta │ │ ├── AbstractAppDeltaProvider.php │ │ ├── AppConfirmationDeltaProvider.php │ │ ├── DomainsDeltaProvider.php │ │ └── PermissionsDeltaProvider.php │ ├── Event │ │ ├── AppActivatedEvent.php │ │ ├── AppChangedEvent.php │ │ ├── AppDeactivatedEvent.php │ │ ├── AppDeletedEvent.php │ │ ├── AppFlowActionEvent.php │ │ ├── AppInstalledEvent.php │ │ ├── AppPermissionsUpdated.php │ │ ├── AppScriptConditionEvents.php │ │ ├── AppUpdatedEvent.php │ │ ├── CustomAppEvent.php │ │ ├── Hooks │ │ │ ├── AppActivatedHook.php │ │ │ ├── AppDeactivatedHook.php │ │ │ ├── AppDeletedHook.php │ │ │ ├── AppInstalledHook.php │ │ │ ├── AppLifecycleHook.php │ │ │ ├── AppScriptConditionHook.php │ │ │ └── AppUpdatedHook.php │ │ ├── ManifestChangedEvent.php │ │ └── PostAppDeletedEvent.php │ ├── Exception │ │ ├── AppAlreadyInstalledException.php │ │ ├── AppArchiveValidationFailure.php │ │ ├── AppCmsExtensionException.php │ │ ├── AppDownloadException.php │ │ ├── AppLicenseCouldNotBeVerifiedException.php │ │ ├── AppNotFoundException.php │ │ ├── AppRegistrationException.php │ │ ├── AppValidationException.php │ │ ├── AppXmlParsingException.php │ │ ├── CustomFieldTypeNotFoundException.php │ │ ├── InvalidAppConfigurationException.php │ │ ├── InvalidAppFlowActionVariableException.php │ │ ├── ShopIdChangeStrategyNotFoundException.php │ │ ├── ShopIdChangeSuggestedException.php │ │ └── UserAbortedCommandException.php │ ├── Flow │ │ ├── Action │ │ │ ├── Action.php │ │ │ ├── AppFlowActionLoadedSubscriber.php │ │ │ ├── AppFlowActionProvider.php │ │ │ └── Xml │ │ │ │ ├── Action.php │ │ │ │ ├── Actions.php │ │ │ │ ├── Config.php │ │ │ │ ├── Headers.php │ │ │ │ ├── InputField.php │ │ │ │ ├── Metadata.php │ │ │ │ ├── Parameter.php │ │ │ │ └── Parameters.php │ │ ├── Event │ │ │ ├── Event.php │ │ │ └── Xml │ │ │ │ ├── CustomEvent.php │ │ │ │ └── CustomEvents.php │ │ └── Schema │ │ │ └── flow-1.0.xsd │ ├── Hmac │ │ ├── Guzzle │ │ │ └── AuthMiddleware.php │ │ ├── QuerySigner.php │ │ └── RequestSigner.php │ ├── InAppPurchases │ │ ├── Event │ │ │ └── InAppPurchasesGatewayEvent.php │ │ ├── Gateway │ │ │ └── InAppPurchasesGateway.php │ │ ├── Payload │ │ │ ├── InAppPurchasesPayload.php │ │ │ └── InAppPurchasesPayloadService.php │ │ └── Response │ │ │ └── InAppPurchasesResponse.php │ ├── Lifecycle │ │ ├── AbstractAppLifecycle.php │ │ ├── AppLifecycle.php │ │ ├── AppLifecycleIterator.php │ │ ├── AppLoader.php │ │ ├── Parameters │ │ │ ├── AppInstallParameters.php │ │ │ └── AppUpdateParameters.php │ │ ├── Persister │ │ │ ├── ActionButtonPersister.php │ │ │ ├── CmsBlockPersister.php │ │ │ ├── CustomFieldPersister.php │ │ │ ├── FlowActionPersister.php │ │ │ ├── FlowEventPersister.php │ │ │ ├── PaymentMethodPersister.php │ │ │ ├── PermissionPersister.php │ │ │ ├── RuleConditionPersister.php │ │ │ ├── ScriptPersister.php │ │ │ ├── ShippingMethodPersister.php │ │ │ ├── TaxProviderPersister.php │ │ │ ├── TemplatePersister.php │ │ │ └── WebhookPersister.php │ │ ├── RefreshableAppDryRun.php │ │ ├── Registration │ │ │ ├── AppHandshakeInterface.php │ │ │ ├── AppRegistrationService.php │ │ │ ├── HandshakeFactory.php │ │ │ ├── PrivateHandshake.php │ │ │ └── StoreHandshake.php │ │ ├── ScriptFileReader.php │ │ └── Update │ │ │ ├── AbstractAppUpdater.php │ │ │ └── AppUpdater.php │ ├── Manifest │ │ ├── Exception │ │ │ ├── ManifestNotFoundException.php │ │ │ └── UnallowedHostException.php │ │ ├── Manifest.php │ │ ├── ManifestFactory.php │ │ ├── ModuleLoader.php │ │ ├── Schema │ │ │ ├── manifest-2.0.xsd │ │ │ └── manifest-3.0.xsd │ │ ├── Xml │ │ │ ├── Administration │ │ │ │ ├── ActionButton.php │ │ │ │ ├── Admin.php │ │ │ │ ├── MainModule.php │ │ │ │ └── Module.php │ │ │ ├── AllowedHost │ │ │ │ └── AllowedHosts.php │ │ │ ├── Cookie │ │ │ │ └── Cookies.php │ │ │ ├── CustomField │ │ │ │ ├── CustomFieldSet.php │ │ │ │ ├── CustomFieldTypes │ │ │ │ │ ├── BoolField.php │ │ │ │ │ ├── ColorPickerField.php │ │ │ │ │ ├── CustomFieldType.php │ │ │ │ │ ├── CustomFieldTypeFactory.php │ │ │ │ │ ├── DateTimeField.php │ │ │ │ │ ├── FloatField.php │ │ │ │ │ ├── IntField.php │ │ │ │ │ ├── MediaSelectionField.php │ │ │ │ │ ├── MultiEntitySelectField.php │ │ │ │ │ ├── MultiSelectField.php │ │ │ │ │ ├── PriceField.php │ │ │ │ │ ├── SingleEntitySelectField.php │ │ │ │ │ ├── SingleSelectField.php │ │ │ │ │ ├── TextAreaField.php │ │ │ │ │ └── TextField.php │ │ │ │ └── CustomFields.php │ │ │ ├── Gateway │ │ │ │ ├── AbstractGateway.php │ │ │ │ ├── CheckoutGateway.php │ │ │ │ ├── ContextGateway.php │ │ │ │ ├── Gateways.php │ │ │ │ └── InAppPurchasesGateway.php │ │ │ ├── Meta │ │ │ │ └── Metadata.php │ │ │ ├── PaymentMethod │ │ │ │ ├── PaymentMethod.php │ │ │ │ └── Payments.php │ │ │ ├── Permission │ │ │ │ └── Permissions.php │ │ │ ├── RuleCondition │ │ │ │ ├── RuleCondition.php │ │ │ │ └── RuleConditions.php │ │ │ ├── Setup │ │ │ │ └── Setup.php │ │ │ ├── ShippingMethod │ │ │ │ ├── DeliveryTime.php │ │ │ │ ├── ShippingMethod.php │ │ │ │ └── ShippingMethods.php │ │ │ ├── Storefront │ │ │ │ └── Storefront.php │ │ │ ├── Tax │ │ │ │ ├── Tax.php │ │ │ │ └── TaxProvider.php │ │ │ ├── Webhook │ │ │ │ ├── Webhook.php │ │ │ │ └── Webhooks.php │ │ │ └── XmlElement.php │ │ └── XmlParserUtils.php │ ├── Payload │ │ ├── AppPayloadServiceHelper.php │ │ ├── AppPayloadStruct.php │ │ ├── Source.php │ │ └── SourcedPayloadInterface.php │ ├── Payment │ │ ├── Handler │ │ │ └── AppPaymentHandler.php │ │ ├── Payload │ │ │ ├── PaymentPayloadService.php │ │ │ └── Struct │ │ │ │ ├── PaymentPayload.php │ │ │ │ ├── PaymentPayloadInterface.php │ │ │ │ ├── RefundPayload.php │ │ │ │ ├── RemoveAppTrait.php │ │ │ │ └── ValidatePayload.php │ │ ├── PaymentMethodStateService.php │ │ └── Response │ │ │ ├── AbstractResponse.php │ │ │ ├── CheckoutGatewayResponse.php │ │ │ ├── PaymentResponse.php │ │ │ ├── RefundResponse.php │ │ │ └── ValidateResponse.php │ ├── Privileges │ │ ├── Privileges.php │ │ └── Utils.php │ ├── ScheduledTask │ │ ├── DeleteCascadeAppsHandler.php │ │ ├── DeleteCascadeAppsTask.php │ │ ├── UpdateAppsHandler.php │ │ └── UpdateAppsTask.php │ ├── ShopId │ │ ├── Fingerprint.php │ │ ├── Fingerprint │ │ │ ├── AppUrl.php │ │ │ ├── InstallationPath.php │ │ │ └── SalesChannelDomainUrls.php │ │ ├── FingerprintComparisonResult.php │ │ ├── FingerprintCustomCompare.php │ │ ├── FingerprintGenerator.php │ │ ├── FingerprintMatch.php │ │ ├── FingerprintMismatch.php │ │ ├── ShopId.php │ │ ├── ShopIdChangedEvent.php │ │ ├── ShopIdDeletedEvent.php │ │ └── ShopIdProvider.php │ ├── ShopIdChangeResolver │ │ ├── AbstractShopIdChangeStrategy.php │ │ ├── MoveShopPermanentlyStrategy.php │ │ ├── ReinstallAppsStrategy.php │ │ ├── Resolver.php │ │ └── UninstallAppsStrategy.php │ ├── Source │ │ ├── Local.php │ │ ├── NoDatabaseSourceResolver.php │ │ ├── RemoteZip.php │ │ ├── Source.php │ │ ├── SourceResolver.php │ │ └── TemporaryDirectoryFactory.php │ ├── Subscriber │ │ ├── AppLoadedSubscriber.php │ │ ├── AppScriptConditionConstraintsSubscriber.php │ │ └── CustomFieldProtectionSubscriber.php │ ├── TaxProvider │ │ ├── Payload │ │ │ ├── TaxProviderPayload.php │ │ │ └── TaxProviderPayloadService.php │ │ └── Response │ │ │ └── TaxProviderResponse.php │ ├── Telemetry │ │ └── AppTelemetrySubscriber.php │ ├── Template │ │ ├── AbstractTemplateLoader.php │ │ ├── TemplateCollection.php │ │ ├── TemplateDefinition.php │ │ ├── TemplateEntity.php │ │ ├── TemplateLoader.php │ │ └── TemplateStateService.php │ └── Validation │ │ ├── AbstractManifestValidator.php │ │ ├── AppNameValidator.php │ │ ├── ConfigValidator.php │ │ ├── Error │ │ ├── AppNameError.php │ │ ├── ConfigurationError.php │ │ ├── Error.php │ │ ├── ErrorCollection.php │ │ ├── MissingPermissionError.php │ │ ├── MissingTranslationError.php │ │ └── NotHookableError.php │ │ ├── HookableValidator.php │ │ ├── ManifestValidator.php │ │ └── TranslationValidator.php ├── Bundle.php ├── Context.php ├── DataAbstractionLayer │ ├── Attribute │ │ ├── AllowEmptyString.php │ │ ├── AllowHtml.php │ │ ├── AutoIncrement.php │ │ ├── CustomFields.php │ │ ├── Entity.php │ │ ├── Field.php │ │ ├── FieldType.php │ │ ├── ForeignKey.php │ │ ├── Inherited.php │ │ ├── ManyToMany.php │ │ ├── ManyToOne.php │ │ ├── OnDelete.php │ │ ├── OneToMany.php │ │ ├── OneToOne.php │ │ ├── PrimaryKey.php │ │ ├── Protection.php │ │ ├── ReferenceVersion.php │ │ ├── Required.php │ │ ├── Serialized.php │ │ ├── State.php │ │ ├── Translations.php │ │ └── Version.php │ ├── AttributeEntityCompiler.php │ ├── AttributeEntityDefinition.php │ ├── AttributeMappingDefinition.php │ ├── AttributeTranslationDefinition.php │ ├── BulkEntityExtension.php │ ├── Cache │ │ └── EntityCacheKeyGenerator.php │ ├── Command │ │ ├── ConsoleProgressTrait.php │ │ ├── CreateEntitiesCommand.php │ │ ├── CreateHydratorCommand.php │ │ ├── CreateMigrationCommand.php │ │ ├── DataAbstractionLayerValidateCommand.php │ │ └── RefreshIndexCommand.php │ ├── CompiledFieldCollection.php │ ├── Contract │ │ ├── IdAware.php │ │ └── RuleIdAware.php │ ├── DataAbstractionLayerException.php │ ├── Dbal │ │ ├── Common │ │ │ ├── IterableQuery.php │ │ │ ├── IteratorFactory.php │ │ │ ├── LastIdQuery.php │ │ │ ├── OffsetQuery.php │ │ │ ├── RepositoryIterator.php │ │ │ └── SalesChannelRepositoryIterator.php │ │ ├── CriteriaFieldsResolver.php │ │ ├── CriteriaQueryBuilder.php │ │ ├── EntityAggregator.php │ │ ├── EntityDefinitionQueryHelper.php │ │ ├── EntityForeignKeyResolver.php │ │ ├── EntityHydrator.php │ │ ├── EntityReader.php │ │ ├── EntitySearcher.php │ │ ├── EntityWriteGateway.php │ │ ├── Exception │ │ │ ├── FieldAccessorBuilderNotFoundException.php │ │ │ ├── FieldNotStorageAwareException.php │ │ │ ├── InvalidSortingDirectionException.php │ │ │ ├── ParentAssociationCanNotBeFetched.php │ │ │ └── UnmappedFieldException.php │ │ ├── ExceptionHandlerInterface.php │ │ ├── ExceptionHandlerRegistry.php │ │ ├── FieldAccessorBuilder │ │ │ ├── ConfigJsonFieldAccessorBuilder.php │ │ │ ├── CustomFieldsAccessorBuilder.php │ │ │ ├── DefaultFieldAccessorBuilder.php │ │ │ ├── FieldAccessorBuilderInterface.php │ │ │ ├── JsonFieldAccessorBuilder.php │ │ │ └── PriceFieldAccessorBuilder.php │ │ ├── FieldResolver │ │ │ ├── AbstractFieldResolver.php │ │ │ ├── CriteriaPartResolver.php │ │ │ ├── FieldResolverContext.php │ │ │ ├── ManyToManyAssociationFieldResolver.php │ │ │ ├── ManyToOneAssociationFieldResolver.php │ │ │ ├── OneToManyAssociationFieldResolver.php │ │ │ └── TranslationFieldResolver.php │ │ ├── JoinGroup.php │ │ ├── JoinGroupBuilder.php │ │ ├── QueryBuilder.php │ │ ├── SchemaBuilder.php │ │ └── SqlHelper.php │ ├── DefinitionInstanceRegistry.php │ ├── DefinitionValidator.php │ ├── Doctrine │ │ ├── FetchModeHelper.php │ │ ├── MultiInsertQueryQueue.php │ │ ├── RetryableQuery.php │ │ └── RetryableTransaction.php │ ├── Entity.php │ ├── EntityCollection.php │ ├── EntityCustomFieldsTrait.php │ ├── EntityDefinition.php │ ├── EntityExtension.php │ ├── EntityGenerator.php │ ├── EntityIdTrait.php │ ├── EntityProtection │ │ ├── EntityProtection.php │ │ ├── EntityProtectionCollection.php │ │ ├── EntityProtectionValidator.php │ │ ├── ReadProtection.php │ │ └── WriteProtection.php │ ├── EntityRepository.php │ ├── EntityTranslationDefinition.php │ ├── EntityWriteResult.php │ ├── Event │ │ ├── BeforeEntityAggregationEvent.php │ │ ├── BeforeVersionMergeEvent.php │ │ ├── EntityAggregationResultLoadedEvent.php │ │ ├── EntityDeleteEvent.php │ │ ├── EntityDeletedEvent.php │ │ ├── EntityIdSearchResultLoadedEvent.php │ │ ├── EntityLoadedContainerEvent.php │ │ ├── EntityLoadedEvent.php │ │ ├── EntityLoadedEventFactory.php │ │ ├── EntitySearchResultLoadedEvent.php │ │ ├── EntitySearchedEvent.php │ │ ├── EntityWriteEvent.php │ │ ├── EntityWrittenContainerEvent.php │ │ ├── EntityWrittenEvent.php │ │ ├── PartialEntityLoadedEvent.php │ │ └── RefreshIndexEvent.php │ ├── Exception │ │ ├── ApiProtectionException.php │ │ ├── AssociationNotFoundException.php │ │ ├── DefinitionNotFoundException.php │ │ ├── EntityNotFoundException.php │ │ ├── EntityRepositoryNotFoundException.php │ │ ├── ImpossibleWriteOrderException.php │ │ ├── InconsistentCriteriaIdsException.php │ │ ├── InvalidAggregationQueryException.php │ │ ├── InvalidEntityUuidException.php │ │ ├── InvalidFilterQueryException.php │ │ ├── InvalidLimitQueryException.php │ │ ├── InvalidPageQueryException.php │ │ ├── InvalidPriceFieldTypeException.php │ │ ├── InvalidRangeFilterParamException.php │ │ ├── InvalidSortQueryException.php │ │ ├── MappingEntityClassesException.php │ │ ├── MissingFieldSerializerException.php │ │ ├── MissingReverseAssociation.php │ │ ├── MissingSystemTranslationException.php │ │ ├── MissingTranslationLanguageException.php │ │ ├── PropertyNotFoundException.php │ │ ├── QueryLimitExceededException.php │ │ ├── ReadProtectedException.php │ │ ├── RepositoryNotFoundException.php │ │ ├── RuntimeFieldInCriteriaException.php │ │ ├── SearchRequestException.php │ │ ├── SearchRequestExceptionInterface.php │ │ ├── UnsupportedCommandTypeException.php │ │ └── WriteNotSupportedException.php │ ├── Facade │ │ ├── RepositoryFacade.php │ │ ├── RepositoryFacadeHookFactory.php │ │ ├── RepositoryWriterFacade.php │ │ ├── RepositoryWriterFacadeHookFactory.php │ │ ├── SalesChannelRepositoryFacade.php │ │ └── SalesChannelRepositoryFacadeHookFactory.php │ ├── Field │ │ ├── AssociationField.php │ │ ├── AutoIncrementField.php │ │ ├── BlobField.php │ │ ├── BoolField.php │ │ ├── BreadcrumbField.php │ │ ├── CalculatedPriceField.php │ │ ├── CartPriceField.php │ │ ├── CashRoundingConfigField.php │ │ ├── ChildCountField.php │ │ ├── ChildrenAssociationField.php │ │ ├── ConfigJsonField.php │ │ ├── CreatedAtField.php │ │ ├── CreatedByField.php │ │ ├── CronIntervalField.php │ │ ├── CustomFields.php │ │ ├── DateField.php │ │ ├── DateIntervalField.php │ │ ├── DateTimeField.php │ │ ├── EmailField.php │ │ ├── EnumField.php │ │ ├── Field.php │ │ ├── FkField.php │ │ ├── Flag │ │ │ ├── AllowEmptyString.php │ │ │ ├── AllowHtml.php │ │ │ ├── ApiAware.php │ │ │ ├── ApiCriteriaAware.php │ │ │ ├── AsArray.php │ │ │ ├── CascadeDelete.php │ │ │ ├── Computed.php │ │ │ ├── Deprecated.php │ │ │ ├── Extension.php │ │ │ ├── Flag.php │ │ │ ├── IgnoreInOpenapiSchema.php │ │ │ ├── Inherited.php │ │ │ ├── NoConstraint.php │ │ │ ├── PrimaryKey.php │ │ │ ├── Required.php │ │ │ ├── RestrictDelete.php │ │ │ ├── ReverseInherited.php │ │ │ ├── RuleAreas.php │ │ │ ├── Runtime.php │ │ │ ├── SearchRanking.php │ │ │ ├── SetNullOnDelete.php │ │ │ ├── Since.php │ │ │ └── WriteProtected.php │ │ ├── FloatField.php │ │ ├── IdField.php │ │ ├── IntField.php │ │ ├── JsonField.php │ │ ├── ListField.php │ │ ├── LockedField.php │ │ ├── LongTextField.php │ │ ├── ManyToManyAssociationField.php │ │ ├── ManyToManyIdField.php │ │ ├── ManyToOneAssociationField.php │ │ ├── ObjectField.php │ │ ├── OneToManyAssociationField.php │ │ ├── OneToOneAssociationField.php │ │ ├── ParentAssociationField.php │ │ ├── ParentFkField.php │ │ ├── PasswordField.php │ │ ├── PriceDefinitionField.php │ │ ├── PriceField.php │ │ ├── ReferenceVersionField.php │ │ ├── RemoteAddressField.php │ │ ├── SerializedField.php │ │ ├── StateMachineStateField.php │ │ ├── StorageAware.php │ │ ├── StringField.php │ │ ├── TaxFreeConfigField.php │ │ ├── TimeZoneField.php │ │ ├── TranslatedField.php │ │ ├── TranslationsAssociationField.php │ │ ├── TreeBreadcrumbField.php │ │ ├── TreeLevelField.php │ │ ├── TreePathField.php │ │ ├── UpdatedAtField.php │ │ ├── UpdatedByField.php │ │ ├── VariantListingConfigField.php │ │ ├── VersionDataPayloadField.php │ │ └── VersionField.php │ ├── FieldCollection.php │ ├── FieldSerializer │ │ ├── AbstractFieldSerializer.php │ │ ├── BlobFieldSerializer.php │ │ ├── BoolFieldSerializer.php │ │ ├── CalculatedPriceFieldSerializer.php │ │ ├── CartPriceFieldSerializer.php │ │ ├── CashRoundingConfigFieldSerializer.php │ │ ├── ConfigJsonFieldSerializer.php │ │ ├── CreatedAtFieldSerializer.php │ │ ├── CreatedByFieldSerializer.php │ │ ├── CronIntervalFieldSerializer.php │ │ ├── CustomFieldsSerializer.php │ │ ├── DateFieldSerializer.php │ │ ├── DateIntervalFieldSerializer.php │ │ ├── DateTimeFieldSerializer.php │ │ ├── EmailFieldSerializer.php │ │ ├── EnumFieldSerializer.php │ │ ├── FieldSerializerInterface.php │ │ ├── FkFieldSerializer.php │ │ ├── FloatFieldSerializer.php │ │ ├── IdFieldSerializer.php │ │ ├── IntFieldSerializer.php │ │ ├── JsonFieldSerializer.php │ │ ├── ListFieldSerializer.php │ │ ├── LongTextFieldSerializer.php │ │ ├── ManyToManyAssociationFieldSerializer.php │ │ ├── ManyToOneAssociationFieldSerializer.php │ │ ├── OneToManyAssociationFieldSerializer.php │ │ ├── OneToOneAssociationFieldSerializer.php │ │ ├── PHPUnserializeFieldSerializer.php │ │ ├── PasswordFieldSerializer.php │ │ ├── PriceDefinitionFieldSerializer.php │ │ ├── PriceFieldSerializer.php │ │ ├── ReferenceVersionFieldSerializer.php │ │ ├── RemoteAddressFieldSerializer.php │ │ ├── StateMachineStateFieldSerializer.php │ │ ├── StringFieldSerializer.php │ │ ├── TaxFreeConfigFieldSerializer.php │ │ ├── TimeZoneFieldSerializer.php │ │ ├── TranslatedFieldSerializer.php │ │ ├── TranslationsAssociationFieldSerializer.php │ │ ├── UpdatedAtFieldSerializer.php │ │ ├── UpdatedByFieldSerializer.php │ │ ├── VariantListingConfigFieldSerializer.php │ │ ├── VersionDataPayloadFieldSerializer.php │ │ └── VersionFieldSerializer.php │ ├── FieldType │ │ ├── CronInterval.php │ │ └── DateInterval.php │ ├── FieldVisibility.php │ ├── FilteredBulkEntityExtension.php │ ├── Indexing │ │ ├── ChildCountUpdater.php │ │ ├── EntityIndexer.php │ │ ├── EntityIndexerRegistry.php │ │ ├── EntityIndexingMessage.php │ │ ├── InheritanceUpdater.php │ │ ├── ManyToManyIdFieldUpdater.php │ │ ├── MessageQueue │ │ │ ├── FullEntityIndexerMessage.php │ │ │ └── IterateEntityIndexerMessage.php │ │ ├── PostUpdateIndexer.php │ │ ├── Subscriber │ │ │ ├── EntityIndexingSubscriber.php │ │ │ └── RegisteredIndexerSubscriber.php │ │ ├── SynchronousPostUpdateIndexer.php │ │ ├── TreeUpdater.php │ │ └── TreeUpdaterBag.php │ ├── InvalidCriteriaIdsException.php │ ├── MappingEntityDefinition.php │ ├── MigrationFileRenderer.php │ ├── MigrationQueryGenerator.php │ ├── PartialEntity.php │ ├── Pricing │ │ ├── CashRoundingConfig.php │ │ ├── Price.php │ │ ├── PriceCollection.php │ │ ├── PriceRuleCollection.php │ │ └── PriceRuleEntity.php │ ├── Read │ │ └── EntityReaderInterface.php │ ├── RepositorySearchDetector.php │ ├── Search │ │ ├── Aggregation │ │ │ ├── Aggregation.php │ │ │ ├── Bucket │ │ │ │ ├── BucketAggregation.php │ │ │ │ ├── DateHistogramAggregation.php │ │ │ │ ├── FilterAggregation.php │ │ │ │ └── TermsAggregation.php │ │ │ └── Metric │ │ │ │ ├── AvgAggregation.php │ │ │ │ ├── CountAggregation.php │ │ │ │ ├── EntityAggregation.php │ │ │ │ ├── MaxAggregation.php │ │ │ │ ├── MinAggregation.php │ │ │ │ ├── RangeAggregation.php │ │ │ │ ├── StatsAggregation.php │ │ │ │ └── SumAggregation.php │ │ ├── AggregationResult │ │ │ ├── AggregationResult.php │ │ │ ├── AggregationResultCollection.php │ │ │ ├── Bucket │ │ │ │ ├── Bucket.php │ │ │ │ ├── BucketResult.php │ │ │ │ ├── DateHistogramResult.php │ │ │ │ └── TermsResult.php │ │ │ └── Metric │ │ │ │ ├── AvgResult.php │ │ │ │ ├── CountResult.php │ │ │ │ ├── EntityResult.php │ │ │ │ ├── MaxResult.php │ │ │ │ ├── MinResult.php │ │ │ │ ├── RangeResult.php │ │ │ │ ├── StatsResult.php │ │ │ │ └── SumResult.php │ │ ├── AggregatorResult.php │ │ ├── ApiCriteriaValidator.php │ │ ├── CachedSearchConfigLoader.php │ │ ├── CompressedCriteriaDecoder.php │ │ ├── Criteria.php │ │ ├── CriteriaArrayConverter.php │ │ ├── CriteriaPartInterface.php │ │ ├── EntityAggregatorInterface.php │ │ ├── EntitySearchResult.php │ │ ├── EntitySearcherInterface.php │ │ ├── Filter │ │ │ ├── AndFilter.php │ │ │ ├── ContainsFilter.php │ │ │ ├── EqualsAnyFilter.php │ │ │ ├── EqualsFilter.php │ │ │ ├── Filter.php │ │ │ ├── MultiFilter.php │ │ │ ├── NandFilter.php │ │ │ ├── NorFilter.php │ │ │ ├── NotEqualsAnyFilter.php │ │ │ ├── NotEqualsFilter.php │ │ │ ├── NotFilter.php │ │ │ ├── OrFilter.php │ │ │ ├── PrefixFilter.php │ │ │ ├── RangeFilter.php │ │ │ ├── SingleFieldFilter.php │ │ │ ├── SuffixFilter.php │ │ │ └── XOrFilter.php │ │ ├── Grouping │ │ │ └── FieldGrouping.php │ │ ├── IdSearchResult.php │ │ ├── Parser │ │ │ ├── AggregationParser.php │ │ │ ├── ParseResult.php │ │ │ ├── QueryStringParser.php │ │ │ └── SqlQueryParser.php │ │ ├── Query │ │ │ └── ScoreQuery.php │ │ ├── RequestCriteriaBuilder.php │ │ ├── SearchConfigLoader.php │ │ ├── Sorting │ │ │ ├── CountSorting.php │ │ │ └── FieldSorting.php │ │ └── Term │ │ │ ├── EntityScoreQueryBuilder.php │ │ │ ├── Filter │ │ │ ├── AbstractTokenFilter.php │ │ │ └── TokenFilter.php │ │ │ ├── SearchPattern.php │ │ │ ├── SearchTerm.php │ │ │ ├── SearchTermInterpreter.php │ │ │ ├── Tokenizer.php │ │ │ └── TokenizerInterface.php │ ├── TaxFreeConfig.php │ ├── TechnicalNameExceptionHandler.php │ ├── Telemetry │ │ └── EntityTelemetrySubscriber.php │ ├── TranslationEntity.php │ ├── Util │ │ ├── AfterSort.php │ │ └── StatementHelper.php │ ├── Validation │ │ ├── EntityExists.php │ │ ├── EntityExistsValidator.php │ │ ├── EntityNotExists.php │ │ └── EntityNotExistsValidator.php │ ├── Version │ │ ├── Aggregate │ │ │ ├── VersionCommit │ │ │ │ ├── VersionCommitCollection.php │ │ │ │ ├── VersionCommitDefinition.php │ │ │ │ └── VersionCommitEntity.php │ │ │ └── VersionCommitData │ │ │ │ ├── VersionCommitDataCollection.php │ │ │ │ ├── VersionCommitDataDefinition.php │ │ │ │ └── VersionCommitDataEntity.php │ │ ├── Cleanup │ │ │ ├── CleanupVersionTask.php │ │ │ └── CleanupVersionTaskHandler.php │ │ ├── VersionCollection.php │ │ ├── VersionDefinition.php │ │ ├── VersionEntity.php │ │ └── VersionEvents.php │ ├── VersionManager.php │ ├── Write │ │ ├── CloneBehavior.php │ │ ├── Command │ │ │ ├── CascadeDeleteCommand.php │ │ │ ├── ChangeSet.php │ │ │ ├── ChangeSetAware.php │ │ │ ├── ChangeSetAwareTrait.php │ │ │ ├── DeleteCommand.php │ │ │ ├── InsertCommand.php │ │ │ ├── JsonUpdateCommand.php │ │ │ ├── SetNullOnDeleteCommand.php │ │ │ ├── UpdateCommand.php │ │ │ ├── WriteCommand.php │ │ │ ├── WriteCommandQueue.php │ │ │ └── WriteTypeIntendException.php │ │ ├── DataStack │ │ │ ├── DataStack.php │ │ │ └── KeyValuePair.php │ │ ├── EntityExistence.php │ │ ├── EntityWriteGatewayInterface.php │ │ ├── EntityWriteResultFactory.php │ │ ├── EntityWriter.php │ │ ├── EntityWriterInterface.php │ │ ├── FieldException │ │ │ ├── ExpectedArrayException.php │ │ │ ├── UnexpectedFieldException.php │ │ │ └── WriteFieldException.php │ │ ├── PrimaryKeyBag.php │ │ ├── Validation │ │ │ ├── ConstraintBuilder.php │ │ │ ├── LockValidator.php │ │ │ ├── ParentRelationValidator.php │ │ │ ├── PostWriteValidationEvent.php │ │ │ ├── PreWriteValidationEvent.php │ │ │ ├── RestrictDeleteViolation.php │ │ │ ├── RestrictDeleteViolationException.php │ │ │ ├── Validator.php │ │ │ └── WriteCommandExceptionEvent.php │ │ ├── WriteCommandExtractor.php │ │ ├── WriteContext.php │ │ ├── WriteException.php │ │ ├── WriteInputValidator.php │ │ ├── WriteParameterBag.php │ │ └── WriteResult.php │ └── stubs │ │ └── migration.stub ├── Demodata │ ├── Command │ │ └── DemodataCommand.php │ ├── DemodataContext.php │ ├── DemodataException.php │ ├── DemodataGeneratorInterface.php │ ├── DemodataRequest.php │ ├── DemodataService.php │ ├── Event │ │ └── DemodataRequestCreatedEvent.php │ ├── Faker │ │ └── Commerce.php │ ├── Generator │ │ ├── CategoryGenerator.php │ │ ├── CustomFieldGenerator.php │ │ ├── CustomerGenerator.php │ │ ├── FlowGenerator.php │ │ ├── MailHeaderFooterGenerator.php │ │ ├── MailTemplateGenerator.php │ │ ├── MediaGenerator.php │ │ ├── OrderGenerator.php │ │ ├── ProductGenerator.php │ │ ├── ProductManufacturerGenerator.php │ │ ├── ProductReviewGenerator.php │ │ ├── ProductStreamGenerator.php │ │ ├── PromotionGenerator.php │ │ ├── PropertyGroupGenerator.php │ │ ├── RuleGenerator.php │ │ ├── SalesChannelDomainGenerator.php │ │ ├── TagGenerator.php │ │ └── UserGenerator.php │ └── PersonalData │ │ └── CleanPersonalDataCommand.php ├── DependencyInjection │ ├── CompilerPass │ │ ├── AbstractMigrationReplacementCompilerPass.php │ │ ├── AssetBundleRegistrationCompilerPass.php │ │ ├── AssetRegistrationCompilerPass.php │ │ ├── AttributeEntityCompilerPass.php │ │ ├── AutoconfigureCompilerPass.php │ │ ├── BusinessEventRegisterCompilerPass.php │ │ ├── CompilerPassConfigTrait.php │ │ ├── CreateGeneratorScaffoldingCommandPass.php │ │ ├── DefaultTransportCompilerPass.php │ │ ├── DemodataCompilerPass.php │ │ ├── DisableTwigCacheWarmerCompilerPass.php │ │ ├── EntityCompilerPass.php │ │ ├── FeatureFlagCompilerPass.php │ │ ├── FilesystemConfigMigrationCompilerPass.php │ │ ├── FrameworkMigrationReplacementCompilerPass.php │ │ ├── HttpCacheConfigCompilerPass.php │ │ ├── MessengerMiddlewareCompilerPass.php │ │ ├── RateLimiterCompilerPass.php │ │ ├── RedisPrefixCompilerPass.php │ │ ├── RemoveEventListener.php │ │ ├── RouteScopeCompilerPass.php │ │ ├── TwigEnvironmentCompilerPass.php │ │ └── TwigLoaderConfigCompilerPass.php │ ├── Configuration.php │ ├── DependencyInjectionException.php │ ├── FrameworkExtension.php │ ├── TaggedServiceLocator.php │ ├── acl.xml │ ├── api.xml │ ├── app.xml │ ├── app_test.xml │ ├── cache.xml │ ├── custom-field.xml │ ├── data-abstraction-layer.xml │ ├── demodata.xml │ ├── event.xml │ ├── filesystem.xml │ ├── flag.xml │ ├── health.xml │ ├── hydrator.xml │ ├── increment.xml │ ├── language.xml │ ├── message-queue.xml │ ├── notification.xml │ ├── plugin.xml │ ├── rate-limiter.xml │ ├── rule.xml │ ├── scheduled-task.xml │ ├── script.xml │ ├── seo.xml │ ├── seo_test.xml │ ├── services.xml │ ├── services_test.xml │ ├── sso.xml │ ├── store.xml │ ├── store_test.xml │ ├── telemetry.xml │ ├── update.xml │ └── webhook.xml ├── Event │ ├── A11yRenderedDocumentAware.php │ ├── BeforeSendRedirectResponseEvent.php │ ├── BeforeSendResponseEvent.php │ ├── BusinessEventCollector.php │ ├── BusinessEventCollectorEvent.php │ ├── BusinessEventCollectorResponse.php │ ├── BusinessEventDefinition.php │ ├── BusinessEventRegistry.php │ ├── BusinessEvents.php │ ├── Command │ │ └── DebugDumpBusinessEventsCommand.php │ ├── CustomerAware.php │ ├── CustomerGroupAware.php │ ├── DataMappingEvent.php │ ├── EventData │ │ ├── ArrayType.php │ │ ├── EntityCollectionType.php │ │ ├── EntityType.php │ │ ├── EventDataCollection.php │ │ ├── EventDataType.php │ │ ├── MailRecipientStruct.php │ │ ├── ObjectType.php │ │ └── ScalarValueType.php │ ├── FlowEventAware.php │ ├── FlowLogEvent.php │ ├── GenericEvent.php │ ├── IsFlowEventAware.php │ ├── LanguageAware.php │ ├── MailAware.php │ ├── NestedEvent.php │ ├── NestedEventCollection.php │ ├── NestedEventDispatcher.php │ ├── OrderAware.php │ ├── ProductAware.php │ ├── ProgressAdvancedEvent.php │ ├── ProgressFinishedEvent.php │ ├── ProgressStartedEvent.php │ ├── SalesChannelAware.php │ ├── ShopwareEvent.php │ ├── ShopwareSalesChannelEvent.php │ └── UserAware.php ├── Extensions │ ├── Extension.php │ └── ExtensionDispatcher.php ├── Feature.php ├── Feature │ ├── Command │ │ ├── FeatureDisableCommand.php │ │ ├── FeatureDumpCommand.php │ │ ├── FeatureEnableCommand.php │ │ └── FeatureListCommand.php │ ├── Event │ │ ├── BeforeFeatureFlagToggleEvent.php │ │ └── FeatureFlagToggledEvent.php │ ├── Exception │ │ ├── FeatureActiveException.php │ │ └── FeatureNotActiveException.php │ ├── FeatureException.php │ └── FeatureFlagRegistry.php ├── Framework.php ├── FrameworkException.php ├── Gateway │ ├── Context │ │ ├── Command │ │ │ ├── AbstractContextGatewayCommand.php │ │ │ ├── AddCustomerMessageCommand.php │ │ │ ├── ChangeBillingAddressCommand.php │ │ │ ├── ChangeCurrencyCommand.php │ │ │ ├── ChangeLanguageCommand.php │ │ │ ├── ChangePaymentMethodCommand.php │ │ │ ├── ChangeShippingAddressCommand.php │ │ │ ├── ChangeShippingLocationCommand.php │ │ │ ├── ChangeShippingMethodCommand.php │ │ │ ├── ContextGatewayCommandCollection.php │ │ │ ├── Event │ │ │ │ └── ContextGatewayCommandsCollectedEvent.php │ │ │ ├── Executor │ │ │ │ ├── ContextGatewayCommandExecutor.php │ │ │ │ └── ContextGatewayCommandValidator.php │ │ │ ├── Handler │ │ │ │ ├── AbstractContextGatewayCommandHandler.php │ │ │ │ ├── AddCustomerMessageCommandHandler.php │ │ │ │ ├── ChangeAddressCommandHandler.php │ │ │ │ ├── ChangeCheckoutOptionsCommandHandler.php │ │ │ │ ├── ChangeCurrencyCommandHandler.php │ │ │ │ ├── ChangeLanguageCommandHandler.php │ │ │ │ ├── ChangeShippingLocationCommandHandler.php │ │ │ │ ├── LoginCustomerCommandHandler.php │ │ │ │ └── RegisterCustomerCommandHandler.php │ │ │ ├── LoginCustomerCommand.php │ │ │ ├── RegisterCustomerCommand.php │ │ │ ├── Registry │ │ │ │ └── ContextGatewayCommandRegistry.php │ │ │ ├── Struct │ │ │ │ └── ContextGatewayPayloadStruct.php │ │ │ └── TokenCommandInterface.php │ │ └── SalesChannel │ │ │ ├── AbstractContextGatewayRoute.php │ │ │ └── ContextGatewayRoute.php │ └── GatewayException.php ├── HttpException.php ├── Increment │ ├── AbstractIncrementer.php │ ├── ArrayIncrementer.php │ ├── Controller │ │ └── IncrementApiController.php │ ├── Exception │ │ └── IncrementGatewayNotFoundException.php │ ├── IncrementException.php │ ├── IncrementGatewayRegistry.php │ ├── IncrementerGatewayCompilerPass.php │ ├── MySQLIncrementer.php │ └── RedisIncrementer.php ├── JWT │ ├── Constraints │ │ ├── HasValidRSAJWKSignature.php │ │ └── MatchesLicenceDomain.php │ ├── JWTDecoder.php │ ├── JWTException.php │ ├── SalesChannel │ │ └── JWTGenerator.php │ └── Struct │ │ ├── JWKCollection.php │ │ ├── JWKStruct.php │ │ └── JWTStruct.php ├── Log │ ├── ExceptionLogger.php │ ├── LogAware.php │ ├── LogEntryCollection.php │ ├── LogEntryDefinition.php │ ├── LogEntryEntity.php │ ├── LoggingService.php │ ├── Monolog │ │ ├── AnnotatePackageProcessor.php │ │ ├── DoctrineSQLHandler.php │ │ ├── ErrorCodeLogLevelHandler.php │ │ ├── ExcludeExceptionHandler.php │ │ └── ExcludeFlowEventHandler.php │ ├── Package.php │ ├── PackageService.php │ └── ScheduledTask │ │ ├── LogCleanupTask.php │ │ └── LogCleanupTaskHandler.php ├── MessageQueue │ ├── Api │ │ ├── ConsumeMessagesController.php │ │ └── ScheduledTaskController.php │ ├── AsyncMessageInterface.php │ ├── Command │ │ ├── DeactivateScheduledTaskCommand.php │ │ ├── ListScheduledTaskCommand.php │ │ ├── RegisterScheduledTasksCommand.php │ │ ├── RunSingleScheduledTaskCommand.php │ │ ├── ScheduleScheduledTaskCommand.php │ │ └── ScheduledTaskRunner.php │ ├── DeduplicatableMessageInterface.php │ ├── LowPriorityMessageInterface.php │ ├── MessageHandlerCompilerPass.php │ ├── MessageQueueException.php │ ├── Middleware │ │ └── RoutingOverwriteMiddleware.php │ ├── ScheduledTask │ │ ├── MessageQueue │ │ │ ├── RegisterScheduledTaskHandler.php │ │ │ └── RegisterScheduledTaskMessage.php │ │ ├── README.md │ │ ├── RegisterScheduledTaskMessage.php │ │ ├── Registry │ │ │ └── TaskRegistry.php │ │ ├── ScheduledTask.php │ │ ├── ScheduledTaskCollection.php │ │ ├── ScheduledTaskDefinition.php │ │ ├── ScheduledTaskEntity.php │ │ ├── ScheduledTaskHandler.php │ │ ├── ScheduledTaskMessageInterface.php │ │ ├── Scheduler │ │ │ ├── TaskRunner.php │ │ │ └── TaskScheduler.php │ │ └── SymfonyBridge │ │ │ └── ScheduleProvider.php │ ├── SendEmailMessageJsonSerializer.php │ ├── Service │ │ └── MessageSizeCalculator.php │ ├── Stats │ │ ├── AbstractStatsRepository.php │ │ ├── Entity │ │ │ ├── MessageStatsEntity.php │ │ │ ├── MessageStatsResponseEntity.php │ │ │ ├── MessageTypeStatsCollection.php │ │ │ └── MessageTypeStatsEntity.php │ │ ├── MySQLStatsRepository.php │ │ ├── README.md │ │ └── StatsService.php │ ├── Subscriber │ │ ├── CountHandledMessagesListener.php │ │ ├── EarlyReturnMessagesListener.php │ │ ├── MessageQueueSizeRestrictListener.php │ │ ├── MessageQueueStatsSubscriber.php │ │ ├── PluginLifecycleSubscriber.php │ │ └── UpdatePostFinishSubscriber.php │ └── Telemetry │ │ └── MessageQueueTelemetrySubscriber.php ├── Migration │ ├── AddColumnTrait.php │ ├── ColumnExistsTrait.php │ ├── Command │ │ ├── CreateMigrationCommand.php │ │ ├── MigrationCommand.php │ │ ├── MigrationDestructiveCommand.php │ │ └── RefreshMigrationCommand.php │ ├── Exception │ │ └── UnknownMigrationSourceException.php │ ├── IndexerQueuer.php │ ├── InheritanceUpdaterTrait.php │ ├── MakeVersionableMigrationHelper.php │ ├── MigrationCollection.php │ ├── MigrationCollectionLoader.php │ ├── MigrationException.php │ ├── MigrationRuntime.php │ ├── MigrationSource.php │ ├── MigrationStep.php │ ├── Template │ │ ├── MigrationTemplate.txt │ │ └── MigrationTemplatePlugin.txt │ └── Trigger.php ├── Notification │ ├── Api │ │ └── NotificationController.php │ ├── NotificationBulkEntityExtension.php │ ├── NotificationCollection.php │ ├── NotificationDefinition.php │ ├── NotificationEntity.php │ ├── NotificationException.php │ └── NotificationService.php ├── Parameter │ └── AdditionalBundleParameters.php ├── Plugin.php ├── Plugin │ ├── Aggregate │ │ └── PluginTranslation │ │ │ ├── PluginTranslationCollection.php │ │ │ ├── PluginTranslationDefinition.php │ │ │ └── PluginTranslationEntity.php │ ├── BundleConfigGenerator.php │ ├── BundleConfigGeneratorInterface.php │ ├── Command │ │ ├── BundleDumpCommand.php │ │ ├── Lifecycle │ │ │ ├── AbstractPluginLifecycleCommand.php │ │ │ ├── PluginActivateCommand.php │ │ │ ├── PluginDeactivateCommand.php │ │ │ ├── PluginInstallCommand.php │ │ │ ├── PluginUninstallCommand.php │ │ │ ├── PluginUpdateAllCommand.php │ │ │ └── PluginUpdateCommand.php │ │ ├── MakerCommand.php │ │ ├── PluginCreateCommand.php │ │ ├── PluginListCommand.php │ │ ├── PluginRefreshCommand.php │ │ ├── PluginZipImportCommand.php │ │ └── Scaffolding │ │ │ ├── Generator │ │ │ ├── AddScaffoldConfigDefaultBehaviour.php │ │ │ ├── AdminModuleGenerator.php │ │ │ ├── CommandGenerator.php │ │ │ ├── ComposerGenerator.php │ │ │ ├── ConfigGenerator.php │ │ │ ├── CustomFieldsetGenerator.php │ │ │ ├── EntityGenerator.php │ │ │ ├── EventSubscriberGenerator.php │ │ │ ├── GitignoreGenerator.php │ │ │ ├── HasCommandOption.php │ │ │ ├── JavascriptPluginGenerator.php │ │ │ ├── PluginClassGenerator.php │ │ │ ├── ScaffoldingGenerator.php │ │ │ ├── ScheduledTaskGenerator.php │ │ │ ├── StoreApiRouteGenerator.php │ │ │ ├── StorefrontControllerGenerator.php │ │ │ └── TestsGenerator.php │ │ │ ├── PluginScaffoldConfiguration.php │ │ │ ├── ScaffoldingCollector.php │ │ │ ├── ScaffoldingWriter.php │ │ │ ├── Stub.php │ │ │ ├── StubCollection.php │ │ │ └── stubs │ │ │ ├── command.stub │ │ │ ├── composer.stub │ │ │ ├── config-xml.stub │ │ │ ├── custom-fieldset-installer.stub │ │ │ ├── entity-collection.stub │ │ │ ├── entity-definition.stub │ │ │ ├── entity.stub │ │ │ ├── event-subscriber.stub │ │ │ ├── js-module.stub │ │ │ ├── js-plugin-template.stub │ │ │ ├── js-plugin.stub │ │ │ ├── migration.stub │ │ │ ├── phpunit-xml.stub │ │ │ ├── plugin-class-with-custom-fields.stub │ │ │ ├── plugin-class.stub │ │ │ ├── scheduled-task.stub │ │ │ ├── store-api-abstract-route.stub │ │ │ ├── store-api-response.stub │ │ │ ├── store-api-route.stub │ │ │ ├── storefront-controller.stub │ │ │ ├── storefront-template.stub │ │ │ └── test-bootstrap.stub │ ├── Composer │ │ ├── CommandExecutor.php │ │ ├── Factory.php │ │ └── PackageProvider.php │ ├── Context │ │ ├── ActivateContext.php │ │ ├── DeactivateContext.php │ │ ├── InstallContext.php │ │ ├── UninstallContext.php │ │ └── UpdateContext.php │ ├── Event │ │ ├── PluginLifecycleEvent.php │ │ ├── PluginPostActivateEvent.php │ │ ├── PluginPostDeactivateEvent.php │ │ ├── PluginPostDeactivationFailedEvent.php │ │ ├── PluginPostInstallEvent.php │ │ ├── PluginPostUninstallEvent.php │ │ ├── PluginPostUpdateEvent.php │ │ ├── PluginPreActivateEvent.php │ │ ├── PluginPreDeactivateEvent.php │ │ ├── PluginPreInstallEvent.php │ │ ├── PluginPreUninstallEvent.php │ │ └── PluginPreUpdateEvent.php │ ├── Exception │ │ ├── CanNotDeletePluginManagedByComposerException.php │ │ ├── DecorationPatternException.php │ │ ├── ExceptionCollection.php │ │ ├── KernelPluginLoaderException.php │ │ ├── NoPluginFoundInZipException.php │ │ ├── PluginBaseClassNotFoundException.php │ │ ├── PluginCannotBeDeletedException.php │ │ ├── PluginComposerJsonInvalidException.php │ │ ├── PluginComposerRemoveException.php │ │ ├── PluginComposerRequireException.php │ │ ├── PluginExtractionException.php │ │ ├── PluginHasActiveDependantsException.php │ │ ├── PluginNotAZipFileException.php │ │ ├── PluginNotActivatedException.php │ │ ├── PluginNotFoundException.php │ │ └── PluginNotInstalledException.php │ ├── ExtensionExtractor.php │ ├── KernelPluginCollection.php │ ├── KernelPluginLoader │ │ ├── ComposerPluginLoader.php │ │ ├── DbalKernelPluginLoader.php │ │ ├── KernelPluginLoader.php │ │ └── StaticKernelPluginLoader.php │ ├── PluginCollection.php │ ├── PluginDefinition.php │ ├── PluginEntity.php │ ├── PluginEvents.php │ ├── PluginException.php │ ├── PluginLifecycleService.php │ ├── PluginManagementService.php │ ├── PluginService.php │ ├── PluginZipDetector.php │ ├── Requirement │ │ ├── Exception │ │ │ ├── ComposerNameMissingException.php │ │ │ ├── ConflictingPackageException.php │ │ │ ├── MissingRequirementException.php │ │ │ ├── RequirementException.php │ │ │ ├── RequirementStackException.php │ │ │ └── VersionMismatchException.php │ │ ├── RequirementExceptionStack.php │ │ └── RequirementsValidator.php │ ├── Struct │ │ └── PluginFromFileSystemStruct.php │ ├── Subscriber │ │ ├── PluginAclPrivilegesSubscriber.php │ │ └── PluginLoadedSubscriber.php │ ├── Telemetry │ │ └── PluginTelemetrySubscriber.php │ └── Util │ │ ├── AssetService.php │ │ ├── PluginFinder.php │ │ ├── PluginIdProvider.php │ │ ├── VersionSanitizer.php │ │ └── ZipUtils.php ├── RateLimiter │ ├── Exception │ │ └── RateLimitExceededException.php │ ├── NoLimitRateLimiterFactory.php │ ├── Policy │ │ ├── SystemConfigLimiter.php │ │ ├── TimeBackoff.php │ │ └── TimeBackoffLimiter.php │ ├── RateLimiter.php │ ├── RateLimiterException.php │ └── RateLimiterFactory.php ├── Resources │ ├── config │ │ ├── packages │ │ │ ├── dev │ │ │ │ ├── easy_log_handler.yaml │ │ │ │ ├── framework.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ ├── routing.yaml │ │ │ │ └── shopware.yaml │ │ │ ├── e2e │ │ │ │ └── e2e.yaml │ │ │ ├── feature.yaml │ │ │ ├── framework.yaml │ │ │ ├── installer.yaml │ │ │ ├── phpstan_dev │ │ │ │ └── framework.yaml │ │ │ ├── prod │ │ │ │ └── monolog.yaml │ │ │ ├── routing.yaml │ │ │ ├── shopware.yaml │ │ │ ├── telemetry.yaml │ │ │ ├── test │ │ │ │ ├── framework.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── shopware.yaml │ │ │ ├── translation.yaml │ │ │ └── twig.yaml │ │ ├── routes.xml │ │ ├── routes_dev.xml │ │ └── routes_overwrite.xml │ ├── public │ │ └── assets │ │ │ └── default │ │ │ └── cms │ │ │ ├── preview_camera_large.jpg │ │ │ ├── preview_glasses_large.jpg │ │ │ ├── preview_mountain_large.jpg │ │ │ └── preview_plant_large.jpg │ ├── snippet │ │ ├── messages.de.base.json │ │ └── messages.en.base.json │ └── views │ │ ├── documents │ │ ├── base.html.twig │ │ ├── credit_note.html.twig │ │ ├── delivery_note.html.twig │ │ ├── includes │ │ │ ├── comment.html.twig │ │ │ ├── footer.html.twig │ │ │ ├── letter_header.html.twig │ │ │ ├── logo.html.twig │ │ │ ├── loop.html.twig │ │ │ ├── payment_shipping.html.twig │ │ │ ├── position.html.twig │ │ │ ├── position_header.html.twig │ │ │ ├── shipping_address.html.twig │ │ │ ├── shipping_costs.html.twig │ │ │ ├── summary.html.twig │ │ │ ├── table_close.html.twig │ │ │ └── table_open.html.twig │ │ ├── invoice.html.twig │ │ ├── storno.html.twig │ │ ├── style_base_html.css.twig │ │ ├── style_base_landscape.css.twig │ │ └── style_base_portrait.css.twig │ │ ├── profile.html.twig │ │ ├── snippets │ │ ├── address │ │ │ ├── city.html.twig │ │ │ ├── company.html.twig │ │ │ ├── country.html.twig │ │ │ ├── country_state.html.twig │ │ │ ├── department.html.twig │ │ │ ├── first_name.html.twig │ │ │ ├── last_name.html.twig │ │ │ ├── phone_number.html.twig │ │ │ ├── salutation.html.twig │ │ │ ├── street.html.twig │ │ │ ├── title.html.twig │ │ │ └── zipcode.html.twig │ │ ├── render.html.twig │ │ └── symbol │ │ │ ├── comma.html.twig │ │ │ ├── dash.html.twig │ │ │ └── tilde.html.twig │ │ └── stoplightio.html.twig ├── Routing │ ├── AbstractRouteScope.php │ ├── Annotation │ │ └── CriteriaValueResolver.php │ ├── ApiContextRouteScopeDependant.php │ ├── ApiRequestContextResolver.php │ ├── ApiRouteScope.php │ ├── CanonicalRedirectService.php │ ├── ContextResolverListener.php │ ├── CoreSubscriber.php │ ├── Event │ │ ├── MaintenanceModeRequestEvent.php │ │ └── SalesChannelContextResolvedEvent.php │ ├── Exception │ │ ├── CustomerNotLoggedInRoutingException.php │ │ ├── InvalidRouteScopeException.php │ │ └── SalesChannelNotFoundException.php │ ├── Extension │ │ └── CanonicalRedirectExtension.php │ ├── Facade │ │ ├── RequestFacade.php │ │ └── RequestFacadeFactory.php │ ├── KernelListenerPriorities.php │ ├── MaintenanceModeResolver.php │ ├── PaymentScopeWhitelist.php │ ├── QueryDataBagResolver.php │ ├── RequestContextResolverInterface.php │ ├── RequestDataBagResolver.php │ ├── RequestTransformer.php │ ├── RequestTransformerInterface.php │ ├── RouteEventSubscriber.php │ ├── RouteParamsCleanupListener.php │ ├── RouteScope.php │ ├── RouteScopeCheckTrait.php │ ├── RouteScopeListener.php │ ├── RouteScopeRegistry.php │ ├── RouteScopeWhitelistInterface.php │ ├── RoutingException.php │ ├── SalesChannelContextRouteScopeDependant.php │ ├── SalesChannelRequestContextResolver.php │ ├── StoreApiRouteScope.php │ ├── SymfonyRouteScopeWhitelist.php │ └── Validation │ │ ├── Constraint │ │ ├── RouteNotBlocked.php │ │ └── RouteNotBlockedValidator.php │ │ └── RouteBlocklistService.php ├── Rule │ ├── Api │ │ └── RuleConfigController.php │ ├── Collector │ │ └── RuleConditionRegistry.php │ ├── Container │ │ ├── AndRule.php │ │ ├── Container.php │ │ ├── ContainerInterface.php │ │ ├── DaysSinceRule.php │ │ ├── FilterRule.php │ │ ├── MatchAllLineItemsRule.php │ │ ├── NotRule.php │ │ ├── OrRule.php │ │ ├── XorRule.php │ │ └── ZipCodeRule.php │ ├── CustomFieldRule.php │ ├── DateRangeRule.php │ ├── Exception │ │ ├── InvalidConditionException.php │ │ ├── UnsupportedOperatorException.php │ │ └── UnsupportedValueException.php │ ├── FlowRule.php │ ├── Rule.php │ ├── RuleCollection.php │ ├── RuleComparison.php │ ├── RuleConfig.php │ ├── RuleConstraints.php │ ├── RuleException.php │ ├── RuleIdMatcher.php │ ├── RuleScope.php │ ├── SalesChannelRule.php │ ├── ScriptRule.php │ ├── SimpleRule.php │ ├── TimeRangeRule.php │ └── WeekdayRule.php ├── Script │ ├── Api │ │ ├── AclFacade.php │ │ ├── AclFacadeHookFactory.php │ │ ├── ApiHook.php │ │ ├── ResponseCacheConfiguration.php │ │ ├── ResponseHook.php │ │ ├── ScriptApiRoute.php │ │ ├── ScriptResponse.php │ │ ├── ScriptResponseEncoder.php │ │ ├── ScriptResponseFactoryFacade.php │ │ ├── ScriptResponseFactoryFacadeHookFactory.php │ │ ├── ScriptStoreApiRoute.php │ │ ├── StoreApiCacheKeyHook.php │ │ ├── StoreApiHook.php │ │ └── StoreApiResponseHook.php │ ├── AppContextCreator.php │ ├── Debugging │ │ ├── Debug.php │ │ └── ScriptTraces.php │ ├── Exception │ │ └── ScriptExecutionFailedException.php │ ├── Execution │ │ ├── Awareness │ │ │ ├── AppSpecificHook.php │ │ │ ├── HookServiceFactory.php │ │ │ ├── SalesChannelContextAware.php │ │ │ ├── SalesChannelContextAwareTrait.php │ │ │ ├── ScriptResponseAwareTrait.php │ │ │ ├── StoppableHook.php │ │ │ └── StoppableHookTrait.php │ │ ├── DeprecatedHook.php │ │ ├── FunctionHook.php │ │ ├── Hook.php │ │ ├── InterfaceHook.php │ │ ├── OptionalFunctionHook.php │ │ ├── Script.php │ │ ├── ScriptAppInformation.php │ │ ├── ScriptExecutor.php │ │ ├── ScriptLoader.php │ │ ├── ScriptTwigLoader.php │ │ └── TraceHook.php │ ├── Facade │ │ └── ArrayFacade.php │ ├── ScriptCollection.php │ ├── ScriptDefinition.php │ ├── ScriptEntity.php │ ├── ScriptException.php │ └── ServiceStubs.php ├── ShopwareException.php ├── ShopwareHttpException.php ├── Sso │ ├── Config │ │ ├── LoginConfig.php │ │ ├── LoginConfigService.php │ │ └── TemplateData.php │ ├── Controller │ │ └── SsoController.php │ ├── Exceptions │ │ └── SsoUserNotFoundException.php │ ├── LoginResponseService.php │ ├── ShopwareGrantType.php │ ├── ShopwarePasswordGrantType.php │ ├── ShopwareRefreshTokenGrantType.php │ ├── SsoException.php │ ├── SsoService.php │ ├── SsoUser │ │ ├── SsoUserInvitationMailService.php │ │ └── SsoUserService.php │ ├── StateValidator.php │ ├── TokenService │ │ ├── ExternalTokenService.php │ │ ├── IdTokenParser.php │ │ ├── ParsedIdToken.php │ │ ├── PublicKeyLoader.php │ │ └── TokenResult.php │ ├── TokenTimeToLive.php │ └── UserService │ │ ├── ExternalAuthUser.php │ │ ├── Token.php │ │ └── UserService.php ├── Store │ ├── Api │ │ ├── ExtensionStoreActionsController.php │ │ ├── ExtensionStoreDataController.php │ │ ├── ExtensionStoreLicensesController.php │ │ ├── FirstRunWizardController.php │ │ └── StoreController.php │ ├── Authentication │ │ ├── AbstractStoreRequestOptionsProvider.php │ │ ├── FrwRequestOptionsProvider.php │ │ ├── LocaleProvider.php │ │ └── StoreRequestOptionsProvider.php │ ├── Command │ │ ├── StoreDownloadCommand.php │ │ └── StoreLoginCommand.php │ ├── Event │ │ ├── FirstRunWizardFinishedEvent.php │ │ ├── FirstRunWizardStartedEvent.php │ │ └── InstalledExtensionsListingLoadedEvent.php │ ├── Exception │ │ ├── ExtensionNotFoundException.php │ │ ├── ExtensionUpdateRequiresConsentAffirmationException.php │ │ ├── InvalidExtensionIdException.php │ │ ├── InvalidExtensionRatingValueException.php │ │ ├── InvalidVariantIdException.php │ │ ├── LicenseDomainVerificationException.php │ │ ├── LicenseNotFoundException.php │ │ ├── ShopSecretInvalidException.php │ │ ├── StoreApiException.php │ │ ├── StoreInvalidCredentialsException.php │ │ ├── StoreLicenseDomainMissingException.php │ │ ├── StoreNotAvailableException.php │ │ ├── StoreSessionExpiredException.php │ │ ├── StoreTokenMissingException.php │ │ └── VariantTypesNotAllowedException.php │ ├── Helper │ │ └── PermissionCategorization.php │ ├── InAppPurchase.php │ ├── InAppPurchase │ │ ├── Api │ │ │ └── InAppPurchasesController.php │ │ ├── Event │ │ │ └── InAppPurchaseChangedEvent.php │ │ ├── Handler │ │ │ └── InAppPurchaseUpdateHandler.php │ │ ├── InAppPurchaseUpdateTask.php │ │ ├── Services │ │ │ ├── DecodedPurchaseStruct.php │ │ │ ├── DecodedPurchasesCollectionStruct.php │ │ │ ├── InAppPurchaseProvider.php │ │ │ ├── InAppPurchaseUpdater.php │ │ │ └── KeyFetcher.php │ │ └── Subscriber │ │ │ └── InAppPurchaseConfigSubscriber.php │ ├── Search │ │ ├── EqualsFilterStruct.php │ │ ├── ExtensionCriteria.php │ │ ├── FilterStruct.php │ │ └── MultiFilterStruct.php │ ├── Services │ │ ├── AbstractExtensionDataProvider.php │ │ ├── AbstractExtensionLifecycle.php │ │ ├── AbstractExtensionStoreLicensesService.php │ │ ├── AbstractStoreAppLifecycleService.php │ │ ├── ExtensionDataProvider.php │ │ ├── ExtensionDownloader.php │ │ ├── ExtensionLifecycleService.php │ │ ├── ExtensionListingLoader.php │ │ ├── ExtensionLoader.php │ │ ├── ExtensionStoreLicensesService.php │ │ ├── FirstRunWizardClient.php │ │ ├── FirstRunWizardService.php │ │ ├── InstanceService.php │ │ ├── MiddlewareInterface.php │ │ ├── ShopSecretInvalidMiddleware.php │ │ ├── StoreAppLifecycleService.php │ │ ├── StoreClient.php │ │ ├── StoreClientFactory.php │ │ ├── StoreService.php │ │ ├── StoreSessionExpiredMiddleware.php │ │ └── TrackingEventClient.php │ ├── StoreException.php │ ├── Struct │ │ ├── AccessTokenStruct.php │ │ ├── BinaryCollection.php │ │ ├── BinaryStruct.php │ │ ├── CartPositionCollection.php │ │ ├── CartPositionStruct.php │ │ ├── CartStruct.php │ │ ├── DiscountCampaignStruct.php │ │ ├── DomainVerificationRequestStruct.php │ │ ├── ExtensionCollection.php │ │ ├── ExtensionStruct.php │ │ ├── FaqCollection.php │ │ ├── FaqStruct.php │ │ ├── FrwState.php │ │ ├── ImageCollection.php │ │ ├── ImageStruct.php │ │ ├── LicenseCollection.php │ │ ├── LicenseDomainCollection.php │ │ ├── LicenseDomainStruct.php │ │ ├── LicenseStruct.php │ │ ├── PermissionCollection.php │ │ ├── PermissionStruct.php │ │ ├── PluginCategoryCollection.php │ │ ├── PluginCategoryStruct.php │ │ ├── PluginDownloadDataStruct.php │ │ ├── PluginRecommendationCollection.php │ │ ├── PluginRegionCollection.php │ │ ├── PluginRegionStruct.php │ │ ├── ReviewCollection.php │ │ ├── ReviewStruct.php │ │ ├── ReviewSummaryStruct.php │ │ ├── ShopUserTokenStruct.php │ │ ├── StoreActionStruct.php │ │ ├── StoreCategoryCollection.php │ │ ├── StoreCategoryStruct.php │ │ ├── StoreCollection.php │ │ ├── StoreLicenseStruct.php │ │ ├── StoreLicenseSubscriptionStruct.php │ │ ├── StoreLicenseTypeStruct.php │ │ ├── StoreLicenseViolationStruct.php │ │ ├── StoreLicenseViolationTypeStruct.php │ │ ├── StorePluginStruct.php │ │ ├── StoreStruct.php │ │ ├── StoreUpdateStruct.php │ │ ├── VariantCollection.php │ │ └── VariantStruct.php │ ├── Subscriber │ │ ├── ExtensionChangedSubscriber.php │ │ └── LicenseHostChangedSubscriber.php │ └── public.key ├── Struct │ ├── ArrayEntity.php │ ├── ArrayStruct.php │ ├── AssignArrayInterface.php │ ├── AssignArrayTrait.php │ ├── CloneTrait.php │ ├── Collection.php │ ├── ContextTokenStruct.php │ ├── CreateFromTrait.php │ ├── ExtendableInterface.php │ ├── ExtendableTrait.php │ ├── JsonSerializableTrait.php │ ├── Serializer │ │ └── StructNormalizer.php │ ├── StateAwareTrait.php │ ├── Struct.php │ ├── StructCollection.php │ └── VariablesAccessTrait.php ├── SystemCheck │ ├── BaseCheck.php │ ├── Check │ │ ├── Category.php │ │ ├── Result.php │ │ ├── Status.php │ │ └── SystemCheckExecutionContext.php │ ├── Command │ │ └── SystemCheckCommand.php │ └── SystemChecker.php ├── Telemetry │ ├── Metrics │ │ ├── Config │ │ │ ├── MetricConfig.php │ │ │ ├── MetricConfigProvider.php │ │ │ ├── TransportConfig.php │ │ │ └── TransportConfigProvider.php │ │ ├── Exception │ │ │ ├── MetricNotSupportedException.php │ │ │ └── MissingMetricConfigurationException.php │ │ ├── Factory │ │ │ └── MetricTransportFactoryInterface.php │ │ ├── Meter.php │ │ ├── MeterProvider.php │ │ ├── Metric │ │ │ ├── ConfiguredMetric.php │ │ │ ├── Metric.php │ │ │ └── Type.php │ │ ├── MetricTransportInterface.php │ │ └── Transport │ │ │ └── TransportCollection.php │ ├── README.md │ └── TelemetryException.php ├── Test │ ├── Api │ │ ├── Acl │ │ │ └── fixtures │ │ │ │ ├── AclTestController.php │ │ │ │ └── test │ │ │ │ └── icon.png │ │ └── Serializer │ │ │ └── AssertValuesTrait.php │ ├── DataAbstractionLayer │ │ ├── EntityProtection │ │ │ └── _fixtures │ │ │ │ ├── PluginProtectionExtension.php │ │ │ │ ├── SystemConfigExtension.php │ │ │ │ └── UserAccessKeyExtension.php │ │ ├── Field │ │ │ ├── DataAbstractionLayerFieldTestBehaviour.php │ │ │ └── TestDefinition │ │ │ │ ├── AssociationExtension.php │ │ │ │ ├── ConfigJsonDefinition.php │ │ │ │ ├── ConsistsOfManyToManyDefinition.php │ │ │ │ ├── CustomFieldPlainTestDefinition.php │ │ │ │ ├── CustomFieldTestDefinition.php │ │ │ │ ├── CustomFieldTestTranslationDefinition.php │ │ │ │ ├── DateDefinition.php │ │ │ │ ├── DateTimeDefinition.php │ │ │ │ ├── EmailDefinition.php │ │ │ │ ├── ExtendableDefinition.php │ │ │ │ ├── ExtendedDefinition.php │ │ │ │ ├── ExtendedProductDefinition.php │ │ │ │ ├── ExtendedProductManufacturerDefinition.php │ │ │ │ ├── FkFieldExtension.php │ │ │ │ ├── InvalidReferenceExtension.php │ │ │ │ ├── JsonDefinition.php │ │ │ │ ├── ListDefinition.php │ │ │ │ ├── ManyToOneProductDefinition.php │ │ │ │ ├── ModifyFieldsExtension.php │ │ │ │ ├── NamedDefinition.php │ │ │ │ ├── NamedOptionalGroupDefinition.php │ │ │ │ ├── NestedDefinition.php │ │ │ │ ├── NonIdFieldNamePrimaryKeyTestDefinition.php │ │ │ │ ├── OneToOneInheritedProductDefinition.php │ │ │ │ ├── OneToOneInheritedProductExtension.php │ │ │ │ ├── PriceFieldDefinition.php │ │ │ │ ├── ProductExtension.php │ │ │ │ ├── ProductExtensionSelfReferenced.php │ │ │ │ ├── ProductManufacturerExtension.php │ │ │ │ ├── ReferenceVersionExtension.php │ │ │ │ ├── RootDefinition.php │ │ │ │ ├── ScalarExtension.php │ │ │ │ ├── ScalarRuntimeExtension.php │ │ │ │ ├── SingleEntityDependencyTestDependencyDefinition.php │ │ │ │ ├── SingleEntityDependencyTestDependencySubDefinition.php │ │ │ │ ├── SingleEntityDependencyTestRootDefinition.php │ │ │ │ ├── SingleEntityDependencyTestSubDefinition.php │ │ │ │ ├── ToManyAssociationDefinition.php │ │ │ │ ├── ToManyAssociationDependencyDefinition.php │ │ │ │ ├── ToManyAssociationMappingDefinition.php │ │ │ │ ├── ToOneProductExtension.php │ │ │ │ ├── TranslatableTestDefinition.php │ │ │ │ ├── TranslatableTestHydrator.php │ │ │ │ ├── TranslatableTestTranslationDefinition.php │ │ │ │ ├── WriteProtectedDefinition.php │ │ │ │ ├── WriteProtectedReferenceDefinition.php │ │ │ │ ├── WriteProtectedRelationDefinition.php │ │ │ │ ├── WriteProtectedTranslatedDefinition.php │ │ │ │ └── WriteProtectedTranslationDefinition.php │ │ ├── Search │ │ │ ├── Definition │ │ │ │ ├── FkFieldPrimaryTestDefinition.php │ │ │ │ ├── GroupByTestDefinition.php │ │ │ │ └── MultiFkFieldPrimaryTestDefinition.php │ │ │ ├── TestAggregation.php │ │ │ └── Util │ │ │ │ └── DateHistogramCase.php │ │ └── Write │ │ │ ├── Entity │ │ │ ├── DefaultsChildDefinition.php │ │ │ ├── DefaultsChildTranslationDefinition.php │ │ │ ├── DefaultsDefinition.php │ │ │ ├── DeleteCascadeParentDefinition.php │ │ │ └── SetNullOnDeleteParentDefinition.php │ │ │ ├── NonUuidFkField │ │ │ ├── NonUuidFkField.php │ │ │ ├── NonUuidFkFieldSerializer.php │ │ │ ├── TestEntityOneDefinition.php │ │ │ └── TestEntityTwoDefinition.php │ │ │ └── Validation │ │ │ └── TestDefinition │ │ │ ├── TestDefinition.php │ │ │ └── TestTranslationDefinition.php │ ├── DependencyInjection │ │ ├── CompilerPass │ │ │ └── ContainerVisibilityCompilerPass.php │ │ └── fixtures │ │ │ ├── TestBusinessEvents.php │ │ │ └── TestEvent.php │ ├── Filesystem │ │ └── Adapter │ │ │ └── MemoryAdapterFactory.php │ ├── Logging │ │ └── Event │ │ │ └── LogAwareTestFlowEvent.php │ ├── MessageQueue │ │ └── fixtures │ │ │ ├── BarMessage.php │ │ │ ├── FooMessage.php │ │ │ └── TestMessageHandler.php │ ├── Migration │ │ ├── MigrationTestBehaviour.php │ │ ├── _test_migrations_invalid_namespace │ │ │ └── Migration1WithoutANamespace.php │ │ ├── _test_migrations_valid │ │ │ ├── Foo.php │ │ │ ├── Migration1.php │ │ │ ├── Migration2.php │ │ │ └── test.txt │ │ ├── _test_migrations_valid_run_time │ │ │ ├── Migration1.php │ │ │ └── Migration2.php │ │ └── _test_migrations_valid_run_time_exceptions │ │ │ ├── Migration1.php │ │ │ └── Migration2.php │ ├── Plugin │ │ ├── PluginIntegrationTestBehaviour.php │ │ ├── PluginTestsHelper.php │ │ ├── Requirement │ │ │ └── _fixture │ │ │ │ ├── SwagRequirementInvalidTest │ │ │ │ └── composer.json │ │ │ │ ├── SwagRequirementValidSubpackageTest │ │ │ │ └── composer.json │ │ │ │ ├── SwagRequirementValidSubpackageWildcardTest │ │ │ │ └── composer.json │ │ │ │ ├── SwagRequirementValidTest │ │ │ │ └── composer.json │ │ │ │ ├── SwagRequirementValidTestExtension │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ └── SwagRequirementValidTestExtension.php │ │ │ │ ├── SwagTestValidateConflictsSpecificMessage │ │ │ │ └── composer.json │ │ │ │ ├── SwagTestValidateConflictsValid │ │ │ │ └── composer.json │ │ │ │ ├── SwagTestValidateConflictsValidOtherPluginDuringUpdateA │ │ │ │ └── composer.json │ │ │ │ ├── SwagTestValidateConflictsValidOtherPluginDuringUpdateB │ │ │ │ └── composer.json │ │ │ │ └── SwagTestValidateConflictsWildcardIncompatibility │ │ │ │ └── composer.json │ │ └── _fixture │ │ │ ├── apps │ │ │ ├── plugin │ │ │ │ ├── Resources │ │ │ │ │ ├── app │ │ │ │ │ │ └── storefront │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── example-plugin │ │ │ │ │ │ │ └── example-plugin.js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── scss │ │ │ │ │ │ │ ├── additional.scss │ │ │ │ │ │ │ └── base.scss │ │ │ │ │ └── views │ │ │ │ │ │ ├── administration │ │ │ │ │ │ └── index.html.twig │ │ │ │ │ │ └── storefront │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── header │ │ │ │ │ │ └── logo.html.twig │ │ │ │ ├── icon.png │ │ │ │ └── manifest.xml │ │ │ ├── theme │ │ │ │ ├── Resources │ │ │ │ │ ├── app │ │ │ │ │ │ └── storefront │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── example-plugin │ │ │ │ │ │ │ └── example-plugin.js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── scss │ │ │ │ │ │ │ ├── base.scss │ │ │ │ │ │ │ └── overrides.scss │ │ │ │ │ ├── theme.json │ │ │ │ │ └── views │ │ │ │ │ │ ├── administration │ │ │ │ │ │ └── index.html.twig │ │ │ │ │ │ └── storefront │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── header │ │ │ │ │ │ └── logo.html.twig │ │ │ │ ├── icon.png │ │ │ │ └── manifest.xml │ │ │ └── with-webpack │ │ │ │ ├── Resources │ │ │ │ └── app │ │ │ │ │ └── storefront │ │ │ │ │ └── build │ │ │ │ │ └── webpack.config.js │ │ │ │ ├── icon.png │ │ │ │ └── manifest.xml │ │ │ ├── archives │ │ │ ├── App.zip │ │ │ ├── NoPlugin.zip │ │ │ ├── NoZip.zip │ │ │ └── SwagFashionTheme.zip │ │ │ ├── bundles │ │ │ ├── FooBarBundle.php │ │ │ └── GizmoBundle.php │ │ │ ├── plugins │ │ │ ├── .gitignore │ │ │ ├── SwagManualMigrationTestPlugin │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Migration │ │ │ │ │ ├── Migration1.php │ │ │ │ │ ├── Migration2.php │ │ │ │ │ ├── Migration3.php │ │ │ │ │ └── Migration4.php │ │ │ │ │ ├── Resources │ │ │ │ │ ├── config │ │ │ │ │ │ └── services.xml │ │ │ │ │ └── public │ │ │ │ │ │ └── plugin.png │ │ │ │ │ └── SwagManualMigrationTestPlugin.php │ │ │ ├── SwagTestErrors │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ └── SwagTestErrors.php │ │ │ ├── SwagTestExecuteComposerCommands │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ └── SwagTestExecuteComposerCommands.php │ │ │ ├── SwagTestExtension │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ └── SwagTestExtension.php │ │ │ ├── SwagTestNoDefaultLang │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Resources │ │ │ │ │ ├── config │ │ │ │ │ │ └── services.xml │ │ │ │ │ └── public │ │ │ │ │ │ └── plugin.png │ │ │ │ │ └── SwagTestNoDefaultLang.php │ │ │ ├── SwagTestNoExtraLabelProperty │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ └── SwagTestNoExtraLabelProperty.php │ │ │ ├── SwagTestNotSupportedVersion │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ └── SwagTestNotSupportedVersion.php │ │ │ ├── SwagTestPlugin │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Migration │ │ │ │ │ └── Migration1536761533TestMigration.php │ │ │ │ │ ├── Resources │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ └── services.xml │ │ │ │ │ └── public │ │ │ │ │ │ └── plugin.png │ │ │ │ │ ├── SwagTestFake.php │ │ │ │ │ ├── SwagTestPlugin.php │ │ │ │ │ ├── SwagTestSubscriber.php │ │ │ │ │ ├── SwagTestTask.php │ │ │ │ │ └── SwagTestTaskHandler.php │ │ │ ├── SwagTestPluginAcl │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── SwagTestPluginAclAdditionalProductViewer.php │ │ │ │ │ ├── SwagTestPluginAclOpenToAllRead.php │ │ │ │ │ ├── SwagTestPluginAclProductViewer.php │ │ │ │ │ └── SwagTestPluginAclProductWriter.php │ │ │ ├── SwagTestShipsVendorDirectory │ │ │ │ ├── composer.json │ │ │ │ ├── composer.lock │ │ │ │ ├── src │ │ │ │ │ └── SwagTestShipsVendorDirectory.php │ │ │ │ └── vendor │ │ │ │ │ ├── autoload.php │ │ │ │ │ └── composer │ │ │ │ │ ├── ClassLoader.php │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ ├── autoload_static.php │ │ │ │ │ └── installed.php │ │ │ ├── SwagTestSkipRebuild │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Resources │ │ │ │ │ └── config │ │ │ │ │ │ └── services.xml │ │ │ │ │ ├── SwagTestSkipRebuild.php │ │ │ │ │ └── SwagTestSkipRebuildSubscriber.php │ │ │ ├── SwagTestTheme │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Resources │ │ │ │ │ └── theme.json │ │ │ │ │ └── SwagTestTheme.php │ │ │ ├── SwagTestWithBundle │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ └── SwagTestWithBundle.php │ │ │ └── SwagTestWithoutConfig │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ └── SwagTestWithoutConfig.php │ │ │ └── root-plugin │ │ │ └── composer.json │ ├── RateLimiter │ │ ├── DisableRateLimiterCompilerPass.php │ │ └── RateLimiterTestTrait.php │ ├── RemoveDeprecatedServicesPass.php │ ├── Script │ │ └── Execution │ │ │ ├── DeprecatedTestHook.php │ │ │ ├── FunctionWillBeRequiredTestHook.php │ │ │ ├── SalesChannelTestHook.php │ │ │ ├── StoppableTestHook.php │ │ │ └── TestHook.php │ ├── Seo │ │ └── StorefrontSalesChannelTestHelper.php │ ├── Store │ │ ├── ExtensionBehaviour.php │ │ ├── ServiceBehaviour.php │ │ ├── StaticInAppPurchaseFactory.php │ │ └── StoreClientBehaviour.php │ ├── Telemetry │ │ ├── Factory │ │ │ └── TraceableTransportFactory.php │ │ └── Transport │ │ │ └── TraceableTransport.php │ ├── TestBundle.php │ ├── TestCacheClearer.php │ ├── TestCaseBase │ │ ├── AdminApiTestBehaviour.php │ │ ├── AdminFunctionalTestBehaviour.php │ │ ├── BasicTestDataBehaviour.php │ │ ├── CacheTestBehaviour.php │ │ ├── CountryAddToSalesChannelTestBehaviour.php │ │ ├── DatabaseTransactionBehaviour.php │ │ ├── EnvTestBehaviour.php │ │ ├── EventDispatcherBehaviour.php │ │ ├── EventDispatcherWrapper.php │ │ ├── FilesystemBehaviour.php │ │ ├── IntegrationTestBehaviour.php │ │ ├── KernelLifecycleManager.php │ │ ├── KernelTestBehaviour.php │ │ ├── MailTemplateTestBehaviour.php │ │ ├── QueueTestBehaviour.php │ │ ├── RequestStackTestBehaviour.php │ │ ├── SalesChannelApiTestBehaviour.php │ │ ├── SalesChannelFunctionalTestBehaviour.php │ │ ├── SessionTestBehaviour.php │ │ ├── TaxAddToSalesChannelTestBehaviour.php │ │ └── TranslationTestBehaviour.php │ ├── TestCaseHelper │ │ ├── AssertResponseHelper.php │ │ ├── CallableClass.php │ │ ├── ExtensionHelper.php │ │ ├── ReflectionHelper.php │ │ ├── StopWorkerWhenIdleListener.php │ │ ├── TestBrowser.php │ │ └── TestUser.php │ ├── TestKernel.php │ ├── TestSessionStorage.php │ ├── TestSessionStorageFactory.php │ └── Webhook │ │ └── _fixtures │ │ └── BusinessEvents │ │ ├── ArrayBusinessEvent.php │ │ ├── BusinessEventEncoderTestInterface.php │ │ ├── CollectionBusinessEvent.php │ │ ├── EntityBusinessEvent.php │ │ ├── InvalidAvailableDataBusinessEvent.php │ │ ├── InvalidEventType.php │ │ ├── InvalidTypeBusinessEvent.php │ │ ├── NestedEntityBusinessEvent.php │ │ ├── ScalarBusinessEvent.php │ │ ├── StructuredArrayObjectBusinessEvent.php │ │ ├── StructuredObjectBusinessEvent.php │ │ └── UnstructuredObjectBusinessEvent.php ├── Update │ ├── Api │ │ └── UpdateController.php │ ├── Checkers │ │ ├── LicenseCheck.php │ │ └── WriteableCheck.php │ ├── Event │ │ ├── ExtensionCompatibilitiesResolvedEvent.php │ │ ├── UpdateEvent.php │ │ ├── UpdatePostFinishEvent.php │ │ ├── UpdatePostPrepareEvent.php │ │ ├── UpdatePreFinishEvent.php │ │ └── UpdatePrePrepareEvent.php │ ├── Services │ │ ├── ApiClient.php │ │ ├── ExtensionCompatibility.php │ │ ├── Filesystem.php │ │ └── UpdateHtaccess.php │ ├── Steps │ │ ├── DeactivateExtensionsStep.php │ │ └── ValidResult.php │ ├── Struct │ │ ├── ValidationResult.php │ │ └── Version.php │ └── Subscriber │ │ └── UpdateSubscriber.php ├── Util │ ├── ArrayComparator.php │ ├── ArrayNormalizer.php │ ├── Base64.php │ ├── Exception │ │ ├── Base64DecodingException.php │ │ ├── ComparatorException.php │ │ └── UtilXmlParsingException.php │ ├── Filesystem.php │ ├── FloatComparator.php │ ├── Hasher.php │ ├── HtmlSanitizer.php │ ├── IOStreamHelper.php │ ├── Json.php │ ├── MemorySizeCalculator.php │ ├── Random.php │ ├── UrlEncoder.php │ ├── UtilException.php │ ├── VersionParser.php │ └── XmlReader.php ├── Uuid │ ├── Exception │ │ ├── InvalidUuidException.php │ │ └── InvalidUuidLengthException.php │ ├── Uuid.php │ └── UuidException.php ├── Validation │ ├── BuildValidationEvent.php │ ├── Constraint │ │ ├── ArrayOfType.php │ │ ├── ArrayOfTypeValidator.php │ │ ├── ArrayOfUuid.php │ │ ├── ArrayOfUuidValidator.php │ │ ├── Uuid.php │ │ └── UuidValidator.php │ ├── ConstraintViolationExceptionInterface.php │ ├── DataBag │ │ ├── DataBag.php │ │ ├── QueryDataBag.php │ │ └── RequestDataBag.php │ ├── DataValidationDefinition.php │ ├── DataValidationFactoryInterface.php │ ├── DataValidator.php │ ├── Exception │ │ └── ConstraintViolationException.php │ ├── HappyPathValidator.php │ ├── ValidatorFactory.php │ └── WriteConstraintViolationException.php └── Webhook │ ├── AclPrivilegeCollection.php │ ├── BusinessEventEncoder.php │ ├── Event │ └── PreWebhooksDispatchEvent.php │ ├── EventLog │ ├── WebhookEventLogCollection.php │ ├── WebhookEventLogDefinition.php │ └── WebhookEventLogEntity.php │ ├── Handler │ └── WebhookEventMessageHandler.php │ ├── Hookable.php │ ├── Hookable │ ├── HookableBusinessEvent.php │ ├── HookableEntityInterface.php │ ├── HookableEntityWrittenEvent.php │ ├── HookableEventCollector.php │ ├── HookableEventFactory.php │ └── WriteResultMerger.php │ ├── Message │ └── WebhookEventMessage.php │ ├── ScheduledTask │ ├── CleanupWebhookEventLogTask.php │ └── CleanupWebhookEventLogTaskHandler.php │ ├── Service │ ├── RelatedWebhooks.php │ ├── WebhookCleanup.php │ ├── WebhookLoader.php │ └── WebhookManager.php │ ├── Subscriber │ └── RetryWebhookMessageFailedSubscriber.php │ ├── Webhook.php │ ├── WebhookCacheClearer.php │ ├── WebhookCollection.php │ ├── WebhookDefinition.php │ ├── WebhookDispatcher.php │ ├── WebhookEntity.php │ └── WebhookException.php ├── Installer ├── Configuration │ ├── AdminConfigurationService.php │ ├── EnvConfigWriter.php │ └── ShopConfigurationService.php ├── Controller │ ├── DatabaseConfigurationController.php │ ├── DatabaseImportController.php │ ├── FinishController.php │ ├── InstallerController.php │ ├── LicenseController.php │ ├── RequirementsController.php │ ├── ShopConfigurationController.php │ ├── StartController.php │ └── TranslationController.php ├── Database │ ├── BlueGreenDeploymentService.php │ ├── DatabaseMigrator.php │ └── MigrationCollectionFactory.php ├── DependencyInjection │ └── services.xml ├── Finish │ ├── SystemLocker.php │ └── UniqueIdGenerator.php ├── Helper │ └── InstallerRedirectHelper.php ├── Installer.php ├── InstallerKernel.php ├── License │ └── LicenseFetcher.php ├── Requirements │ ├── ConfigurationRequirementsValidator.php │ ├── EnvironmentRequirementsValidator.php │ ├── FilesystemRequirementsValidator.php │ ├── IniConfigReader.php │ ├── RequirementsValidatorInterface.php │ └── Struct │ │ ├── PathCheck.php │ │ ├── RequirementCheck.php │ │ ├── RequirementsCheckCollection.php │ │ └── SystemCheck.php ├── Resources │ ├── config │ │ ├── packages │ │ │ └── translation.yaml │ │ └── routes.xml │ ├── public │ │ └── assets │ │ │ ├── fonts │ │ │ └── scc.woff │ │ │ ├── images │ │ │ ├── favicon │ │ │ │ ├── favicon-16x16.png │ │ │ │ └── favicon-32x32.png │ │ │ ├── flags │ │ │ │ ├── cs.svg │ │ │ │ ├── da-DK.svg │ │ │ │ ├── de.svg │ │ │ │ ├── en-US.svg │ │ │ │ ├── en.svg │ │ │ │ ├── es-ES.svg │ │ │ │ ├── fr.svg │ │ │ │ ├── it.svg │ │ │ │ ├── nl.svg │ │ │ │ ├── no.svg │ │ │ │ ├── pl.svg │ │ │ │ ├── pt-PT.svg │ │ │ │ └── sv-SE.svg │ │ │ ├── installer_logo.png │ │ │ ├── installer_logo_small.png │ │ │ ├── shopware_logo_white_on_blue.svg │ │ │ ├── sw-logo-blue.svg │ │ │ └── welcome.svg │ │ │ └── styles │ │ │ ├── fonts.css │ │ │ ├── icons.css │ │ │ ├── reset.css │ │ │ └── style.css │ ├── translations │ │ └── translations │ │ │ ├── messages.cs.yaml │ │ │ ├── messages.da-DK.yaml │ │ │ ├── messages.de.yaml │ │ │ ├── messages.en-US.yaml │ │ │ ├── messages.en.yaml │ │ │ ├── messages.es-ES.yaml │ │ │ ├── messages.fr.yaml │ │ │ ├── messages.it.yaml │ │ │ ├── messages.nl.yaml │ │ │ ├── messages.no.yaml │ │ │ ├── messages.pl.yaml │ │ │ ├── messages.pt-PT.yaml │ │ │ └── messages.sv-SE.yaml │ └── views │ │ └── installer │ │ ├── _help_tooltip.html.twig │ │ ├── base.html.twig │ │ ├── database-configuration.html.twig │ │ ├── database-import.html.twig │ │ ├── finish.html.twig │ │ ├── license.html.twig │ │ ├── requirements.html.twig │ │ ├── shop-configuration.html.twig │ │ ├── translation.html.twig │ │ └── welcome.html.twig └── Subscriber │ └── InstallerLocaleListener.php ├── Kernel.php ├── LICENSE ├── Maintenance ├── DependencyInjection │ └── services.xml ├── Maintenance.php ├── MaintenanceException.php ├── SalesChannel │ ├── Command │ │ ├── SalesChannelCreateCommand.php │ │ ├── SalesChannelListCommand.php │ │ ├── SalesChannelMaintenanceDisableCommand.php │ │ ├── SalesChannelMaintenanceEnableCommand.php │ │ ├── SalesChannelReplaceUrlCommand.php │ │ └── SalesChannelUpdateDomainCommand.php │ └── Service │ │ └── SalesChannelCreator.php ├── Staging │ ├── Command │ │ └── SystemSetupStagingCommand.php │ ├── Event │ │ └── SetupStagingEvent.php │ └── Handler │ │ ├── StagingAppHandler.php │ │ ├── StagingExtensionHandler.php │ │ ├── StagingMailHandler.php │ │ └── StagingSalesChannelHandler.php ├── System │ ├── Command │ │ ├── SystemConfigureShopCommand.php │ │ ├── SystemGenerateAppSecretCommand.php │ │ ├── SystemInstallCommand.php │ │ ├── SystemIsInstalledCommand.php │ │ ├── SystemSetupCommand.php │ │ ├── SystemUpdateFinishCommand.php │ │ └── SystemUpdatePrepareCommand.php │ ├── Exception │ │ └── DatabaseSetupException.php │ ├── Service │ │ ├── AppUrlVerifier.php │ │ ├── DatabaseConnectionFactory.php │ │ ├── SetupDatabaseAdapter.php │ │ ├── ShopConfigurator.php │ │ └── SystemLanguageChangeEvent.php │ └── Struct │ │ └── DatabaseConnectionInformation.php └── User │ ├── Command │ ├── UserChangePasswordCommand.php │ ├── UserCreateCommand.php │ └── UserListCommand.php │ └── Service │ └── UserProvisioner.php ├── Migration ├── Fixtures │ ├── MailTemplateContent.php │ ├── import-export-profiles │ │ └── ProductMappingProfile.php │ ├── mails │ │ ├── cancellation_mail │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── contact_form │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── credit_note_mail │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── customer.group.registration.accepted │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── customer.group.registration.declined │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── customer_group_change_accept │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── customer_group_change_reject │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── defaultMailFooter │ │ │ ├── de-html.twig │ │ │ ├── de-plain.twig │ │ │ ├── en-html.twig │ │ │ └── en-plain.twig │ │ ├── delivery_mail │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── downloads_delivery │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── guest_order.double_opt_in │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── invoice_mail │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order.state.cancelled │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order.state.completed │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order.state.in_progress │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order.state.open │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_confirmation_mail │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_delivery.state.cancelled │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_delivery.state.returned │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_delivery.state.returned_partially │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_delivery.state.shipped │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_delivery.state.shipped_partially │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_transaction.state.authorized │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_transaction.state.cancelled │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_transaction.state.chargeback │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_transaction.state.open │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_transaction.state.paid │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_transaction.state.paid_partially │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_transaction.state.refunded │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_transaction.state.refunded_partially │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_transaction.state.reminded │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── order_transaction.state.unconfirmed │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ ├── password_change │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ │ └── review_form │ │ │ ├── de-html.html.twig │ │ │ ├── de-plain.html.twig │ │ │ ├── en-html.html.twig │ │ │ └── en-plain.html.twig │ ├── productComparison-export-profiles │ │ ├── new-template-billiger.csv.twig │ │ ├── new-template-google.xml.twig │ │ ├── new-template-idealo.csv.twig │ │ ├── next-19135 │ │ │ ├── body_new.xml.twig │ │ │ └── body_old.xml.twig │ │ ├── next-37658 │ │ │ ├── new-template-idealo.csv.twig │ │ │ └── old-template-idealo.csv.twig │ │ ├── next-39314 │ │ │ ├── google_new.xml.twig │ │ │ └── google_old.xml.twig │ │ ├── old-template-billiger.csv.twig │ │ ├── old-template-google.xml.twig │ │ ├── old-template-idealo.csv.twig │ │ └── templates.php │ └── stopwords │ │ ├── de.php │ │ └── en.php ├── Test │ └── NullConnection.php ├── Traits │ ├── EnsureThumbnailSizesTrait.php │ ├── ImportTranslationsTrait.php │ ├── MailSubjectUpdate.php │ ├── MailUpdate.php │ ├── MigrationUntouchedDbTestTrait.php │ ├── StateMachineMigration.php │ ├── StateMachineMigrationImporter.php │ ├── StateMachineMigrationTrait.php │ ├── TranslationWriteResult.php │ ├── Translations.php │ └── UpdateMailTrait.php ├── V6_3 │ ├── Migration1536232600Language.php │ ├── Migration1536232610Locale.php │ ├── Migration1536232620SalesChannelType.php │ ├── Migration1536232630PropertyGroup.php │ ├── Migration1536232640Currency.php │ ├── Migration1536232650CustomerGroup.php │ ├── Migration1536232660Tax.php │ ├── Migration1536232670Unit.php │ ├── Migration1536232680Rule.php │ ├── Migration1536232690Version.php │ ├── Migration1536232700VersionCommit.php │ ├── Migration1536232710Integration.php │ ├── Migration1536232720Country.php │ ├── Migration1536232730CountryState.php │ ├── Migration1536232740SnippetSet.php │ ├── Migration1536232750Snippet.php │ ├── Migration1536232760StateMachine.php │ ├── Migration1536232770VersionCommitData.php │ ├── Migration1536232790MailHeaderFooter.php │ ├── Migration1536232800DeliveryTime.php │ ├── Migration1536232810User.php │ ├── Migration1536232820UserAccessKey.php │ ├── Migration1536232830MediaDefaultFolder.php │ ├── Migration1536232840MediaFolder.php │ ├── Migration1536232850Media.php │ ├── Migration1536232860ShippingMethod.php │ ├── Migration1536232870ShippingMethodPrice.php │ ├── Migration1536232880Category.php │ ├── Migration1536232890CmsPage.php │ ├── Migration1536232900CmsBlock.php │ ├── Migration1536232910CmsSlot.php │ ├── Migration1536232920PaymentMethod.php │ ├── Migration1536232930Navigation.php │ ├── Migration1536232940SalesChannel.php │ ├── Migration1536232950Salutation.php │ ├── Migration1536232960Customer.php │ ├── Migration1536232970CustomerAddress.php │ ├── Migration1536232980Cart.php │ ├── Migration1536232990Order.php │ ├── Migration1536233000OrderCustomer.php │ ├── Migration1536233010OrderAddress.php │ ├── Migration1536233020OrderDelivery.php │ ├── Migration1536233030OrderLineItem.php │ ├── Migration1536233040OrderDeliveryPosition.php │ ├── Migration1536233050OrderTransaction.php │ ├── Migration1536233060MediaFolderConfiguration.php │ ├── Migration1536233070MediaThumbnailSize.php │ ├── Migration1536233080MediaFolderConfigurationMediaThumbnailSize.php │ ├── Migration1536233090MediaThumbnail.php │ ├── Migration1536233100PropertyGroupOption.php │ ├── Migration1536233110ProductManufacturer.php │ ├── Migration1536233120Product.php │ ├── Migration1536233130ProductMedia.php │ ├── Migration1536233140ProductProperty.php │ ├── Migration1536233150ProductOption.php │ ├── Migration1536233160ProductConfigurator.php │ ├── Migration1536233170ProductCategoryTree.php │ ├── Migration1536233180ProductCategory.php │ ├── Migration1536233190ProductPriceRule.php │ ├── Migration1536233200RuleCondition.php │ ├── Migration1536233210SalesChannelDomain.php │ ├── Migration1536233220PluginTranslation.php │ ├── Migration1536233230ProductStream.php │ ├── Migration1536233240ProductStreamFilter.php │ ├── Migration1536233250MessageQueueStats.php │ ├── Migration1536233260StateMachineHistory.php │ ├── Migration1536233270SystemConfig.php │ ├── Migration1536233280CustomFieldSet.php │ ├── Migration1536233290CustomFieldSetRelation.php │ ├── Migration1536233300CustomField.php │ ├── Migration1536233310ScheduledTask.php │ ├── Migration1536233320DeadMessage.php │ ├── Migration1536233330MailTemplate.php │ ├── Migration1536233340NumberRange.php │ ├── Migration1536233350ProductVisibility.php │ ├── Migration1536233360Document.php │ ├── Migration1536233370EventAction.php │ ├── Migration1536233380UserRecovery.php │ ├── Migration1536233390Promotion.php │ ├── Migration1536233400MailTemplateMedia.php │ ├── Migration1536233410PromotionSalesChannel.php │ ├── Migration1536233420PromotionDiscount.php │ ├── Migration1536233430NewsletterRecipient.php │ ├── Migration1536233440PromotionPersonaCustomer.php │ ├── Migration1536233450PromotionPersonaRules.php │ ├── Migration1536233460NumberRangeTranslationAndConfiguration.php │ ├── Migration1536233470PromotionOrderRule.php │ ├── Migration1536233480SalesChannelApiContext.php │ ├── Migration1536233500PromotionDiscountRule.php │ ├── Migration1536233510DocumentConfiguration.php │ ├── Migration1536233520PromotionCartRule.php │ ├── Migration1536233530SalesChannelCategoryId.php │ ├── Migration1536233540ProductSearchKeyword.php │ ├── Migration1536233550Tag.php │ ├── Migration1536233560BasicData.php │ ├── Migration1552360944MediaFolderConfigurationNoAssoc.php │ ├── Migration1554199340AddImportExportProfile.php │ ├── Migration1554200141ImportExportFile.php │ ├── Migration1554203706AddImportExportLog.php │ ├── Migration1554900301AddReviewTable.php │ ├── Migration1556809270AddAverageRatingToProduct.php │ ├── Migration1558082916AddBreadcrumb.php │ ├── Migration1558105657CurrencyPrices.php │ ├── Migration1558443337PromotionSalesChannel.php │ ├── Migration1558505525Logging.php │ ├── Migration1558594334PromotionDiscountPrice.php │ ├── Migration1558938938ChangeGroupSortingColumn.php │ ├── Migration1559050088Promotion.php │ ├── Migration1559050903PromotionExclusion.php │ ├── Migration1559134989Promotion.php │ ├── Migration1559306391PromotionIndividualCode.php │ ├── Migration1561370284AddImportExportProductProfile.php │ ├── Migration1561377793AddAvailableAsShippingCountry.php │ ├── Migration1561442979ElasticsearchIndexTask.php │ ├── Migration1561452005Update.php │ ├── Migration1561712450NewSystemConfigsAndDefaultValues.php │ ├── Migration1562228335SetConfigDefaults.php │ ├── Migration1562240231UserPasswordRecovery.php │ ├── Migration1562306893MakeCustomerFirstLoginDateTime.php │ ├── Migration1562324772AddOrderDateToOrder.php │ ├── Migration1562579120ProductAvailableFields.php │ ├── Migration1562684474AddDeliveryTime.php │ ├── Migration1562841035AddProductChildCount.php │ ├── Migration1562933907ContactForm.php │ ├── Migration1563180880AddDefaultThumbnailSizes.php │ ├── Migration1563288227MarkAsNewConfig.php │ ├── Migration1563518181PromotionDiscount.php │ ├── Migration1563805586AddLanguageToOrder.php │ ├── Migration1563949275AddCompanyToOrderCustomer.php │ ├── Migration1564475053RemoveSaveDocumentsConfig.php │ ├── Migration1565007156RemoveAutoIncrement.php │ ├── Migration1565079228AddAclStructure.php │ ├── Migration1565270155PromotionSetGroup.php │ ├── Migration1565270366PromotionSetGroupRule.php │ ├── Migration1565346846Promotion.php │ ├── Migration1565705280ProductExport.php │ ├── Migration1566293076AddAutoIncrement.php │ ├── Migration1566460168UpdateTexts.php │ ├── Migration1566817701AddDisplayGroup.php │ ├── Migration1567431050ContactFormTemplate.php │ ├── Migration1568120239CmsSection.php │ ├── Migration1568120302CmsBlockUpdate.php │ ├── Migration1568645037AddEnqueueDbal.php │ ├── Migration1568901713PromotionDiscount.php │ ├── Migration1569403146ProductVisibilityUnique.php │ ├── Migration1570187167AddedAppConfig.php │ ├── Migration1570459127AddCmsSidebarLayout.php │ ├── Migration1570621541UpdateDefaultMailTemplates.php │ ├── Migration1570622696CustomerPasswordRecovery.php │ ├── Migration1570629862ClearCategoryBreadcrumbs.php │ ├── Migration1570684913ScheduleIndexer.php │ ├── Migration1571059598ChangeGreatBritainToUnitedKingdom.php │ ├── Migration1571210820AddPaymentMethodIdsToSalesChannel.php │ ├── Migration1571660203FixOrderDeliveryStateNames.php │ ├── Migration1571724915MultipleTrackingCodesInOrderDelivery.php │ ├── Migration1571981437AddSeoColumns.php │ ├── Migration1571990395UpdateDefaultStatusMailTemplates.php │ ├── Migration1572193798TaxRule.php │ ├── Migration1572264837AddCacheId.php │ ├── Migration1572273565AddUniqueConstraintToTechnicalNameOfDocumentType.php │ ├── Migration1572421282AddDoubleOptInRegistration.php │ ├── Migration1572425108AddDoubleOptInRegistrationMailTemplate.php │ ├── Migration1572957455AddAffiliateTrackingColumns.php │ ├── Migration1573049297AddReopenTransitionToDeliveryStates.php │ ├── Migration1573569685DoubleOptInGuestMailTemplate.php │ ├── Migration1573729158AddSitemapConfig.php │ ├── Migration1574063550AddCurrencyToProductExport.php │ ├── Migration1574082635AddOrderLineItemProductId.php │ ├── Migration1574258787ProductSearchLanguageKey.php │ ├── Migration1574258788TaxRuleLanguageKey.php │ ├── Migration1574258789ProductReviewLanguageKey.php │ ├── Migration1574520220AddSalesChannelMaintenance.php │ ├── Migration1574672450RemoteAddressIntoCustomerAndOrderCustomerTable.php │ ├── Migration1574695657ProductCrossSelling.php │ ├── Migration1574925962FixTaxConstraint.php │ ├── Migration1575010262AddCmsFormLayouts.php │ ├── Migration1575021466AddCurrencies.php │ ├── Migration1575034234FixOrderDeliveryAddressConstraint.php │ ├── Migration1575036586FixProductConfiguratorSettingsConstraint.php │ ├── Migration1575039284FixProductReviewConstraint.php │ ├── Migration1575197543MailTemplateCustomFields.php │ ├── Migration1575274700FixSalesChannelMailHeaderFooterConstraint.php │ ├── Migration1575293069OrderMailTemplates.php │ ├── Migration1575451283AddLimitToCrossSelling.php │ ├── Migration1575626180RemoveSearchKeywordInheritance.php │ ├── Migration1575883959ResetListingPrices.php │ ├── Migration1576488398AddOrderLineItemPosition.php │ ├── Migration1576590301FixSalesChannelDomainLanguageFk.php │ ├── Migration1578042218DefaultPages.php │ ├── Migration1578044453AddedNavigationDepth.php │ ├── Migration1578470886FixPurchaseSteps.php │ ├── Migration1578475268FixSloveneLocale.php │ ├── Migration1578485775UseStableUpdateChannel.php │ ├── Migration1578491480Hreflang.php │ ├── Migration1578590702AddedPropertyGroupPosition.php │ ├── Migration1578648299ReindexSeoUrls.php │ ├── Migration1578650334AddGoogleAnalyticsTable.php │ ├── Migration1580202210DefaultRule.php │ ├── Migration1580218617RefactorShippingMethodPrice.php │ ├── Migration1580743279UpdateDeliveryMailTemplates.php │ ├── Migration1580746806AddPaymentStates.php │ ├── Migration1580808849AddGermanContactFormTranslation.php │ ├── Migration1580819350AddTrackingUrl.php │ ├── Migration1580827023ProductCrossSellingAssignedProductsDefinition.php │ ├── Migration1582011195FixCountryStateGermanTranslation.php │ ├── Migration1583142266FixDefaultOrderConfirmationMailTemplateVATDisplay.php │ ├── Migration1583416186KeywordUniques.php │ ├── Migration1583756864FixDeliveryForeignKey.php │ ├── Migration1583844433AddRefreshTokenTable.php │ ├── Migration1584002637NewImportExport.php │ ├── Migration1584953715UpdateMailTemplatesAfterOrderLink.php │ ├── Migration1585056571AddLanguageToMailTemplateMedia.php │ ├── Migration1585126355AddOrderCommentField.php │ ├── Migration1585490020ActivateHoneypotCaptcha.php │ ├── Migration1585744384ChangeCategoryProfile.php │ ├── Migration1585816139FixMediaMapping.php │ ├── Migration1586158920AddImportExportProfileConfig.php │ ├── Migration1586173614AddAdditionalImportExportProfiles.php │ ├── Migration1586260286AddProductMainVariant.php │ ├── Migration1586334003AddParentIdToProductProfile.php │ ├── Migration1587039363AddImportExportLabelField.php │ ├── Migration1587109484AddAfterOrderPaymentFlag.php │ ├── Migration1587111506AddPausedScheduleToProductExport.php │ ├── Migration1587461582AddOpenToPaidTransition.php │ ├── Migration1588143272UpdateOrderStateChangeMailTemplates.php │ ├── Migration1588144801TriggerIndexer.php │ ├── Migration1588153272UpdateGermanMailTemplates.php │ ├── Migration1589178550AddTaxCalculationType.php │ ├── Migration1589357321AddCountries.php │ ├── Migration1589359936AddTaxCountryRules.php │ ├── Migration1589379060AddVariantCharacteristicsToEmailTemplates.php │ ├── Migration1589447332AddFilterableToPropertyGroup.php │ ├── Migration1589458026SetDefaultReviewConfig.php │ ├── Migration1590408550AclResources.php │ ├── Migration1590409548AddPackUnitPluralMigration.php │ ├── Migration1590566018RenameDefaultMediaFolders.php │ ├── Migration1590566405InvalidateSessionOnLogOut.php │ ├── Migration1590579986DropMailHeaderFooterConstraint.php │ ├── Migration1590758953ProductFeatureSet.php │ ├── Migration1591052278AddPropertyAndOptionIdsToProductProfile.php │ ├── Migration1591167126RoleDescription.php │ ├── Migration1591253089OrderDeeplinkForMailTemplates.php │ ├── Migration1591259559AddMissingCurrency.php │ ├── Migration1591272594AddGoogleAnalyticsAnonymizeIpColumn.php │ ├── Migration1591361320ChargebackAndAuthorized.php │ ├── Migration1591683158PromotionDiscount.php │ ├── Migration1591817370AddCustomerTagsManyToManyIdField.php │ ├── Migration1592466717AddKeywordIndex.php │ ├── Migration1592837424AddProductTypeToCategory.php │ ├── Migration1592978289ProductCustomFieldSets.php │ ├── Migration1593698606AddNetAndGrossPurchasePrices.php │ ├── Migration1594650256AddMailTemplateSalesChannelPK.php │ ├── Migration1594885630AddUserRecoveryPK.php │ ├── Migration1594886106AddDocumentBaseConfigSalesChannelPK.php │ ├── Migration1594886773LogEntryPK.php │ ├── Migration1594886895CustomerRecoveryPK.php │ ├── Migration1594887027AppConfigPK.php │ ├── Migration1595160327AddPositionToCustomFieldSet.php │ ├── Migration1595321666v3.php │ ├── Migration1595422169AddProductSorting.php │ ├── Migration1595480600RemoveGoogleShoppingSalesChannel.php │ ├── Migration1595489705PreventOldListingPrices.php │ ├── Migration1595492052SeoUrl.php │ ├── Migration1595492053SeoUrlTemplate.php │ ├── Migration1595499689RemoveGoogleShoppingRelatedTables.php │ ├── Migration1595553089FixOrderConfirmationMailForAllPayloads.php │ ├── Migration1595578253CustomFieldSetSelection.php │ ├── Migration1595919251MainCategory.php │ ├── Migration1596091744UseHomeAsRootCategoryName.php │ ├── Migration1596441551CustomerGroupRegistration.php │ ├── Migration1597391970App.php │ ├── Migration1597394241AddAppIdToCustomFieldSet.php │ ├── Migration1597657689ActionButton.php │ ├── Migration1597762808Webhook.php │ ├── Migration1597830237Template.php │ ├── Migration1597930227CustomerGroupRegistrationSalesChannel.php │ ├── Migration1598280548NullableSeoUrlTemplate.php │ ├── Migration1598520424UpdateProductReviewConstraint.php │ ├── Migration1598885384RedirectToLatestSeoUrl.php │ ├── Migration1599112309AddListingFilterSystemConfigOption.php │ ├── Migration1599134496FixImportExportProfilesForGermanLanguage.php │ ├── Migration1599463278AddCustomerIdIntoSalesChannelContext.php │ ├── Migration1599570560FixSlovakiaDisplayedAsSlovenia.php │ ├── Migration1599720163AddEventActiveColumn.php │ ├── Migration1599806584AddEventActionRule.php │ ├── Migration1599806595AddEventActionSalesChannel.php │ ├── Migration1599822061MigrateOrderMails.php │ ├── Migration1600072779AddSearchKeywordsToProductTranslation.php │ ├── Migration1600156989AddProductSalesField.php │ ├── Migration1600253602AddOrderRuleIds.php │ ├── Migration1600330846ChangeActiveColumn.php │ ├── Migration1600338271AddTopsellerSorting.php │ ├── Migration1600349343AddDeliveryStateTransitions.php │ ├── Migration1600676671OrderLineItemCoverMedia.php │ ├── Migration1600769357AddTransition.php │ ├── Migration1600778848AddOrderMails.php │ ├── Migration1601451838ChangeSearchKeywordColumnToProductTranslation.php │ ├── Migration1601539530IntergrationRoleEntity.php │ ├── Migration1601543829AddBoundSalesChannelIdColumnIntoCustomer.php │ ├── Migration1601891339EventActionTitle.php │ ├── Migration1602062376AddUniqueConstraintForEmailAndBoundSalesChannelIdIntoCustomerTable.php │ ├── Migration1602146868AddTaxTypeToShippingMethod.php │ ├── Migration1602153572AddSalesChannelIdColumnIntoSalesChannelApiContextTable.php │ ├── Migration1602494493AddDefaultSettingConfigValueForWishlist.php │ ├── Migration1602494495SetUsersAsAdmins.php │ ├── Migration1602745374AddVatIdsColumnAndTransferVatIdFromCustomerAddressIntoCustomer.php │ ├── Migration1602822727AddVatHandlingIntoCountryTable.php │ ├── Migration1603179023AddDefaultSettingConfigValueForProductListingPerPage.php │ ├── Migration1603293043FixCurrencyTypo.php │ ├── Migration1603970276RemoveCustomerEmailUniqueConstraint.php │ ├── Migration1604056363CustomerWishlist.php │ ├── Migration1604056421CustomerWishlistProducts.php │ ├── Migration1604475913AddCMSPageIdToProductTable.php │ ├── Migration1604499476AddDefaultSettingConfigValueForContactForm.php │ ├── Migration1604568928AddConfigurableToApp.php │ ├── Migration1604669773UpdateMailTemplate.php │ ├── Migration1605103533AddCookiesToAppEntity.php │ ├── Migration1605530777PrivacyPolicyExtensionsToAppTranslation.php │ ├── Migration1605609309AddCreatedByIdAndUpdatedByIdToOrder.php │ ├── Migration1605609477RemoveDeleteCascadeConstraintInDocumentBaseConfigTable.php │ ├── Migration1605861407RuleAssociationsToRestrict.php │ ├── Migration1606310257AddCanonicalUrlProp.php │ ├── Migration1607415095PromotionRedemptionsNullable.php │ ├── Migration1607500561UpdateSignUpMailTemplateTranslation.php │ ├── Migration1607514878AddOrderDeliveryRetourTransition.php │ ├── Migration1607581275AddProductSearchConfiguration.php │ ├── Migration1607581276AddProductSearchConfigurationDefaults.php │ ├── Migration1608624028RemoveDefaultSalesChannelAssignmentForCustomerRecoveryEvent.php │ ├── Migration1609125144AddLastUpdatedPasswordAtColumnIntoUser.php │ ├── Migration1609857999FixStateMachineHistoryUserConstraint.php │ ├── Migration1610531188AddUserConfig.php │ ├── Migration1610965670RemoveDeprecatedColumns.php │ ├── Migration1610974673DropProductListingPriceTrigger.php │ ├── Migration1611155140AddUpdatedAtToSalesChannelApiContext.php │ └── Migration1614240671AddVatIdsToOrderCustomer.php ├── V6_4 │ ├── Migration1594104496CashRounding.php │ ├── Migration1604585230UpdateOrderMailsForCashRounding.php │ ├── Migration1609140710AddCmsPdpLayout.php │ ├── Migration1610337444AddSlotConfigToProductTranslationTable.php │ ├── Migration1610439375AddEUStatesAsDefaultForIntraCommunityDeliveryLabel.php │ ├── Migration1610448012LandingPage.php │ ├── Migration1610523204AddInheritanceForProductCmsPage.php │ ├── Migration1610523548FixCustomerColumns.php │ ├── Migration1610616655AddVisibleOnDetailToPropertyGroup.php │ ├── Migration1610621999UpdateDateOfDefaultMailTemplates.php │ ├── Migration1610625925RequireDataProtectionCheckbox.php │ ├── Migration1610634383AddPositionToTaxEntity.php │ ├── Migration1610904608TemporarilyDisableWishlistAsDefault.php │ ├── Migration1611732852UpdateCmsPdpLayout.php │ ├── Migration1611817467ChangeDefaultProductSettingConfigField.php │ ├── Migration1612184092AddUrlLandingPage.php │ ├── Migration1612442685AddDeleteCascadeToMediaTagTable.php │ ├── Migration1612442686AddDeleteCascadeToCustomerTagTable.php │ ├── Migration1612442786ChangeVersionOfDocuments.php │ ├── Migration1612851765MakeCmsVersionable.php │ ├── Migration1612865237AddCheapestPrice.php │ ├── Migration1612970642AddHomeSettingsToSalesChannel.php │ ├── Migration1612980753AddLinkSettingsToCategory.php │ ├── Migration1613665555AddHomeCmsVersionToSalesChannel.php │ ├── Migration1614249488ChangeProductSortingsToCheapestPrice.php │ ├── Migration1614691876AddMainModuleToApp.php │ ├── Migration1614765170UpdateAppModulesWithNavigationInformation.php │ ├── Migration1614765785ChangeDefaultValueOfAndLogicForSearchRankingConfig.php │ ├── Migration1615359964AddTaxFreeFromAmountForCurrencyAndCountry.php │ ├── Migration1615366708AddProductStreamMapping.php │ ├── Migration1615452749ChangeDefaultMailSendAddress.php │ ├── Migration1615802866ElasticsearchStreamFieldMigration.php │ ├── Migration1615819992AddVatIdRequiredToCountry.php │ ├── Migration1616076922AppPaymentMethod.php │ ├── Migration1616496610CheapestPriceCustomProductGroups.php │ ├── Migration1616555956AddPurchasePricesPropertyToProductProfile.php │ ├── Migration1617000878AddTemplateDataToMailTemplateType.php │ ├── Migration1617356092UpdateCmsPdpLayoutSection.php │ ├── Migration1617784658AddCartIndex.php │ ├── Migration1617864895UpdateMailTemplateForNestedLineItems.php │ ├── Migration1617868381AddVersionIndex.php │ ├── Migration1617877887AddCustomFieldToPromotionTranslation.php │ ├── Migration1617896006MakeNameNullable.php │ ├── Migration1617935350ActiveCaptchasV2.php │ ├── Migration1617953690AddCustomFieldToProductReview.php │ ├── Migration1617960456AddCustomFieldToEventAction.php │ ├── Migration1617974402AddCustomFieldsToApp.php │ ├── Migration1618218491AddCustomFieldToSalutationTranslation.php │ ├── Migration1618389817RemoveTaxFreeFromColumnInCountryTable.php │ ├── Migration1618476427ElasticsearchStreamFieldManufacturerRevert.php │ ├── Migration1618569201AddCustomFieldToDocumentBaseConfig.php │ ├── Migration1618900427FixTotalRounding.php │ ├── Migration1618989442AddProductConfigurationSettingsUniqKey.php │ ├── Migration1619070236AppCmsBlock.php │ ├── Migration1619428555AddDefaultMailFooter.php │ ├── Migration1619604605FixListingPricesUsage.php │ ├── Migration1619703075ScheduleIndexers.php │ ├── Migration1620146632AddActiveAndErrorCountIntoWebhook.php │ ├── Migration1620147234CreateWebhookEventLogTable.php │ ├── Migration1620201616AddUpdatedAtToCart.php │ ├── Migration1620215586FixManufacturerForeignKey.php │ ├── Migration1620374229UpdateCustomFieldNameInProductStreamTable.php │ ├── Migration1620376945AddCompanyTaxAndCustomerTaxToCountry.php │ ├── Migration1620632460AddedCategoryIds.php │ ├── Migration1620634856UpdateRolePrivileges.php │ ├── Migration1620733405DistinguishablePaymentMethodName.php │ ├── Migration1620733405UpdateRolePrivilegesForDistinguishablePaymentName.php │ ├── Migration1620820321AddDefaultDomainForHeadlessSaleschannel.php │ ├── Migration1621845357AddFlow.php │ ├── Migration1621845370AddFlowSequence.php │ ├── Migration1622010069AddCartRules.php │ ├── Migration1622104463AddPaymentTokenTable.php │ ├── Migration1622782058AddDeleteAtIntoIntegrationAndAclRole.php │ ├── Migration1623305620ChangeSalutationIdNullable.php │ ├── Migration1623391399ChangeConstraintAclRoleAndIntegrationInApp.php │ ├── Migration1623828962ChangeColumnAppNameAndAppVersionInWebhookEventLog.php │ ├── Migration1624262862UpdateDefaultValueOnCaptchaV2.php │ ├── Migration1624884801MakeMailLinksConfigurable.php │ ├── Migration1624967118updateMailTemplatesWithOptionalSalutation.php │ ├── Migration1625304609UpdateRolePrivileges.php │ ├── Migration1625465756DefaultSalutation.php │ ├── Migration1625505190AddOrderTotalAmountToCustomerTable.php │ ├── Migration1625554302UpdateMailTemplateForContactForm.php │ ├── Migration1625569667NewsletterDoiForRegistered.php │ ├── Migration1625583596CreateActionEventFlowMigrateTable.php │ ├── Migration1625583619MoveDataFromEventActionToFlow.php │ ├── Migration1625816310AddDefaultToCartRuleIds.php │ ├── Migration1625819412ChangeOrderCreatedByIdConstraint.php │ ├── Migration1625831469AddImportExportCrossSellingProfile.php │ ├── Migration1626241110PromotionPreventCombination.php │ ├── Migration1626442868AddGermanSalesChannelDescription.php │ ├── Migration1626696809AddImportExportCustomerProfile.php │ ├── Migration1626785125AddImportExportType.php │ ├── Migration1627292049AddResultColumnForImportExportLog.php │ ├── Migration1627540693MakeAccessTokenNullable.php │ ├── Migration1627541488AddForeignKeyForSalesChannelIdIntoSystemConfigTable.php │ ├── Migration1627562945AddImportExportPromotionCodesProfile.php │ ├── Migration1627650101AddUploadPluginRolePrivilege.php │ ├── Migration1627929168UpdatePriceFieldInProductTable.php │ ├── Migration1627983652AddOrderExportProfile.php │ ├── Migration1628519513AddUnconfirmedTransactionState.php │ ├── Migration1628749113Migration1628749113AddDefaultSalesChannelLanguageIdsInLanguagesLists.php │ ├── Migration1629204538AddTimeZoneField.php │ ├── Migration1629700169AddEnqueueIndex.php │ ├── Migration1629877210UpdateWebhookNameAndSerializedWebhookMessageOfWebhookEventLog.php │ ├── Migration1630074081AddDeleteCascadeToImportExportLogTable.php │ ├── Migration1630485317UpdateContactFormMailTemplates.php │ ├── Migration1631625055AddPositionToImportExportMappings.php │ ├── Migration1631703921MigrateLineItemsInCartRule.php │ ├── Migration1631790054AddedStreamIds.php │ ├── Migration1631863869AddLogEntryCreateAndStateMachineTransitionReadPrivilege.php │ ├── Migration1632111590AddOrderTagPrivilegeForOrderRoles.php │ ├── Migration1632215760MoveDataFromEventActionToFlow.php │ ├── Migration1632721037OrderDocumentMailTemplate.php │ ├── Migration1633347511ChangeProductExportInterval.php │ ├── Migration1633358879AddUpdateByColumnToImportExportProfile.php │ ├── Migration1633422057AddSalutationPrivilegeForOrderViewerRole.php │ ├── Migration1634735841AddedNewsletterSalesChannelIds.php │ ├── Migration1635147952ShowShippingCostsInCartAnMailTemplates.php │ ├── Migration1635230747UpdateProductExportTemplate.php │ ├── Migration1635237551Script.php │ ├── Migration1635388654CreateIncrementTable.php │ ├── Migration1635936029MigrateMessageQueueStatsToIncrement.php │ ├── Migration1636014089UpdateOrderConfirmationMailTemplates.php │ ├── Migration1636018970UnusedGuestCustomerLifetime.php │ ├── Migration1636362839FlowBuilderGenerateMultipleDoc.php │ ├── Migration1636449347AddImportExportAdvancedPricesProfile.php │ ├── Migration1636964297AddDefaultTaxRate.php │ ├── Migration1636971615AddImportExportPromotionDiscountProfile.php │ ├── Migration1638195971AddBaseAppUrl.php │ ├── Migration1638365464CheapestPricePercentageDynamicProductGroups.php │ ├── Migration1638514913RemovedUnusedVarsInMailTemplates.php │ ├── Migration1638993987AddAppFlowActionTable.php │ ├── Migration1639122665AddCustomEntities.php │ ├── Migration1639139581AddPriorityToPromotions.php │ ├── Migration1639992771MoveDataFromEventActionToFlow.php │ ├── Migration1641289204FixProductComparisonGoogleShippingPriceDisplay.php │ ├── Migration1642517958AddCascadeDeleteToTagRelations.php │ ├── Migration1642732351AddAppFlowActionId.php │ ├── Migration1642757286FixProductMediaForeignKey.php │ ├── Migration1643366069AddSeoUrlUpdaterIndex.php │ ├── Migration1643386819AddPreparedPaymentsToAppPaymentMethod.php │ ├── Migration1643724178ChangePromotionCodesProfile.php │ ├── Migration1643878976AddCaptureRefundStateMachines.php │ ├── Migration1643892702AddCaptureRefundTables.php │ ├── Migration1645019769UpdateCmsPageTranslation.php │ ├── Migration1645453538AddRuleTag.php │ ├── Migration1646125417AddPathFieldToMediaFolder.php │ ├── Migration1646397836UpdateRolePrivilegesOfOrderCreator.php │ ├── Migration1646817331AddCmsClassColumnCmsPage.php │ ├── Migration1647260673AddIndexForEmail.php │ ├── Migration1647443222AllowLongLogEntryMessages.php │ ├── Migration1647511158AddRefundUrlToAppPaymentMethod.php │ ├── Migration1648031611AddOrderLineItemPromotionId.php │ ├── Migration1648031636AddPositionFieldToShippingMethod.php │ ├── Migration1648543185AddAppScriptConditionTables.php │ ├── Migration1648709176CartCompression.php │ ├── Migration1648803451FixInvalidMigrationOfBusinessEventToFlow.php │ ├── Migration1649040981CorrectStateMachineStateTranslationName.php │ ├── Migration1649315608AllowDisable.php │ ├── Migration1649858046UpdateConfigurableFormatAndValidationForAddressCountry.php │ ├── Migration1650249241UpdateTypeOfDepartmentAddress.php │ ├── Migration1650444800AddDefaultSettingConfigValueForUseDefaultCookiesConsent.php │ ├── Migration1650548599AppAllowedHosts.php │ ├── Migration1650620993SetDefaultCmsPagesAndSetCategoryCmsPageToNull.php │ ├── Migration1650872291CartAutoIncrement.php │ ├── Migration1650981517RemoveShopwareId.php │ ├── Migration1651118773UpdateZipCodeOfTableCustomerAddressToNullable.php │ ├── Migration1652166447AppLoadPriority.php │ ├── Migration1652345915UpdateSubjectMailTemplate.php │ ├── Migration1652441129ReplaceIconNames.php │ ├── Migration1652864153ReindexMediaFolders.php │ ├── Migration1653376989ResetDefaultAlwaysValidConditionValue.php │ ├── Migration1653385302AddHeadlineColumnToAppFlowActionTable.php │ ├── Migration1654839361ProductDownload.php │ ├── Migration1654839361ProductDownloadDelivery.php │ ├── Migration1654839361ProductDownloadMedia.php │ ├── Migration1655730949AddIsRunningColumnToProductExport.php │ ├── Migration1656397126AddMainVariantConfiguration.php │ ├── Migration1656928097AddNewsletterRecipientEmailIndex.php │ ├── Migration1657011337AddFillableInStorefront.php │ ├── Migration1657027979AddOrderRefundPrivilegeForOrderEditor.php │ ├── Migration1657173907DownloadMailTemplate.php │ ├── Migration1658786605AddAddressFormatIntoCountryTranslation.php │ ├── Migration1659256999CreateFlowTemplateTable.php │ ├── Migration1659257296GenerateFlowTemplateDataFromEventAction.php │ ├── Migration1659257396DownloadFlow.php │ ├── Migration1659257496OrderLineItemDownload.php │ ├── Migration1660814397UpdateOrderCancelledMailTemplate.php │ ├── Migration1661759290AddDateAndCurrencyIndexToOrderTable.php │ ├── Migration1661771388FixDefaultCountryStatesTranslationAreMissing.php │ ├── Migration1663238480FixMailTemplateFallbackChainUsage.php │ ├── Migration1664512574AddConfigShowHideSectionBlock.php │ ├── Migration1664541794AddIndexForLogEntryTask.php │ ├── Migration1664894872AddDelayableColumnToAppFlowActionTable.php │ ├── Migration1665064823AddRuleAreas.php │ ├── Migration1665267882RenameCountryVat.php │ ├── Migration1667731399AdminElasticsearchIndexTask.php │ ├── Migration1667806582AddCreatedByIdAndUpdatedByIdToCustomer.php │ ├── Migration1667983492UpdateQueuedTasksToSkipped.php │ ├── Migration1668677456AddAppReadPrivilegeForIntegrationRoles.php │ ├── Migration1669316067ChangeColumnTitleInDownloadsDeliveryMailTemplate.php │ ├── Migration1672164687FixTypoInUserRecoveryPasswordResetMail.php │ ├── Migration1672743034AddDefaultAdminUserPasswordMinLength.php │ ├── Migration1673001912AddUserPermissionRolePrivilege.php │ ├── Migration1673966228UpdateVersionAndOrderLineItemPrivilegeForOrderRoles.php │ └── Migration1675218708UpdateDeliverOrderedProductDownloadsFlowTemplate.php ├── V6_5 │ ├── Migration1655697288AppFlowEvent.php │ ├── Migration1659425718AddFlagsToCustomEntities.php │ ├── Migration1661505878ChangeDefaultValueOfShippingMethodActiveField.php │ ├── Migration1662533751AddCustomEntityTypeIdToCategory.php │ ├── Migration1663402842AddPathToMedia.php │ ├── Migration1666689977AddPluginIdToCustomEntity.php │ ├── Migration1667208731AddDefaultDeliveryTimeConfigSetting.php │ ├── Migration1668435503ChangeStornoDocumentTranslationName.php │ ├── Migration1669124190AddDoctrineMessengerTable.php │ ├── Migration1669125399DropEnqueueTable.php │ ├── Migration1669291632MigrateLineItemsInCartRule.php │ ├── Migration1669298267AddIconCacheDefaultValue.php │ ├── Migration1670090989AddIndexOrderOrderNumber.php │ ├── Migration1670854818RemoveEventActionTable.php │ ├── Migration1671003201RemoveDeprecatedColumns.php │ ├── Migration1671723392AddWebhookLifetimeConfig.php │ ├── Migration1672931011ReviewFormMailTemplate.php │ ├── Migration1672934282ReviewFormSendFlow.php │ ├── Migration1673263104RemoveCartNameColumn.php │ ├── Migration1673420896RemoveUndefinedSalutation.php │ ├── Migration1673426317ImproveStateMachineHistoryQueryPerformance.php │ ├── Migration1673860323ChangeDefaultProductComparisonIcon.php │ ├── Migration1673946817FixMediaFolderAssociationFields.php │ ├── Migration1674200008UpdateOrderViewerRolePrivileges.php │ ├── Migration1674204177TaxProvider.php │ ├── Migration1674704527UpdateVATPatternForCyprusCountry.php │ ├── Migration1675082889DropUnusedTables.php │ ├── Migration1675247112ChangeCountryNamingConvention.php │ ├── Migration1675323588ChangeEnglishLocaleTranslationOfUsLocale.php │ ├── Migration1676272000AddAccountTypeToCustomer.php │ ├── Migration1676272001AddAccountTypeToCustomerProfileImportExport.php │ ├── Migration1676274910ChangeColumnTaxRateAllowThreeDecimal.php │ ├── Migration1677470540AddProvincesForCanada.php │ ├── Migration1678197291ConvertVariantListingConfig.php │ ├── Migration1678801126AddScheduledTaskDefaultRunIntervalColumn.php │ ├── Migration1678969082DropVariantListingFields.php │ ├── Migration1679584289AddCustomerReviewCount.php │ ├── Migration1680789830AddCustomFieldsAwareToCustomEntities.php │ ├── Migration1681382023AddCustomFieldAllowCartExpose.php │ ├── Migration1686817968AddRecurringAppPaymentMethodUrl.php │ ├── Migration1687462843ProductManufacturerMediaThumbnails.php │ ├── Migration1687463180ProductMediaThumbnails.php │ ├── Migration1688106315AddMissingTransactionMailTemplates.php │ ├── Migration1688556247FixCoverMediaVersionID.php │ ├── Migration1688717599UpdateCreatedByIdAndUpdatedByIdInOrderAndCustomer.php │ ├── Migration1688927492AddTaxActiveFromField.php │ ├── Migration1689257577AddMissingTransactionMailFlow.php │ ├── Migration1689776940AddCartSourceField.php │ ├── Migration1689856589AddVersioningForOrderTransactionCaptures.php │ ├── Migration1690456899AddCustomFieldPrivilegeForSaleUnitViewer.php │ ├── Migration1690874168FixPaymentStatusUnconfirmedMail.php │ ├── Migration1691057865UpdateSalutationDefaultForCustomer.php │ ├── Migration1692254551FixMailTranslation.php │ ├── Migration1692277552FixCustomerReviewCount.php │ ├── Migration1692279790AppShippingMethod.php │ ├── Migration1692608216IncreaseAppConfigKeyColumnSize.php │ ├── Migration1693300031UsageDataEntityDeletions.php │ ├── Migration1694426018AddEntityIndexToStateMachineHistory.php │ ├── Migration1695732009AddConfigForMedia.php │ ├── Migration1695776504UpdateZipCodeOfTableOrderAddressToNullable.php │ ├── Migration1695778183UpdateStreetOfTableCustomerAddressToNotNull.php │ ├── Migration1696300511AddDocumentNumberToDocumentEntity.php │ ├── Migration1696321447AddOnlyLiveVersionToWebhookAndWebhookEventLogTables.php │ ├── Migration1697112043AddPaymentAndShippingTechnicalName.php │ ├── Migration1697462064FixMediaPath.php │ ├── Migration1697532722FixADInMediaPath.php │ ├── Migration1697792159FixOrderDeliveryAddressConstraint.php │ ├── Migration1698682149MakeTranslatableFieldsNullable.php │ ├── Migration1698919811AddDeletedAtToCustomEntity.php │ ├── Migration1700558603RemoveDataIntegration.php │ ├── Migration1701337056CorrectColumnLength.php │ ├── Migration1704267596UpdateBelgianVatIdPattern.php │ ├── Migration1704703562ScheduleMediaPathIndexer.php │ ├── Migration1706272837UpdateProductExportForeignKey.php │ └── Migration1708685281ChangeAppPathColumnToLongerVarchar.php ├── V6_6 │ ├── Migration1663402950SetDoubleOptinCustomerActive.php │ ├── Migration1673249981MigrateIsNewCustomerRule.php │ ├── Migration1673964565MigrateToReferencedColumns.php │ ├── Migration1676367607RemoveIntegrationWriteAccessColumn.php │ ├── Migration1679581138RemoveAssociationFields.php │ ├── Migration1691662140MigrateAvailableStock.php │ ├── Migration1696262484AddDefaultSendMailOptions.php │ ├── Migration1696515133AddCheckoutGatewayUrl.php │ ├── Migration1697788982ChangeColumnAvailabilityRuleIdFromShippingMethodToNullable.php │ ├── Migration1700746995ReplaceSortingOptionKeysWithSortingOptionIds.php │ ├── Migration1701677136RemovePluginChangelogField.php │ ├── Migration1701688920FixDownloadLinkMail.php │ ├── Migration1702479623RemoveEsMultilingualFlag.php │ ├── Migration1702982372FixProductCrossSellingSortByPrice.php │ ├── Migration1703850843FixSearchConfig.php │ ├── Migration1707064042CartRemoveFK.php │ ├── Migration1707807389ChangeAvailableDefault.php │ ├── Migration1710493619ScheduleMediaPathIndexer.php │ ├── Migration1711418838ReplaceSortingOptionKeysWithSortingOptionIdsInCmsSlots.php │ ├── Migration1711461572ReplaceSortingOptionKeysWithSortingOptionIds.php │ ├── Migration1711461579FixDefaultMailFooter.php │ ├── Migration1711461580SetSystemDefaultForDefaultMailFooter.php │ ├── Migration1712309989DropLanguageLocaleUnique.php │ ├── Migration1713345551AddAppManagedColumn.php │ ├── Migration1714659357CanonicalProductVersion.php │ ├── Migration1715081559AdjustSentMailActionOnReviewSent.php │ ├── Migration1716196653AddTechnicalNameToImportExportProfile.php │ ├── Migration1716285861AddAppSourceType.php │ ├── Migration1716968180AddAppSourceConfig.php │ ├── Migration1717601705AddIntraCommunityLabelDocumentConfigToStorno.php │ ├── Migration1718615305AddEuToCountryTable.php │ ├── Migration1718635021AddIntraCommunityLabelDocumentConfigToCreditNote.php │ ├── Migration1718658881AddValidationDataToOrderTransaction.php │ ├── Migration1720094362AddStateForeignKeyToOrderDelivery.php │ ├── Migration1720094363AddStateForeignKeyToOrder.php │ ├── Migration1721202771UpdateDefaultSearchConfig.php │ ├── Migration1721811224AddInAppPurchaseGatewayUrl.php │ ├── Migration1723193659UpdateVatPatternForCountry.php │ ├── Migration1724468738UpdatePostalCodeRequiredForTableCountryWithDefaultTrue.php │ ├── Migration1726049442UpdateVariantListingConfigInProductTable.php │ ├── Migration1726557614FixProductComparisonIdealoWithHtmlFormat.php │ ├── Migration1727768690UpdateDefaultEnglishPlainMailFooter.php │ ├── Migration1729843379FixBelgianVatIdPattern.php │ ├── Migration1729843381AddDefaultSettingConfigValueForReviewListingPerPage.php │ ├── Migration1730059142AddNewSitemapConfigForExcludingHiddenProducts.php │ ├── Migration1730191192UpdateDefaultSalutation.php │ ├── Migration1730790665ElectronicInvoice.php │ ├── Migration1730911642MoveNamespaceOfShowZipcodeInFrontOfCityConfiguration.php │ ├── Migration1731576063UpdateProductComparisonTemplate.php │ ├── Migration1732608755MigrateNavigationSettingsForProductSlider.php │ ├── Migration1733323215AddHashToAppTemplate.php │ ├── Migration1733745893createTagStorageTable.php │ ├── Migration1735112885AddDefaultSearchResultSorting.php │ ├── Migration1735807464AddCustomFieldStoreApiAware.php │ ├── Migration1736154963FixCyprusVatIdPattern.php │ ├── Migration1736824370MigrationMailTemplateForDocument.php │ ├── Migration1736831335AddGenerateDocumentTypesForDocumentConfig.php │ ├── Migration1736866790AddDocumentA11yMediaFileIdForDocumentTable.php │ ├── Migration1737105721MigrateOrderStateChangeDocumentToA11Y.php │ ├── Migration1738661307AddMediaIndices.php │ ├── Migration1739198249FixOrderDeliveryStateMachineName.php │ ├── Migration1739355802FixVatHandling.php │ └── Migration1747746986OrderTaxCalculationType.php ├── V6_7 │ ├── Migration1697112043TemporaryPaymentAndShippingTechnicalNames.php │ ├── Migration1697112044PaymentAndShippingTechnicalNameRequired.php │ ├── Migration1717572627RemoveImportExportProfileName.php │ ├── Migration1717573310ImportExportTechnicalNameRequired.php │ ├── Migration1720603803RemoveDefaultPaymentMethodFlows.php │ ├── Migration1720603803RemoveDefaultPaymentMethodRule.php │ ├── Migration1720610755RemoveDefaultPaymentMethodFromCustomer.php │ ├── Migration1726135997CreateMessengerStatsTable.php │ ├── Migration1728040169AddPrimaryOrderDelivery.php │ ├── Migration1728040170AddPrimaryOrderTransaction.php │ ├── Migration1728119898AddRobotsTxt.php │ ├── Migration1733136208AddH1ToCmsCategoryListing.php │ ├── Migration1737430168RemoveFileTypeOfDocumentTable.php │ ├── Migration1739197440ChangeCmsBlockDefaultMargin.php │ ├── Migration1740321707SetAutoplayTimeoutAndSpeedSettingsForProductSlider.php │ ├── Migration1740563553AddAppRequestedPrivileges.php │ ├── Migration1741163941AddOrderInternalComment.php │ ├── Migration1742199549MeasurementSystemTable.php │ ├── Migration1742199550MeasurementDisplayUnitTable.php │ ├── Migration1742199551SalesChannelDomainMeasurementUnits.php │ ├── Migration1742199552SalesChannelMeasurementUnits.php │ ├── Migration1742302302RenamePaidTransitionActions.php │ ├── Migration1742484083TransitionToAddressInputFieldArrangement.php │ ├── Migration1742563555AddNotificationTable.php │ ├── Migration1742568836CreateThemeRuntimeConfigTable.php │ ├── Migration1742897274RegistrationSalutationToggleConfig.php │ ├── Migration1743064966CartConfigSubtotalTaxColumn.php │ ├── Migration1743151679AddContextGatewayUrl.php │ ├── Migration1745319883AddDefaultConfigForMeasurementSystem.php │ ├── Migration1746176773AddIntegrationIdStateHistory.php │ ├── Migration1748326970UpdateMailTemplatesForAccessibility.php │ ├── Migration1749644517AddListingVariantNameSystemConfigOption.php │ ├── Migration1751623078AddMeasurementSystemPrivileges.php │ ├── Migration1752219159AddLanguageActive.php │ ├── Migration1752229050ChangeDESnippetOfMeterUnit.php │ ├── Migration1752499887UpdateAppRequestedPrivileges.php │ ├── Migration1752750086AddIndexToOrderLineItemCreateAndUpdate.php │ ├── Migration1752750171AddIndexToOrderAddressCreateAndUpdate.php │ ├── Migration1752750234AddIndexToOrderTransactionCreateAndUpdate.php │ ├── Migration1753191228AddMediaThumbnailSizeIdToMediaThumbnail.php │ ├── Migration1753799632FixStateMachineHistoryIntegrationConstraint.php │ ├── Migration1754295570DocumentActivateReturnAddress.php │ ├── Migration1754398573ChangeAllLineItemsRuleValueType.php │ ├── Migration1754892246FixWordingMistakeInEmailTemplates.php │ ├── Migration1756068709FixCustomerAddressFirstNameLength.php │ ├── Migration1756068710FixCustomerAddressLastNameLength.php │ ├── Migration1756068711FixOrderAddressFirstNameLength.php │ ├── Migration1756068712FixOrderAddressLastNameLength.php │ ├── Migration1756296414UpdateSnippetSetBaseFiles.php │ ├── Migration1756305375AddCategoriesIndexToProduct.php │ ├── Migration1758612662UpdateDateRangeRuleDateTimeFormat.php │ ├── Migration1760438732AddConsumedToPaymentToken.php │ ├── Migration1761739065IncreaseProductWeightPrecision.php │ ├── Migration1762246952IncreaseKgDisplayPrecision.php │ ├── Migration1763316536ChangeProductManufacturerLink.php │ ├── Migration1763544592UpdateGroupRegistrationMailTemplates.php │ └── Migration1764580028AddAltAttributeToOrderConfirmationMailImages.php └── V6_8 │ ├── Migration1743256470RemoveDebitPayment.php │ ├── Migration1743256470RemoveElasticsearchAppConfigFlag.php │ └── Migration1755497870RemoveLabelTranslationOfImportExportProfile.php ├── PlatformRequest.php ├── Profiling ├── Compiler │ └── RemoveDevServices.php ├── Controller │ └── ProfilerController.php ├── DependencyInjection │ ├── CompilerPass │ │ └── CartServiceCompilerPass.php │ ├── services.xml │ └── services_dev.xml ├── Doctrine │ ├── BacktraceDebugDataHolder.php │ ├── ConnectionProfiler.php │ └── ProfilingMiddleware.php ├── FeatureFlag │ └── FeatureFlagProfiler.php ├── Integration │ ├── Datadog.php │ ├── ProfilerInterface.php │ ├── ServerTiming.php │ ├── Stopwatch.php │ └── Tideways.php ├── Profiler.php ├── Profiling.php ├── Resources │ ├── config │ │ ├── packages │ │ │ ├── dev │ │ │ │ └── web_profiler.yaml │ │ │ └── test │ │ │ │ └── web_profiler.yaml │ │ └── routes_dev.xml │ └── views │ │ └── Collector │ │ ├── cart.html.twig │ │ ├── cart.svg │ │ ├── checkmark.svg │ │ ├── db.html.twig │ │ ├── explain.html.twig │ │ ├── flag.svg │ │ ├── flags.html.twig │ │ ├── http_cache_tags.html.twig │ │ ├── icon.svg │ │ ├── rules.html.twig │ │ ├── script_traces.html.twig │ │ └── x.svg ├── Routing │ └── ProfilerWhitelist.php ├── Subscriber │ ├── ActiveRulesDataCollectorSubscriber.php │ ├── CacheTagCollectorSubscriber.php │ └── CartDataCollectorSubscriber.php └── Twig │ └── DoctrineExtension.php ├── README.md ├── SalesChannelRequest.php ├── Service ├── AllServiceInstaller.php ├── Api │ ├── PermissionController.php │ └── ServiceController.php ├── AppInfo.php ├── AuthenticatedServiceClient.php ├── Command │ └── Install.php ├── DependencyInjection │ └── services.xml ├── Event │ ├── NewServicesInstalledEvent.php │ ├── PermissionsGrantedEvent.php │ ├── PermissionsRevokedEvent.php │ ├── ServiceInstalledEvent.php │ └── ServiceUpdatedEvent.php ├── LifecycleManager.php ├── Message │ ├── InstallServicesMessage.php │ ├── LogPermissionToRegistryMessage.php │ └── UpdateServiceMessage.php ├── MessageHandler │ ├── InstallServicesHandler.php │ ├── LogConsentToRegistryHandler.php │ └── UpdateServiceHandler.php ├── Notification.php ├── Permission │ ├── ConsentState.php │ ├── PermissionsConsent.php │ ├── PermissionsService.php │ └── RemoteLogger.php ├── Resources │ └── config │ │ └── routes.xml ├── ScheduledTask │ ├── InstallServicesTask.php │ └── InstallServicesTaskHandler.php ├── Service.php ├── ServiceClient.php ├── ServiceClientFactory.php ├── ServiceException.php ├── ServiceLifecycle.php ├── ServiceRegistry │ ├── Client.php │ ├── PermissionLogger.php │ ├── SaveConsentRequest.php │ └── ServiceEntry.php ├── ServiceSourceResolver.php ├── State.php ├── Subscriber │ ├── ExtensionCompatibilitiesResolvedSubscriber.php │ ├── InstalledExtensionsListingLoadedSubscriber.php │ ├── LicenseSyncSubscriber.php │ ├── PermissionsSubscriber.php │ ├── ServiceLifecycleSubscriber.php │ ├── SystemUpdateSubscriber.php │ └── WebhookManagerSubscriber.php └── TemporaryDirectoryFactory.php ├── System ├── Country │ ├── Aggregate │ │ ├── CountryState │ │ │ ├── CountryStateCollection.php │ │ │ ├── CountryStateDefinition.php │ │ │ ├── CountryStateEntity.php │ │ │ └── SalesChannel │ │ │ │ └── SalesChannelCountryStateDefinition.php │ │ ├── CountryStateTranslation │ │ │ ├── CountryStateTranslationCollection.php │ │ │ ├── CountryStateTranslationDefinition.php │ │ │ └── CountryStateTranslationEntity.php │ │ └── CountryTranslation │ │ │ ├── CountryTranslationCollection.php │ │ │ ├── CountryTranslationDefinition.php │ │ │ └── CountryTranslationEntity.php │ ├── CountryCollection.php │ ├── CountryDefinition.php │ ├── CountryEntity.php │ ├── CountryEvents.php │ ├── CountryException.php │ ├── Event │ │ ├── CountryCriteriaEvent.php │ │ ├── CountryRouteCacheKeyEvent.php │ │ ├── CountryRouteCacheTagsEvent.php │ │ ├── CountryStateCriteriaEvent.php │ │ ├── CountryStateRouteCacheKeyEvent.php │ │ └── CountryStateRouteCacheTagsEvent.php │ └── SalesChannel │ │ ├── AbstractCountryRoute.php │ │ ├── AbstractCountryStateRoute.php │ │ ├── CountryRoute.php │ │ ├── CountryRouteResponse.php │ │ ├── CountryStateRoute.php │ │ ├── CountryStateRouteResponse.php │ │ └── SalesChannelCountryDefinition.php ├── Currency │ ├── Aggregate │ │ ├── CurrencyCountryRounding │ │ │ ├── CurrencyCountryRoundingCollection.php │ │ │ ├── CurrencyCountryRoundingDefinition.php │ │ │ └── CurrencyCountryRoundingEntity.php │ │ └── CurrencyTranslation │ │ │ ├── CurrencyTranslationCollection.php │ │ │ ├── CurrencyTranslationDefinition.php │ │ │ └── CurrencyTranslationEntity.php │ ├── CurrencyCollection.php │ ├── CurrencyDefinition.php │ ├── CurrencyEntity.php │ ├── CurrencyEvents.php │ ├── CurrencyFormatter.php │ ├── CurrencyLoadSubscriber.php │ ├── CurrencyValidator.php │ ├── Event │ │ ├── CurrencyRouteCacheKeyEvent.php │ │ └── CurrencyRouteCacheTagsEvent.php │ ├── Rule │ │ └── CurrencyRule.php │ └── SalesChannel │ │ ├── AbstractCurrencyRoute.php │ │ ├── CurrencyRoute.php │ │ ├── CurrencyRouteResponse.php │ │ └── SalesChannelCurrencyDefinition.php ├── CustomEntity │ ├── Api │ │ └── CustomEntityApiController.php │ ├── CustomEntityCollection.php │ ├── CustomEntityDefinition.php │ ├── CustomEntityEntity.php │ ├── CustomEntityException.php │ ├── CustomEntityLifecycleService.php │ ├── CustomEntityRegistrar.php │ ├── Exception │ │ └── CustomEntityXmlParsingException.php │ ├── Schema │ │ ├── CustomEntityPersister.php │ │ ├── CustomEntitySchemaUpdater.php │ │ ├── DynamicEntityDefinition.php │ │ ├── DynamicFieldFactory.php │ │ ├── DynamicMappingEntityDefinition.php │ │ ├── DynamicTranslationEntityDefinition.php │ │ └── SchemaUpdater.php │ └── Xml │ │ ├── Config │ │ ├── AdminUi │ │ │ ├── AdminUiXmlSchema.php │ │ │ ├── AdminUiXmlSchemaValidator.php │ │ │ ├── XmlElements │ │ │ │ ├── AdminUi.php │ │ │ │ ├── Card.php │ │ │ │ ├── CardField.php │ │ │ │ ├── Column.php │ │ │ │ ├── Columns.php │ │ │ │ ├── Detail.php │ │ │ │ ├── Entity.php │ │ │ │ ├── Listing.php │ │ │ │ ├── Tab.php │ │ │ │ └── Tabs.php │ │ │ └── admin-ui-1.0.xsd │ │ ├── CmsAware │ │ │ └── CmsAwareFields.php │ │ ├── ConfigXmlElement.php │ │ ├── CustomEntityConfigurationException.php │ │ └── CustomEntityEnrichmentService.php │ │ ├── CustomEntityXmlSchema.php │ │ ├── CustomEntityXmlSchemaValidator.php │ │ ├── Entities.php │ │ ├── Entity.php │ │ ├── Field │ │ ├── AssociationField.php │ │ ├── BoolField.php │ │ ├── DateField.php │ │ ├── EmailField.php │ │ ├── Field.php │ │ ├── FieldFactory.php │ │ ├── FloatField.php │ │ ├── IntField.php │ │ ├── JsonField.php │ │ ├── LabelField.php │ │ ├── ManyToManyField.php │ │ ├── ManyToOneField.php │ │ ├── OneToManyField.php │ │ ├── OneToOneField.php │ │ ├── PriceField.php │ │ ├── StringField.php │ │ ├── TextField.php │ │ └── Traits │ │ │ ├── RequiredTrait.php │ │ │ └── TranslatableTrait.php │ │ └── entity-1.0.xsd ├── CustomField │ ├── Aggregate │ │ ├── CustomFieldSet │ │ │ ├── CustomFieldSetCollection.php │ │ │ ├── CustomFieldSetDefinition.php │ │ │ └── CustomFieldSetEntity.php │ │ └── CustomFieldSetRelation │ │ │ ├── CustomFieldSetRelationCollection.php │ │ │ ├── CustomFieldSetRelationDefinition.php │ │ │ └── CustomFieldSetRelationEntity.php │ ├── Api │ │ └── CustomFieldSetActionController.php │ ├── CustomFieldCollection.php │ ├── CustomFieldDefinition.php │ ├── CustomFieldEntity.php │ ├── CustomFieldEvents.php │ ├── CustomFieldException.php │ ├── CustomFieldService.php │ └── CustomFieldTypes.php ├── DeliveryTime │ ├── Aggregate │ │ └── DeliveryTimeTranslation │ │ │ ├── DeliveryTimeTranslationCollection.php │ │ │ ├── DeliveryTimeTranslationDefinition.php │ │ │ └── DeliveryTimeTranslationEntity.php │ ├── DeliveryTimeCollection.php │ ├── DeliveryTimeDefinition.php │ └── DeliveryTimeEntity.php ├── DependencyInjection │ ├── CompilerPass │ │ ├── NumberRangeIncrementerCompilerPass.php │ │ └── SalesChannelEntityCompilerPass.php │ ├── DependencyInjectionException.php │ ├── configuration.xml │ ├── country.xml │ ├── currency.xml │ ├── custom_entity.xml │ ├── integration.xml │ ├── locale.xml │ ├── number_range.xml │ ├── sales_channel.xml │ ├── salutation.xml │ ├── snippet.xml │ ├── state_machine.xml │ ├── tag.xml │ ├── tax.xml │ ├── tax_provider.xml │ ├── unit.xml │ ├── usage_data.xml │ └── user.xml ├── Integration │ ├── Aggregate │ │ └── IntegrationRole │ │ │ └── IntegrationRoleDefinition.php │ ├── IntegrationCollection.php │ ├── IntegrationDefinition.php │ ├── IntegrationEntity.php │ └── IntegrationEvents.php ├── Language │ ├── CachedLanguageLoader.php │ ├── Event │ │ ├── LanguageRouteCacheKeyEvent.php │ │ └── LanguageRouteCacheTagsEvent.php │ ├── Exception │ │ └── LanguageForeignKeyDeleteException.php │ ├── LanguageCollection.php │ ├── LanguageDefinition.php │ ├── LanguageEntity.php │ ├── LanguageEvents.php │ ├── LanguageException.php │ ├── LanguageExceptionHandler.php │ ├── LanguageLoader.php │ ├── LanguageLoaderInterface.php │ ├── LanguageValidator.php │ ├── Rule │ │ └── LanguageRule.php │ ├── SalesChannel │ │ ├── AbstractLanguageRoute.php │ │ ├── LanguageRoute.php │ │ ├── LanguageRouteResponse.php │ │ └── SalesChannelLanguageDefinition.php │ ├── SalesChannelLanguageLoader.php │ └── TranslationValidator.php ├── Locale │ ├── Aggregate │ │ └── LocaleTranslation │ │ │ ├── LocaleTranslationCollection.php │ │ │ ├── LocaleTranslationDefinition.php │ │ │ └── LocaleTranslationEntity.php │ ├── LanguageLocaleCodeProvider.php │ ├── LocaleCollection.php │ ├── LocaleDefinition.php │ ├── LocaleEntity.php │ ├── LocaleEvents.php │ └── LocaleException.php ├── NumberRange │ ├── Aggregate │ │ ├── NumberRangeSalesChannel │ │ │ ├── NumberRangeSalesChannelCollection.php │ │ │ ├── NumberRangeSalesChannelDefinition.php │ │ │ └── NumberRangeSalesChannelEntity.php │ │ ├── NumberRangeState │ │ │ ├── NumberRangeStateCollection.php │ │ │ ├── NumberRangeStateDefinition.php │ │ │ └── NumberRangeStateEntity.php │ │ ├── NumberRangeTranslation │ │ │ ├── NumberRangeTranslationCollection.php │ │ │ ├── NumberRangeTranslationDefinition.php │ │ │ └── NumberRangeTranslationEntity.php │ │ ├── NumberRangeType │ │ │ ├── NumberRangeTypeCollection.php │ │ │ ├── NumberRangeTypeDefinition.php │ │ │ └── NumberRangeTypeEntity.php │ │ └── NumberRangeTypeTranslation │ │ │ ├── NumberRangeTypeTranslationCollection.php │ │ │ ├── NumberRangeTypeTranslationDefinition.php │ │ │ └── NumberRangeTypeTranslationEntity.php │ ├── Api │ │ └── NumberRangeController.php │ ├── Command │ │ └── MigrateIncrementStorageCommand.php │ ├── DataAbstractionLayer │ │ └── NumberRangeField.php │ ├── Exception │ │ ├── IncrementStorageNotFoundException.php │ │ └── NoConfigurationException.php │ ├── NumberRangeCollection.php │ ├── NumberRangeDefinition.php │ ├── NumberRangeEntity.php │ ├── NumberRangeEvents.php │ └── ValueGenerator │ │ ├── NumberRangeGeneratedEvent.php │ │ ├── NumberRangeValueGenerator.php │ │ ├── NumberRangeValueGeneratorInterface.php │ │ └── Pattern │ │ ├── AbstractValueGenerator.php │ │ ├── IncrementStorage │ │ ├── AbstractIncrementStorage.php │ │ ├── IncrementRedisStorage.php │ │ ├── IncrementSqlStorage.php │ │ └── IncrementStorageRegistry.php │ │ ├── ValueGeneratorPatternDate.php │ │ ├── ValueGeneratorPatternIncrement.php │ │ └── ValueGeneratorPatternRegistry.php ├── Resources │ ├── config │ │ ├── basicInformation.xml │ │ ├── cart.xml │ │ ├── listing.xml │ │ ├── loginRegistration.xml │ │ ├── mailerSettings.xml │ │ ├── media.xml │ │ ├── newsletter.xml │ │ ├── privacy.xml │ │ ├── routes.xml │ │ ├── seo.xml │ │ ├── sitemap.xml │ │ ├── store.xml │ │ ├── systemWideLoginRegistration.xml │ │ └── userPermission.xml │ └── translation.yaml ├── SalesChannel │ ├── Aggregate │ │ ├── SalesChannelAnalytics │ │ │ ├── SalesChannelAnalyticsCollection.php │ │ │ ├── SalesChannelAnalyticsDefinition.php │ │ │ └── SalesChannelAnalyticsEntity.php │ │ ├── SalesChannelCountry │ │ │ └── SalesChannelCountryDefinition.php │ │ ├── SalesChannelCurrency │ │ │ └── SalesChannelCurrencyDefinition.php │ │ ├── SalesChannelDomain │ │ │ ├── SalesChannelDomainCollection.php │ │ │ ├── SalesChannelDomainDefinition.php │ │ │ └── SalesChannelDomainEntity.php │ │ ├── SalesChannelLanguage │ │ │ └── SalesChannelLanguageDefinition.php │ │ ├── SalesChannelPaymentMethod │ │ │ └── SalesChannelPaymentMethodDefinition.php │ │ ├── SalesChannelShippingMethod │ │ │ └── SalesChannelShippingMethodDefinition.php │ │ ├── SalesChannelTranslation │ │ │ ├── SalesChannelTranslationCollection.php │ │ │ ├── SalesChannelTranslationDefinition.php │ │ │ └── SalesChannelTranslationEntity.php │ │ ├── SalesChannelType │ │ │ ├── SalesChannelTypeCollection.php │ │ │ ├── SalesChannelTypeDefinition.php │ │ │ └── SalesChannelTypeEntity.php │ │ └── SalesChannelTypeTranslation │ │ │ ├── SalesChannelTypeTranslationCollection.php │ │ │ ├── SalesChannelTypeTranslationDefinition.php │ │ │ └── SalesChannelTypeTranslationEntity.php │ ├── Api │ │ ├── ResponseFields.php │ │ ├── StoreApiResponseListener.php │ │ └── StructEncoder.php │ ├── BaseSalesChannelContext.php │ ├── Context │ │ ├── AbstractBaseSalesChannelContextFactory.php │ │ ├── AbstractSalesChannelContextFactory.php │ │ ├── BaseSalesChannelContextFactory.php │ │ ├── CachedBaseSalesChannelContextFactory.php │ │ ├── CachedSalesChannelContextFactory.php │ │ ├── CartRestorer.php │ │ ├── Cleanup │ │ │ ├── CleanupSalesChannelContextTask.php │ │ │ └── CleanupSalesChannelContextTaskHandler.php │ │ ├── ContextFactory.php │ │ ├── LanguageInfo.php │ │ ├── SalesChannelContextFactory.php │ │ ├── SalesChannelContextPersister.php │ │ ├── SalesChannelContextRestorer.php │ │ ├── SalesChannelContextService.php │ │ ├── SalesChannelContextServiceInterface.php │ │ ├── SalesChannelContextServiceParameters.php │ │ └── SalesChannelContextValueResolver.php │ ├── ContextTokenResponse.php │ ├── Cookie │ │ └── AnalyticsCookieCollectListener.php │ ├── DataAbstractionLayer │ │ ├── SalesChannelIndexer.php │ │ └── SalesChannelIndexingMessage.php │ ├── Entity │ │ ├── DefinitionRegistryChain.php │ │ ├── PartialSalesChannelEntityLoadedEvent.php │ │ ├── SalesChannelDefinitionInstanceRegistry.php │ │ ├── SalesChannelDefinitionInterface.php │ │ ├── SalesChannelEntityAggregationResultLoadedEvent.php │ │ ├── SalesChannelEntityIdSearchResultLoadedEvent.php │ │ ├── SalesChannelEntityLoadedEvent.php │ │ ├── SalesChannelEntitySearchResultLoadedEvent.php │ │ └── SalesChannelRepository.php │ ├── Event │ │ ├── ContextCreatedEvent.php │ │ ├── SalesChannelContextCreatedEvent.php │ │ ├── SalesChannelContextPermissionsChangedEvent.php │ │ ├── SalesChannelContextRestoredEvent.php │ │ ├── SalesChannelContextRestorerOrderCriteriaEvent.php │ │ ├── SalesChannelContextSwitchEvent.php │ │ ├── SalesChannelContextTokenChangeEvent.php │ │ ├── SalesChannelIndexerEvent.php │ │ ├── SalesChannelProcessCriteriaEvent.php │ │ └── SwitchContextEvent.php │ ├── Exception │ │ ├── DefaultSalesChannelTypeCannotBeDeleted.php │ │ ├── LanguageOfSalesChannelDomainDeleteException.php │ │ └── SalesChannelRepositoryNotFoundException.php │ ├── GenericStoreApiResponse.php │ ├── NoContentResponse.php │ ├── SalesChannel │ │ ├── AbstractContextRoute.php │ │ ├── AbstractContextSwitchRoute.php │ │ ├── ContextLoadRouteResponse.php │ │ ├── ContextRoute.php │ │ ├── ContextSwitchRoute.php │ │ ├── SalesChannelContextSwitcher.php │ │ └── StoreApiInfoController.php │ ├── SalesChannelCollection.php │ ├── SalesChannelContext.php │ ├── SalesChannelDefinition.php │ ├── SalesChannelEntity.php │ ├── SalesChannelEvents.php │ ├── SalesChannelException.php │ ├── SalesChannelExceptionHandler.php │ ├── StoreApiCustomFieldMapper.php │ ├── StoreApiRequestHook.php │ ├── StoreApiResponse.php │ ├── Subscriber │ │ └── SalesChannelTypeValidator.php │ ├── SuccessResponse.php │ └── Validation │ │ ├── Mapping.php │ │ ├── SalesChannelData.php │ │ └── SalesChannelValidator.php ├── Salutation │ ├── AbstractSalutationsSorter.php │ ├── Aggregate │ │ └── SalutationTranslation │ │ │ ├── SalutationTranslationCollection.php │ │ │ ├── SalutationTranslationDefinition.php │ │ │ └── SalutationTranslationEntity.php │ ├── Event │ │ ├── SalutationRouteCacheKeyEvent.php │ │ └── SalutationRouteCacheTagsEvent.php │ ├── SalesChannel │ │ ├── AbstractSalutationRoute.php │ │ ├── SalesChannelSalutationDefinition.php │ │ ├── SalutationRoute.php │ │ └── SalutationRouteResponse.php │ ├── SalutationCollection.php │ ├── SalutationDefinition.php │ ├── SalutationEntity.php │ └── SalutationSorter.php ├── Snippet │ ├── Aggregate │ │ └── SnippetSet │ │ │ ├── SnippetSetCollection.php │ │ │ ├── SnippetSetDefinition.php │ │ │ └── SnippetSetEntity.php │ ├── Api │ │ └── SnippetController.php │ ├── Command │ │ ├── InstallTranslationCommand.php │ │ ├── LintTranslationFilesCommand.php │ │ ├── UpdateTranslationCommand.php │ │ ├── Util │ │ │ ├── CountryAgnosticFileLinter.php │ │ │ └── TranslationCommandHelper.php │ │ └── ValidateSnippetsCommand.php │ ├── DataTransfer │ │ ├── Language │ │ │ ├── Language.php │ │ │ └── LanguageCollection.php │ │ ├── Metadata │ │ │ ├── MetadataCollection.php │ │ │ └── MetadataEntry.php │ │ ├── PluginMapping │ │ │ ├── PluginMapping.php │ │ │ └── PluginMappingCollection.php │ │ └── SnippetPath │ │ │ ├── SnippetPath.php │ │ │ └── SnippetPathCollection.php │ ├── Event │ │ └── SnippetsThemeResolveEvent.php │ ├── Extension │ │ └── StorefrontSnippetsExtension.php │ ├── Files │ │ ├── AbstractSnippetFile.php │ │ ├── AppSnippetFileLoader.php │ │ ├── GenericSnippetFile.php │ │ ├── RemoteSnippetFile.php │ │ ├── SnippetFileCollection.php │ │ ├── SnippetFileCollectionFactory.php │ │ ├── SnippetFileLoader.php │ │ └── SnippetFileLoaderInterface.php │ ├── Filter │ │ ├── AbstractFilter.php │ │ ├── AddedFilter.php │ │ ├── AuthorFilter.php │ │ ├── EditedFilter.php │ │ ├── EmptySnippetFilter.php │ │ ├── NamespaceFilter.php │ │ ├── SnippetFilterFactory.php │ │ ├── SnippetFilterInterface.php │ │ ├── TermFilter.php │ │ └── TranslationKeyFilter.php │ ├── Service │ │ ├── AbstractTranslationConfigLoader.php │ │ ├── TranslationConfigLoader.php │ │ ├── TranslationLoader.php │ │ └── TranslationMetadataLoader.php │ ├── SnippetCollection.php │ ├── SnippetDefinition.php │ ├── SnippetEntity.php │ ├── SnippetEvents.php │ ├── SnippetException.php │ ├── SnippetFileHandler.php │ ├── SnippetFixer.php │ ├── SnippetPatterns.php │ ├── SnippetService.php │ ├── SnippetValidator.php │ ├── SnippetValidatorInterface.php │ ├── Struct │ │ ├── FixableTranslationFileCollection.php │ │ ├── InvalidPluralizationCollection.php │ │ ├── InvalidPluralizationStruct.php │ │ ├── LintedTranslationFileOptions.php │ │ ├── LintedTranslationFileStruct.php │ │ ├── MissingSnippetCollection.php │ │ ├── MissingSnippetStruct.php │ │ ├── SnippetValidationStruct.php │ │ ├── TranslationConfig.php │ │ ├── TranslationFile.php │ │ └── TranslationFileCollection.php │ └── Subscriber │ │ └── CustomFieldSubscriber.php ├── StateMachine │ ├── Aggregation │ │ ├── StateMachineHistory │ │ │ ├── StateMachineHistoryCollection.php │ │ │ ├── StateMachineHistoryDefinition.php │ │ │ └── StateMachineHistoryEntity.php │ │ ├── StateMachineState │ │ │ ├── StateMachineStateCollection.php │ │ │ ├── StateMachineStateDefinition.php │ │ │ ├── StateMachineStateEntity.php │ │ │ ├── StateMachineStateTranslationCollection.php │ │ │ ├── StateMachineStateTranslationDefinition.php │ │ │ └── StateMachineStateTranslationEntity.php │ │ └── StateMachineTransition │ │ │ ├── StateMachineTransitionActions.php │ │ │ ├── StateMachineTransitionCollection.php │ │ │ ├── StateMachineTransitionDefinition.php │ │ │ └── StateMachineTransitionEntity.php │ ├── Api │ │ └── StateMachineActionController.php │ ├── Command │ │ └── WorkflowDumpCommand.php │ ├── Event │ │ ├── StateMachineStateChangeEvent.php │ │ └── StateMachineTransitionEvent.php │ ├── Exception │ │ ├── IllegalTransitionException.php │ │ └── UnnecessaryTransitionException.php │ ├── Loader │ │ └── InitialStateIdLoader.php │ ├── StateMachineCollection.php │ ├── StateMachineDefinition.php │ ├── StateMachineEntity.php │ ├── StateMachineException.php │ ├── StateMachineRegistry.php │ ├── StateMachineTranslationCollection.php │ ├── StateMachineTranslationDefinition.php │ ├── StateMachineTranslationEntity.php │ ├── Transition.php │ └── Util │ │ └── StateMachineGraphvizDumper.php ├── System.php ├── SystemConfig │ ├── AbstractSystemConfigLoader.php │ ├── Api │ │ └── SystemConfigController.php │ ├── CachedSystemConfigLoader.php │ ├── Command │ │ ├── ConfigGet.php │ │ └── ConfigSet.php │ ├── ConfiguredSystemConfigLoader.php │ ├── Event │ │ ├── BeforeSystemConfigChangedEvent.php │ │ ├── BeforeSystemConfigMultipleChangedEvent.php │ │ ├── SystemConfigChangedEvent.php │ │ ├── SystemConfigChangedHook.php │ │ ├── SystemConfigDomainLoadedEvent.php │ │ └── SystemConfigMultipleChangedEvent.php │ ├── Exception │ │ ├── BundleConfigNotFoundException.php │ │ ├── InvalidDomainException.php │ │ ├── InvalidKeyException.php │ │ └── InvalidSettingValueException.php │ ├── Facade │ │ ├── SystemConfigFacade.php │ │ └── SystemConfigFacadeHookFactory.php │ ├── MemoizedSystemConfigLoader.php │ ├── README.md │ ├── Schema │ │ └── config.xsd │ ├── Service │ │ ├── AppConfigReader.php │ │ └── ConfigurationService.php │ ├── Store │ │ └── MemoizedSystemConfigStore.php │ ├── SymfonySystemConfigService.php │ ├── SystemConfigCollection.php │ ├── SystemConfigDefinition.php │ ├── SystemConfigEntity.php │ ├── SystemConfigException.php │ ├── SystemConfigLoader.php │ ├── SystemConfigService.php │ ├── Util │ │ └── ConfigReader.php │ └── Validation │ │ └── SystemConfigValidator.php ├── Tag │ ├── Service │ │ └── FilterTagIdsService.php │ ├── Struct │ │ └── FilteredTagIdsStruct.php │ ├── TagCollection.php │ ├── TagDefinition.php │ └── TagEntity.php ├── Tax │ ├── Aggregate │ │ ├── TaxRule │ │ │ ├── TaxRuleCollection.php │ │ │ ├── TaxRuleDefinition.php │ │ │ └── TaxRuleEntity.php │ │ ├── TaxRuleType │ │ │ ├── TaxRuleTypeCollection.php │ │ │ ├── TaxRuleTypeDefinition.php │ │ │ └── TaxRuleTypeEntity.php │ │ └── TaxRuleTypeTranslation │ │ │ ├── TaxRuleTypeTranslationCollection.php │ │ │ ├── TaxRuleTypeTranslationDefinition.php │ │ │ └── TaxRuleTypeTranslationEntity.php │ ├── TaxCollection.php │ ├── TaxDefinition.php │ ├── TaxEntity.php │ ├── TaxEvents.php │ └── TaxRuleType │ │ ├── AbstractTaxRuleTypeFilter.php │ │ ├── EntireCountryRuleTypeFilter.php │ │ ├── IndividualStatesRuleTypeFilter.php │ │ ├── TaxRuleTypeFilterInterface.php │ │ ├── ZipCodeRangeRuleTypeFilter.php │ │ └── ZipCodeRuleTypeFilter.php ├── TaxProvider │ ├── Aggregate │ │ └── TaxProviderTranslation │ │ │ ├── TaxProviderTranslationCollection.php │ │ │ ├── TaxProviderTranslationDefinition.php │ │ │ └── TaxProviderTranslationEntity.php │ ├── TaxProviderCollection.php │ ├── TaxProviderDefinition.php │ └── TaxProviderEntity.php ├── Unit │ ├── Aggregate │ │ └── UnitTranslation │ │ │ ├── UnitTranslationCollection.php │ │ │ ├── UnitTranslationDefinition.php │ │ │ └── UnitTranslationEntity.php │ ├── UnitCollection.php │ ├── UnitDefinition.php │ ├── UnitEntity.php │ └── UnitEvents.php ├── UsageData │ ├── Api │ │ └── ConsentController.php │ ├── Client │ │ └── GatewayClient.php │ ├── Consent │ │ ├── BannerService.php │ │ ├── ConsentReporter.php │ │ ├── ConsentService.php │ │ ├── ConsentState.php │ │ └── ConsentStateChangedEvent.php │ ├── EntitySync │ │ ├── CollectEntityDataMessage.php │ │ ├── CollectEntityDataMessageHandler.php │ │ ├── DispatchEntitiesQueryBuilder.php │ │ ├── DispatchEntityMessage.php │ │ ├── DispatchEntityMessageHandler.php │ │ ├── EntityDispatcher.php │ │ ├── IterateEntitiesQueryBuilder.php │ │ ├── IterateEntityMessage.php │ │ ├── IterateEntityMessageHandler.php │ │ └── Operation.php │ ├── Exception │ │ ├── ConsentAlreadyAcceptedException.php │ │ ├── ConsentAlreadyRequestedException.php │ │ └── ConsentAlreadyRevokedException.php │ ├── ScheduledTask │ │ ├── CollectEntityDataTask.php │ │ └── CollectEntityDataTaskHandler.php │ ├── Services │ │ ├── EntityDefinitionService.php │ │ ├── EntityDeleteEventHelper.php │ │ ├── EntityDispatchService.php │ │ ├── GatewayStatusService.php │ │ ├── ManyToManyAssociationService.php │ │ ├── ShopIdProvider.php │ │ └── UsageDataAllowListService.php │ ├── Subscriber │ │ ├── EntityDeleteSubscriber.php │ │ ├── ShopIdChangedSubscriber.php │ │ └── UsageDataApprovalSubscriber.php │ ├── UsageDataException.php │ └── usage-data-allow-list.json └── User │ ├── Aggregate │ ├── UserAccessKey │ │ ├── UserAccessKeyCollection.php │ │ ├── UserAccessKeyDefinition.php │ │ └── UserAccessKeyEntity.php │ ├── UserConfig │ │ ├── UserConfigCollection.php │ │ ├── UserConfigDefinition.php │ │ └── UserConfigEntity.php │ └── UserRecovery │ │ ├── UserRecoveryCollection.php │ │ ├── UserRecoveryDefinition.php │ │ └── UserRecoveryEntity.php │ ├── Api │ ├── UserRecoveryController.php │ └── UserValidationController.php │ ├── Recovery │ ├── UserRecoveryRequestEvent.php │ └── UserRecoveryService.php │ ├── Service │ └── UserValidationService.php │ ├── UserCollection.php │ ├── UserDefinition.php │ ├── UserEntity.php │ ├── UserEvents.php │ └── UserException.php ├── Test ├── Annotation │ └── DisabledFeatures.php ├── AppSystemTestBehaviour.php ├── FixtureLoader.php ├── Generator.php ├── Integration │ ├── App │ │ ├── GuzzleHistoryCollector.php │ │ └── TestAppServer.php │ ├── Builder │ │ ├── Customer │ │ │ └── CustomerBuilder.php │ │ ├── Order │ │ │ ├── OrderBuilder.php │ │ │ ├── OrderTransactionBuilder.php │ │ │ ├── OrderTransactionCaptureBuilder.php │ │ │ ├── OrderTransactionCaptureRefundBuilder.php │ │ │ └── OrderTransactionCaptureRefundPositionBuilder.php │ │ └── Promotion │ │ │ └── PromotionFixtureBuilder.php │ ├── Helper │ │ └── MailEventListener.php │ ├── PaymentHandler │ │ └── TestPaymentHandler.php │ └── Traits │ │ ├── CustomerTestTrait.php │ │ ├── EntityFixturesBase.php │ │ ├── OrderFixture.php │ │ ├── Promotion │ │ ├── PromotionIntegrationTestBehaviour.php │ │ ├── PromotionLineItemTestFixtureBehaviour.php │ │ ├── PromotionSetGroupTestFixtureBehaviour.php │ │ ├── PromotionTestFixtureBehaviour.php │ │ └── ShippingMethodPricesTestBehaviour.php │ │ ├── SnapshotTesting.php │ │ └── TestShortHands.php ├── PHPUnit │ └── Extension │ │ ├── Common │ │ └── TimeKeeper.php │ │ ├── DatabaseDiff │ │ ├── DatabaseDiffExtension.php │ │ ├── DbState.php │ │ └── Subscriber │ │ │ ├── BeforeTestMethodCalledSubscriber.php │ │ │ └── TestFinishedSubscriber.php │ │ ├── Datadog │ │ ├── DatadogExtension.php │ │ ├── DatadogPayload.php │ │ ├── DatadogPayloadCollection.php │ │ ├── Gateway │ │ │ └── DatadogGateway.php │ │ └── Subscriber │ │ │ ├── TestErroredSubscriber.php │ │ │ ├── TestFailedSubscriber.php │ │ │ ├── TestFinishedSubscriber.php │ │ │ ├── TestPreparedSubscriber.php │ │ │ └── TestRunnerExecutionFinishedSubscriber.php │ │ └── FeatureFlag │ │ ├── FeatureFlagExtension.php │ │ ├── SavedConfig.php │ │ └── Subscriber │ │ ├── TestFinishedSubscriber.php │ │ ├── TestPreparationStartedSubscriber.php │ │ └── TestSkippedSubscriber.php ├── Stub │ ├── App │ │ └── StaticSourceResolver.php │ ├── Checkout │ │ ├── EmptyPrice.php │ │ └── Payment │ │ │ └── Cart │ │ │ └── Token │ │ │ ├── TestKey.php │ │ │ └── TestSigner.php │ ├── DataAbstractionLayer │ │ ├── EmptyEntityExistence.php │ │ ├── StaticDefinitionInstanceRegistry.php │ │ ├── StaticEntityRepository.php │ │ ├── StaticEntityWriterGateway.php │ │ └── StaticSalesChannelRepository.php │ ├── Doctrine │ │ ├── FakeConnection.php │ │ ├── FakeQueryBuilder.php │ │ ├── FakeResultFactory.php │ │ ├── QueryBuilderDataExtractor.php │ │ └── TestExceptionFactory.php │ ├── EventDispatcher │ │ ├── AssertingEventDispatcher.php │ │ └── CollectingEventDispatcher.php │ ├── Flow │ │ └── DummyEvent.php │ ├── Framework │ │ ├── Adapter │ │ │ └── Storage │ │ │ │ └── ArrayKeyValueStorage.php │ │ ├── BundleFixture.php │ │ ├── DataAbstractionLayer │ │ │ └── TestEntityDefinition.php │ │ ├── IdsCollection.php │ │ └── Util │ │ │ └── StaticFilesystem.php │ ├── MessageBus │ │ └── CollectingMessageBus.php │ ├── Redis │ │ ├── RedisCompatibility.php │ │ ├── RedisMultiCompatibility.php │ │ ├── RedisMultiWrapper.php │ │ └── RedisStub.php │ ├── Rule │ │ ├── FalseRule.php │ │ └── TrueRule.php │ ├── Symfony │ │ └── StubKernel.php │ ├── System │ │ └── NumberRange │ │ │ └── ValueGenerator │ │ │ └── IncrementArrayStorage.php │ ├── SystemConfigService │ │ └── StaticSystemConfigService.php │ └── Translator │ │ └── StaticTranslator.php ├── TestBuilderTrait.php └── TestDefaults.php ├── TestBootstrap.php ├── TestBootstrapper.php ├── composer.json ├── locales.php └── schema.sql /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/.gitattributes -------------------------------------------------------------------------------- /Checkout/Cart/AbstractCartPersister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/AbstractCartPersister.php -------------------------------------------------------------------------------- /Checkout/Cart/AbstractRuleLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/AbstractRuleLoader.php -------------------------------------------------------------------------------- /Checkout/Cart/Address/AddressValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Address/AddressValidator.php -------------------------------------------------------------------------------- /Checkout/Cart/ApiOrderCartService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/ApiOrderCartService.php -------------------------------------------------------------------------------- /Checkout/Cart/CachedRuleLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CachedRuleLoader.php -------------------------------------------------------------------------------- /Checkout/Cart/Calculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Calculator.php -------------------------------------------------------------------------------- /Checkout/Cart/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Cart.php -------------------------------------------------------------------------------- /Checkout/Cart/CartBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartBehavior.php -------------------------------------------------------------------------------- /Checkout/Cart/CartCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartCalculator.php -------------------------------------------------------------------------------- /Checkout/Cart/CartCompressor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartCompressor.php -------------------------------------------------------------------------------- /Checkout/Cart/CartContextHashStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartContextHashStruct.php -------------------------------------------------------------------------------- /Checkout/Cart/CartContextHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartContextHasher.php -------------------------------------------------------------------------------- /Checkout/Cart/CartException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartException.php -------------------------------------------------------------------------------- /Checkout/Cart/CartFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartFactory.php -------------------------------------------------------------------------------- /Checkout/Cart/CartLocker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartLocker.php -------------------------------------------------------------------------------- /Checkout/Cart/CartPersister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartPersister.php -------------------------------------------------------------------------------- /Checkout/Cart/CartProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartProcessorInterface.php -------------------------------------------------------------------------------- /Checkout/Cart/CartRuleLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartRuleLoader.php -------------------------------------------------------------------------------- /Checkout/Cart/CartSerializationCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartSerializationCleaner.php -------------------------------------------------------------------------------- /Checkout/Cart/CartValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartValidatorInterface.php -------------------------------------------------------------------------------- /Checkout/Cart/CartValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CartValueResolver.php -------------------------------------------------------------------------------- /Checkout/Cart/Cleanup/CleanupCartTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Cleanup/CleanupCartTask.php -------------------------------------------------------------------------------- /Checkout/Cart/CreditCartProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CreditCartProcessor.php -------------------------------------------------------------------------------- /Checkout/Cart/CustomCartProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/CustomCartProcessor.php -------------------------------------------------------------------------------- /Checkout/Cart/Delivery/DeliveryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Delivery/DeliveryBuilder.php -------------------------------------------------------------------------------- /Checkout/Cart/Delivery/Struct/Delivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Delivery/Struct/Delivery.php -------------------------------------------------------------------------------- /Checkout/Cart/Error/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Error/Error.php -------------------------------------------------------------------------------- /Checkout/Cart/Error/ErrorCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Error/ErrorCollection.php -------------------------------------------------------------------------------- /Checkout/Cart/Error/ErrorRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Error/ErrorRoute.php -------------------------------------------------------------------------------- /Checkout/Cart/Error/GenericCartError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Error/GenericCartError.php -------------------------------------------------------------------------------- /Checkout/Cart/Event/CartChangedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Event/CartChangedEvent.php -------------------------------------------------------------------------------- /Checkout/Cart/Event/CartCreatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Event/CartCreatedEvent.php -------------------------------------------------------------------------------- /Checkout/Cart/Event/CartDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Event/CartDeletedEvent.php -------------------------------------------------------------------------------- /Checkout/Cart/Event/CartEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Event/CartEvent.php -------------------------------------------------------------------------------- /Checkout/Cart/Event/CartLoadedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Event/CartLoadedEvent.php -------------------------------------------------------------------------------- /Checkout/Cart/Event/CartMergedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Event/CartMergedEvent.php -------------------------------------------------------------------------------- /Checkout/Cart/Event/CartSavedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Event/CartSavedEvent.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/CartFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/CartFacade.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/CartFacadeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/CartFacadeHelper.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/CartPriceFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/CartPriceFacade.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/ContainerFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/ContainerFacade.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/DiscountFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/DiscountFacade.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/ErrorsFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/ErrorsFacade.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/ItemFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/ItemFacade.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/ItemsFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/ItemsFacade.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/PriceFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/PriceFacade.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/PriceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/PriceFactory.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/ProductsFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/ProductsFacade.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/ScriptPriceStubs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/ScriptPriceStubs.php -------------------------------------------------------------------------------- /Checkout/Cart/Facade/StatesFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Facade/StatesFacade.php -------------------------------------------------------------------------------- /Checkout/Cart/Hook/CartAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Hook/CartAware.php -------------------------------------------------------------------------------- /Checkout/Cart/Hook/CartHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Hook/CartHook.php -------------------------------------------------------------------------------- /Checkout/Cart/LineItem/LineItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/LineItem/LineItem.php -------------------------------------------------------------------------------- /Checkout/Cart/LineItemFactoryRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/LineItemFactoryRegistry.php -------------------------------------------------------------------------------- /Checkout/Cart/Order/CartConvertedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Order/CartConvertedEvent.php -------------------------------------------------------------------------------- /Checkout/Cart/Order/IdStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Order/IdStruct.php -------------------------------------------------------------------------------- /Checkout/Cart/Order/OrderConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Order/OrderConverter.php -------------------------------------------------------------------------------- /Checkout/Cart/Order/OrderPersister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Order/OrderPersister.php -------------------------------------------------------------------------------- /Checkout/Cart/Order/OrderPlaceResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Order/OrderPlaceResult.php -------------------------------------------------------------------------------- /Checkout/Cart/Price/AmountCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Price/AmountCalculator.php -------------------------------------------------------------------------------- /Checkout/Cart/Price/CashRounding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Price/CashRounding.php -------------------------------------------------------------------------------- /Checkout/Cart/Price/NetPriceCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Price/NetPriceCalculator.php -------------------------------------------------------------------------------- /Checkout/Cart/Price/Struct/CartPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Price/Struct/CartPrice.php -------------------------------------------------------------------------------- /Checkout/Cart/Price/Struct/ListPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Price/Struct/ListPrice.php -------------------------------------------------------------------------------- /Checkout/Cart/PriceActionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/PriceActionController.php -------------------------------------------------------------------------------- /Checkout/Cart/PriceDefinitionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/PriceDefinitionFactory.php -------------------------------------------------------------------------------- /Checkout/Cart/Processor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Processor.php -------------------------------------------------------------------------------- /Checkout/Cart/RedisCartPersister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/RedisCartPersister.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/AlwaysValidRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/AlwaysValidRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/CartAmountRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/CartAmountRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/CartRuleScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/CartRuleScope.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/CartTaxDisplayRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/CartTaxDisplayRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/CartVolumeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/CartVolumeRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/CartWeightRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/CartWeightRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/GoodsCountRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/GoodsCountRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/GoodsPriceRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/GoodsPriceRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/LineItemGroupRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/LineItemGroupRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/LineItemIsNewRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/LineItemIsNewRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/LineItemOfTypeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/LineItemOfTypeRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/LineItemRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/LineItemRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/LineItemScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/LineItemScope.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/LineItemStockRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/LineItemStockRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/LineItemTagRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/LineItemTagRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/LineItemWrapperRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/LineItemWrapperRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/PaymentMethodRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/PaymentMethodRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Rule/ShippingMethodRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Rule/ShippingMethodRule.php -------------------------------------------------------------------------------- /Checkout/Cart/RuleLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/RuleLoader.php -------------------------------------------------------------------------------- /Checkout/Cart/RuleLoaderResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/RuleLoaderResult.php -------------------------------------------------------------------------------- /Checkout/Cart/SalesChannel/CartService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/SalesChannel/CartService.php -------------------------------------------------------------------------------- /Checkout/Cart/Tax/AbstractTaxDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Tax/AbstractTaxDetector.php -------------------------------------------------------------------------------- /Checkout/Cart/Tax/Struct/CalculatedTax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Tax/Struct/CalculatedTax.php -------------------------------------------------------------------------------- /Checkout/Cart/Tax/Struct/TaxRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Tax/Struct/TaxRule.php -------------------------------------------------------------------------------- /Checkout/Cart/Tax/TaxCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Tax/TaxCalculator.php -------------------------------------------------------------------------------- /Checkout/Cart/Tax/TaxDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Tax/TaxDetector.php -------------------------------------------------------------------------------- /Checkout/Cart/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Cart/Validator.php -------------------------------------------------------------------------------- /Checkout/Checkout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Checkout.php -------------------------------------------------------------------------------- /Checkout/CheckoutPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/CheckoutPermissions.php -------------------------------------------------------------------------------- /Checkout/CheckoutRuleScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/CheckoutRuleScope.php -------------------------------------------------------------------------------- /Checkout/Customer/CustomerCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/CustomerCollection.php -------------------------------------------------------------------------------- /Checkout/Customer/CustomerDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/CustomerDefinition.php -------------------------------------------------------------------------------- /Checkout/Customer/CustomerEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/CustomerEntity.php -------------------------------------------------------------------------------- /Checkout/Customer/CustomerEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/CustomerEvents.php -------------------------------------------------------------------------------- /Checkout/Customer/CustomerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/CustomerException.php -------------------------------------------------------------------------------- /Checkout/Customer/Rule/BillingCityRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/Rule/BillingCityRule.php -------------------------------------------------------------------------------- /Checkout/Customer/Rule/CustomerAgeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/Rule/CustomerAgeRule.php -------------------------------------------------------------------------------- /Checkout/Customer/Rule/CustomerTagRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/Rule/CustomerTagRule.php -------------------------------------------------------------------------------- /Checkout/Customer/Rule/EmailRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/Rule/EmailRule.php -------------------------------------------------------------------------------- /Checkout/Customer/Rule/IsActiveRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/Rule/IsActiveRule.php -------------------------------------------------------------------------------- /Checkout/Customer/Rule/IsCompanyRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/Rule/IsCompanyRule.php -------------------------------------------------------------------------------- /Checkout/Customer/Rule/LastNameRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/Rule/LastNameRule.php -------------------------------------------------------------------------------- /Checkout/Customer/Rule/OrderCountRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Customer/Rule/OrderCountRule.php -------------------------------------------------------------------------------- /Checkout/DependencyInjection/cart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/DependencyInjection/cart.xml -------------------------------------------------------------------------------- /Checkout/DependencyInjection/customer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/DependencyInjection/customer.xml -------------------------------------------------------------------------------- /Checkout/DependencyInjection/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/DependencyInjection/document.xml -------------------------------------------------------------------------------- /Checkout/DependencyInjection/order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/DependencyInjection/order.xml -------------------------------------------------------------------------------- /Checkout/DependencyInjection/payment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/DependencyInjection/payment.xml -------------------------------------------------------------------------------- /Checkout/DependencyInjection/promotion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/DependencyInjection/promotion.xml -------------------------------------------------------------------------------- /Checkout/DependencyInjection/rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/DependencyInjection/rule.xml -------------------------------------------------------------------------------- /Checkout/DependencyInjection/shipping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/DependencyInjection/shipping.xml -------------------------------------------------------------------------------- /Checkout/Document/DocumentCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Document/DocumentCollection.php -------------------------------------------------------------------------------- /Checkout/Document/DocumentDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Document/DocumentDefinition.php -------------------------------------------------------------------------------- /Checkout/Document/DocumentEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Document/DocumentEntity.php -------------------------------------------------------------------------------- /Checkout/Document/DocumentEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Document/DocumentEvents.php -------------------------------------------------------------------------------- /Checkout/Document/DocumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Document/DocumentException.php -------------------------------------------------------------------------------- /Checkout/Document/DocumentIdCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Document/DocumentIdCollection.php -------------------------------------------------------------------------------- /Checkout/Document/DocumentIdStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Document/DocumentIdStruct.php -------------------------------------------------------------------------------- /Checkout/Document/Service/HtmlRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Document/Service/HtmlRenderer.php -------------------------------------------------------------------------------- /Checkout/Document/Service/PdfRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Document/Service/PdfRenderer.php -------------------------------------------------------------------------------- /Checkout/Order/OrderAddressService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Order/OrderAddressService.php -------------------------------------------------------------------------------- /Checkout/Order/OrderCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Order/OrderCollection.php -------------------------------------------------------------------------------- /Checkout/Order/OrderDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Order/OrderDefinition.php -------------------------------------------------------------------------------- /Checkout/Order/OrderEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Order/OrderEntity.php -------------------------------------------------------------------------------- /Checkout/Order/OrderEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Order/OrderEvents.php -------------------------------------------------------------------------------- /Checkout/Order/OrderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Order/OrderException.php -------------------------------------------------------------------------------- /Checkout/Order/OrderExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Order/OrderExceptionHandler.php -------------------------------------------------------------------------------- /Checkout/Order/OrderStates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Order/OrderStates.php -------------------------------------------------------------------------------- /Checkout/Order/SalesChannel/OrderRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Order/SalesChannel/OrderRoute.php -------------------------------------------------------------------------------- /Checkout/Payment/PaymentEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Payment/PaymentEvents.php -------------------------------------------------------------------------------- /Checkout/Payment/PaymentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Payment/PaymentException.php -------------------------------------------------------------------------------- /Checkout/Payment/PaymentMethodEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Payment/PaymentMethodEntity.php -------------------------------------------------------------------------------- /Checkout/Payment/PaymentProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Payment/PaymentProcessor.php -------------------------------------------------------------------------------- /Checkout/Promotion/PromotionCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Promotion/PromotionCollection.php -------------------------------------------------------------------------------- /Checkout/Promotion/PromotionDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Promotion/PromotionDefinition.php -------------------------------------------------------------------------------- /Checkout/Promotion/PromotionEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Promotion/PromotionEntity.php -------------------------------------------------------------------------------- /Checkout/Promotion/PromotionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Promotion/PromotionException.php -------------------------------------------------------------------------------- /Checkout/Resources/config/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Resources/config/routes.xml -------------------------------------------------------------------------------- /Checkout/Shipping/ShippingEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Shipping/ShippingEvents.php -------------------------------------------------------------------------------- /Checkout/Shipping/ShippingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Shipping/ShippingException.php -------------------------------------------------------------------------------- /Checkout/Shipping/ShippingMethodEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Checkout/Shipping/ShippingMethodEntity.php -------------------------------------------------------------------------------- /Content/Breadcrumb/BreadcrumbException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Breadcrumb/BreadcrumbException.php -------------------------------------------------------------------------------- /Content/Breadcrumb/Struct/Breadcrumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Breadcrumb/Struct/Breadcrumb.php -------------------------------------------------------------------------------- /Content/Category/CategoryCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Category/CategoryCollection.php -------------------------------------------------------------------------------- /Content/Category/CategoryDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Category/CategoryDefinition.php -------------------------------------------------------------------------------- /Content/Category/CategoryEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Category/CategoryEntity.php -------------------------------------------------------------------------------- /Content/Category/CategoryEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Category/CategoryEvents.php -------------------------------------------------------------------------------- /Content/Category/CategoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Category/CategoryException.php -------------------------------------------------------------------------------- /Content/Category/CategoryHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Category/CategoryHydrator.php -------------------------------------------------------------------------------- /Content/Category/Tree/Tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Category/Tree/Tree.php -------------------------------------------------------------------------------- /Content/Category/Tree/TreeItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Category/Tree/TreeItem.php -------------------------------------------------------------------------------- /Content/Cms/CmsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cms/CmsException.php -------------------------------------------------------------------------------- /Content/Cms/CmsPageCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cms/CmsPageCollection.php -------------------------------------------------------------------------------- /Content/Cms/CmsPageDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cms/CmsPageDefinition.php -------------------------------------------------------------------------------- /Content/Cms/CmsPageEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cms/CmsPageEntity.php -------------------------------------------------------------------------------- /Content/Cms/CmsPageEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cms/CmsPageEvents.php -------------------------------------------------------------------------------- /Content/Cms/Command/CreatePageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cms/Command/CreatePageCommand.php -------------------------------------------------------------------------------- /Content/Cms/DataResolver/FieldConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cms/DataResolver/FieldConfig.php -------------------------------------------------------------------------------- /Content/Cms/Events/CmsPageLoadedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cms/Events/CmsPageLoadedEvent.php -------------------------------------------------------------------------------- /Content/Cms/SalesChannel/CmsRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cms/SalesChannel/CmsRoute.php -------------------------------------------------------------------------------- /Content/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Content.php -------------------------------------------------------------------------------- /Content/Cookie/CookieException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cookie/CookieException.php -------------------------------------------------------------------------------- /Content/Cookie/Service/CookieProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cookie/Service/CookieProvider.php -------------------------------------------------------------------------------- /Content/Cookie/Struct/CookieEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cookie/Struct/CookieEntry.php -------------------------------------------------------------------------------- /Content/Cookie/Struct/CookieGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Cookie/Struct/CookieGroup.php -------------------------------------------------------------------------------- /Content/DependencyInjection/breadcrumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/DependencyInjection/breadcrumb.xml -------------------------------------------------------------------------------- /Content/DependencyInjection/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/DependencyInjection/category.xml -------------------------------------------------------------------------------- /Content/DependencyInjection/cms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/DependencyInjection/cms.xml -------------------------------------------------------------------------------- /Content/DependencyInjection/cookie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/DependencyInjection/cookie.xml -------------------------------------------------------------------------------- /Content/DependencyInjection/flow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/DependencyInjection/flow.xml -------------------------------------------------------------------------------- /Content/DependencyInjection/media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/DependencyInjection/media.xml -------------------------------------------------------------------------------- /Content/DependencyInjection/media_path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/DependencyInjection/media_path.xml -------------------------------------------------------------------------------- /Content/DependencyInjection/product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/DependencyInjection/product.xml -------------------------------------------------------------------------------- /Content/DependencyInjection/property.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/DependencyInjection/property.xml -------------------------------------------------------------------------------- /Content/DependencyInjection/rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/DependencyInjection/rule.xml -------------------------------------------------------------------------------- /Content/DependencyInjection/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/DependencyInjection/sitemap.xml -------------------------------------------------------------------------------- /Content/Flow/Api/FlowActionCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Api/FlowActionCollector.php -------------------------------------------------------------------------------- /Content/Flow/Api/FlowActionDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Api/FlowActionDefinition.php -------------------------------------------------------------------------------- /Content/Flow/Dispatching/FlowBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Dispatching/FlowBuilder.php -------------------------------------------------------------------------------- /Content/Flow/Dispatching/FlowExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Dispatching/FlowExecutor.php -------------------------------------------------------------------------------- /Content/Flow/Dispatching/FlowFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Dispatching/FlowFactory.php -------------------------------------------------------------------------------- /Content/Flow/Dispatching/FlowLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Dispatching/FlowLoader.php -------------------------------------------------------------------------------- /Content/Flow/Dispatching/FlowState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Dispatching/FlowState.php -------------------------------------------------------------------------------- /Content/Flow/Dispatching/StorableFlow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Dispatching/StorableFlow.php -------------------------------------------------------------------------------- /Content/Flow/Dispatching/Struct/Flow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Dispatching/Struct/Flow.php -------------------------------------------------------------------------------- /Content/Flow/Events/FlowIndexerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Events/FlowIndexerEvent.php -------------------------------------------------------------------------------- /Content/Flow/FlowCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/FlowCollection.php -------------------------------------------------------------------------------- /Content/Flow/FlowDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/FlowDefinition.php -------------------------------------------------------------------------------- /Content/Flow/FlowEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/FlowEntity.php -------------------------------------------------------------------------------- /Content/Flow/FlowEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/FlowEvents.php -------------------------------------------------------------------------------- /Content/Flow/FlowException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/FlowException.php -------------------------------------------------------------------------------- /Content/Flow/Indexing/FlowIndexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Indexing/FlowIndexer.php -------------------------------------------------------------------------------- /Content/Flow/Rule/FlowRuleScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Rule/FlowRuleScope.php -------------------------------------------------------------------------------- /Content/Flow/Rule/FlowRuleScopeBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Rule/FlowRuleScopeBuilder.php -------------------------------------------------------------------------------- /Content/Flow/Rule/OrderCustomFieldRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Rule/OrderCustomFieldRule.php -------------------------------------------------------------------------------- /Content/Flow/Rule/OrderStatusRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Rule/OrderStatusRule.php -------------------------------------------------------------------------------- /Content/Flow/Rule/OrderTagRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Flow/Rule/OrderTagRule.php -------------------------------------------------------------------------------- /Content/ImportExport/ImportExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/ImportExport/ImportExport.php -------------------------------------------------------------------------------- /Content/ImportExport/Struct/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/ImportExport/Struct/Config.php -------------------------------------------------------------------------------- /Content/ImportExport/Struct/Progress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/ImportExport/Struct/Progress.php -------------------------------------------------------------------------------- /Content/LandingPage/LandingPageEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/LandingPage/LandingPageEntity.php -------------------------------------------------------------------------------- /Content/LandingPage/LandingPageEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/LandingPage/LandingPageEvents.php -------------------------------------------------------------------------------- /Content/Mail/MailException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Mail/MailException.php -------------------------------------------------------------------------------- /Content/Mail/Message/SendMailHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Mail/Message/SendMailHandler.php -------------------------------------------------------------------------------- /Content/Mail/Message/SendMailMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Mail/Message/SendMailMessage.php -------------------------------------------------------------------------------- /Content/Mail/Service/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Mail/Service/Mail.php -------------------------------------------------------------------------------- /Content/Mail/Service/MailFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Mail/Service/MailFactory.php -------------------------------------------------------------------------------- /Content/Mail/Service/MailSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Mail/Service/MailSender.php -------------------------------------------------------------------------------- /Content/Mail/Service/MailService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Mail/Service/MailService.php -------------------------------------------------------------------------------- /Content/Mail/Service/SendMailTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Mail/Service/SendMailTemplate.php -------------------------------------------------------------------------------- /Content/MailTemplate/MailTemplateTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/MailTemplate/MailTemplateTypes.php -------------------------------------------------------------------------------- /Content/Media/Cms/DefaultMediaResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/Cms/DefaultMediaResolver.php -------------------------------------------------------------------------------- /Content/Media/Core/Params/UrlParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/Core/Params/UrlParams.php -------------------------------------------------------------------------------- /Content/Media/Event/MediaIndexerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/Event/MediaIndexerEvent.php -------------------------------------------------------------------------------- /Content/Media/Event/MediaUploadedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/Event/MediaUploadedEvent.php -------------------------------------------------------------------------------- /Content/Media/File/FileFetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/File/FileFetcher.php -------------------------------------------------------------------------------- /Content/Media/File/FileInfoHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/File/FileInfoHelper.php -------------------------------------------------------------------------------- /Content/Media/File/FileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/File/FileLoader.php -------------------------------------------------------------------------------- /Content/Media/File/FileNameProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/File/FileNameProvider.php -------------------------------------------------------------------------------- /Content/Media/File/FileNameValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/File/FileNameValidator.php -------------------------------------------------------------------------------- /Content/Media/File/FileSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/File/FileSaver.php -------------------------------------------------------------------------------- /Content/Media/File/FileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/File/FileService.php -------------------------------------------------------------------------------- /Content/Media/File/FileUrlValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/File/FileUrlValidator.php -------------------------------------------------------------------------------- /Content/Media/File/MediaFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/File/MediaFile.php -------------------------------------------------------------------------------- /Content/Media/MediaCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaCollection.php -------------------------------------------------------------------------------- /Content/Media/MediaDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaDefinition.php -------------------------------------------------------------------------------- /Content/Media/MediaEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaEntity.php -------------------------------------------------------------------------------- /Content/Media/MediaEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaEvents.php -------------------------------------------------------------------------------- /Content/Media/MediaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaException.php -------------------------------------------------------------------------------- /Content/Media/MediaFolderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaFolderService.php -------------------------------------------------------------------------------- /Content/Media/MediaHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaHydrator.php -------------------------------------------------------------------------------- /Content/Media/MediaService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaService.php -------------------------------------------------------------------------------- /Content/Media/MediaType/AudioType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaType/AudioType.php -------------------------------------------------------------------------------- /Content/Media/MediaType/BinaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaType/BinaryType.php -------------------------------------------------------------------------------- /Content/Media/MediaType/DocumentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaType/DocumentType.php -------------------------------------------------------------------------------- /Content/Media/MediaType/ImageType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaType/ImageType.php -------------------------------------------------------------------------------- /Content/Media/MediaType/MediaType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaType/MediaType.php -------------------------------------------------------------------------------- /Content/Media/MediaType/VideoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/MediaType/VideoType.php -------------------------------------------------------------------------------- /Content/Media/Metadata/MetadataLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/Metadata/MetadataLoader.php -------------------------------------------------------------------------------- /Content/Media/SalesChannel/MediaRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/SalesChannel/MediaRoute.php -------------------------------------------------------------------------------- /Content/Media/UnusedMediaPurger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Media/UnusedMediaPurger.php -------------------------------------------------------------------------------- /Content/Newsletter/NewsletterEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Newsletter/NewsletterEvents.php -------------------------------------------------------------------------------- /Content/Newsletter/NewsletterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Newsletter/NewsletterException.php -------------------------------------------------------------------------------- /Content/Product/AbstractIsNewDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/AbstractIsNewDetector.php -------------------------------------------------------------------------------- /Content/Product/Cart/ProductGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/Cart/ProductGateway.php -------------------------------------------------------------------------------- /Content/Product/IsNewDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/IsNewDetector.php -------------------------------------------------------------------------------- /Content/Product/ProductCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/ProductCollection.php -------------------------------------------------------------------------------- /Content/Product/ProductDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/ProductDefinition.php -------------------------------------------------------------------------------- /Content/Product/ProductEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/ProductEntity.php -------------------------------------------------------------------------------- /Content/Product/ProductEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/ProductEvents.php -------------------------------------------------------------------------------- /Content/Product/ProductException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/ProductException.php -------------------------------------------------------------------------------- /Content/Product/ProductHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/ProductHydrator.php -------------------------------------------------------------------------------- /Content/Product/PropertyGroupSorter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/PropertyGroupSorter.php -------------------------------------------------------------------------------- /Content/Product/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/State.php -------------------------------------------------------------------------------- /Content/Product/Stock/StockAlteration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/Stock/StockAlteration.php -------------------------------------------------------------------------------- /Content/Product/Stock/StockData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/Stock/StockData.php -------------------------------------------------------------------------------- /Content/Product/Stock/StockLoadRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/Stock/StockLoadRequest.php -------------------------------------------------------------------------------- /Content/Product/Stock/StockStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Product/Stock/StockStorage.php -------------------------------------------------------------------------------- /Content/ProductExport/Error/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/ProductExport/Error/Error.php -------------------------------------------------------------------------------- /Content/Property/PropertyEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Property/PropertyEvents.php -------------------------------------------------------------------------------- /Content/Property/PropertyGroupEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Property/PropertyGroupEntity.php -------------------------------------------------------------------------------- /Content/Property/PropertyGroupHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Property/PropertyGroupHydrator.php -------------------------------------------------------------------------------- /Content/Resources/config/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Resources/config/routes.xml -------------------------------------------------------------------------------- /Content/Resources/config/routes_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Resources/config/routes_test.xml -------------------------------------------------------------------------------- /Content/Rule/Event/RuleIndexerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Rule/Event/RuleIndexerEvent.php -------------------------------------------------------------------------------- /Content/Rule/RuleCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Rule/RuleCollection.php -------------------------------------------------------------------------------- /Content/Rule/RuleDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Rule/RuleDefinition.php -------------------------------------------------------------------------------- /Content/Rule/RuleEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Rule/RuleEntity.php -------------------------------------------------------------------------------- /Content/Rule/RuleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Rule/RuleEvents.php -------------------------------------------------------------------------------- /Content/Rule/RuleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Rule/RuleException.php -------------------------------------------------------------------------------- /Content/Rule/RuleValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Rule/RuleValidator.php -------------------------------------------------------------------------------- /Content/Seo/AbstractSeoResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/AbstractSeoResolver.php -------------------------------------------------------------------------------- /Content/Seo/Api/SeoActionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/Api/SeoActionController.php -------------------------------------------------------------------------------- /Content/Seo/ConfiguredSeoUrlRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/ConfiguredSeoUrlRoute.php -------------------------------------------------------------------------------- /Content/Seo/EmptyPathInfoResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/EmptyPathInfoResolver.php -------------------------------------------------------------------------------- /Content/Seo/Event/SeoEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/Event/SeoEvents.php -------------------------------------------------------------------------------- /Content/Seo/Event/SeoUrlUpdateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/Event/SeoUrlUpdateEvent.php -------------------------------------------------------------------------------- /Content/Seo/Hreflang/HreflangStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/Hreflang/HreflangStruct.php -------------------------------------------------------------------------------- /Content/Seo/HreflangLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/HreflangLoader.php -------------------------------------------------------------------------------- /Content/Seo/HreflangLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/HreflangLoaderInterface.php -------------------------------------------------------------------------------- /Content/Seo/HreflangLoaderParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/HreflangLoaderParameter.php -------------------------------------------------------------------------------- /Content/Seo/SalesChannel/SeoUrlRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/SalesChannel/SeoUrlRoute.php -------------------------------------------------------------------------------- /Content/Seo/SeoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/SeoException.php -------------------------------------------------------------------------------- /Content/Seo/SeoResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/SeoResolver.php -------------------------------------------------------------------------------- /Content/Seo/SeoUrl/SeoUrlCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/SeoUrl/SeoUrlCollection.php -------------------------------------------------------------------------------- /Content/Seo/SeoUrl/SeoUrlDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/SeoUrl/SeoUrlDefinition.php -------------------------------------------------------------------------------- /Content/Seo/SeoUrl/SeoUrlEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/SeoUrl/SeoUrlEntity.php -------------------------------------------------------------------------------- /Content/Seo/SeoUrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/SeoUrlGenerator.php -------------------------------------------------------------------------------- /Content/Seo/SeoUrlPersister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/SeoUrlPersister.php -------------------------------------------------------------------------------- /Content/Seo/SeoUrlPlaceholderHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/SeoUrlPlaceholderHandler.php -------------------------------------------------------------------------------- /Content/Seo/SeoUrlRoute/SeoUrlMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/SeoUrlRoute/SeoUrlMapping.php -------------------------------------------------------------------------------- /Content/Seo/SeoUrlTwigFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/SeoUrlTwigFactory.php -------------------------------------------------------------------------------- /Content/Seo/SeoUrlUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Seo/SeoUrlUpdater.php -------------------------------------------------------------------------------- /Content/Sitemap/ConfigHandler/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Sitemap/ConfigHandler/File.php -------------------------------------------------------------------------------- /Content/Sitemap/Service/ConfigHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Sitemap/Service/ConfigHandler.php -------------------------------------------------------------------------------- /Content/Sitemap/Service/SitemapHandle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Sitemap/Service/SitemapHandle.php -------------------------------------------------------------------------------- /Content/Sitemap/Service/SitemapLister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Sitemap/Service/SitemapLister.php -------------------------------------------------------------------------------- /Content/Sitemap/SitemapException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Sitemap/SitemapException.php -------------------------------------------------------------------------------- /Content/Sitemap/Struct/Sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Sitemap/Struct/Sitemap.php -------------------------------------------------------------------------------- /Content/Sitemap/Struct/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Sitemap/Struct/Url.php -------------------------------------------------------------------------------- /Content/Sitemap/Struct/UrlResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Sitemap/Struct/UrlResult.php -------------------------------------------------------------------------------- /Content/Test/Category/CategoryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Test/Category/CategoryBuilder.php -------------------------------------------------------------------------------- /Content/Test/Cms/LayoutBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Test/Cms/LayoutBuilder.php -------------------------------------------------------------------------------- /Content/Test/Flow/OrderActionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Test/Flow/OrderActionTrait.php -------------------------------------------------------------------------------- /Content/Test/Media/MediaFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Test/Media/MediaFixtures.php -------------------------------------------------------------------------------- /Content/Test/Product/ProductBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Test/Product/ProductBuilder.php -------------------------------------------------------------------------------- /Content/Test/TestNavigationSeoUrlRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Test/TestNavigationSeoUrlRoute.php -------------------------------------------------------------------------------- /Content/Test/TestProductSeoUrlRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Content/Test/TestProductSeoUrlRoute.php -------------------------------------------------------------------------------- /Defaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Defaults.php -------------------------------------------------------------------------------- /DevOps/DependencyInjection/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/DependencyInjection/services.xml -------------------------------------------------------------------------------- /DevOps/DevOps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/DevOps.php -------------------------------------------------------------------------------- /DevOps/Docs/App/DocsAppEventCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/Docs/App/DocsAppEventCommand.php -------------------------------------------------------------------------------- /DevOps/Docs/App/HookableEventDoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/Docs/App/HookableEventDoc.php -------------------------------------------------------------------------------- /DevOps/Docs/ArrayWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/Docs/ArrayWriter.php -------------------------------------------------------------------------------- /DevOps/Docs/DocsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/Docs/DocsException.php -------------------------------------------------------------------------------- /DevOps/Environment/EnvironmentHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/Environment/EnvironmentHelper.php -------------------------------------------------------------------------------- /DevOps/StaticAnalyze/PHPStan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/StaticAnalyze/PHPStan/README.md -------------------------------------------------------------------------------- /DevOps/StaticAnalyze/PHPStan/common.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/StaticAnalyze/PHPStan/common.neon -------------------------------------------------------------------------------- /DevOps/StaticAnalyze/PHPStan/rules.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/StaticAnalyze/PHPStan/rules.neon -------------------------------------------------------------------------------- /DevOps/StaticAnalyze/phpstan-bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/StaticAnalyze/phpstan-bootstrap.php -------------------------------------------------------------------------------- /DevOps/Test/AnnotationTagTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/Test/AnnotationTagTester.php -------------------------------------------------------------------------------- /DevOps/Test/Command/stubs/unit-test.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/DevOps/Test/Command/stubs/unit-test.stub -------------------------------------------------------------------------------- /Framework/Adapter/AdapterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Adapter/AdapterException.php -------------------------------------------------------------------------------- /Framework/Adapter/Cache/CacheClearer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Adapter/Cache/CacheClearer.php -------------------------------------------------------------------------------- /Framework/Adapter/Cache/Http/CacheKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Adapter/Cache/Http/CacheKey.php -------------------------------------------------------------------------------- /Framework/Adapter/Database/Mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Adapter/Database/Mysql.php -------------------------------------------------------------------------------- /Framework/Adapter/Kernel/EsiDecoration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Adapter/Kernel/EsiDecoration.php -------------------------------------------------------------------------------- /Framework/Adapter/Kernel/HttpKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Adapter/Kernel/HttpKernel.php -------------------------------------------------------------------------------- /Framework/Adapter/Kernel/KernelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Adapter/Kernel/KernelFactory.php -------------------------------------------------------------------------------- /Framework/Adapter/Twig/Node/ReturnNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Adapter/Twig/Node/ReturnNode.php -------------------------------------------------------------------------------- /Framework/Adapter/Twig/Node/SwInclude.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Adapter/Twig/Node/SwInclude.php -------------------------------------------------------------------------------- /Framework/Adapter/Twig/SwTwigFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Adapter/Twig/SwTwigFunction.php -------------------------------------------------------------------------------- /Framework/Adapter/Twig/TemplateFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Adapter/Twig/TemplateFinder.php -------------------------------------------------------------------------------- /Framework/Adapter/Twig/TwigEnvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Adapter/Twig/TwigEnvironment.php -------------------------------------------------------------------------------- /Framework/Api/Acl/AclCriteriaValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Acl/AclCriteriaValidator.php -------------------------------------------------------------------------------- /Framework/Api/Acl/AclWriteValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Acl/AclWriteValidator.php -------------------------------------------------------------------------------- /Framework/Api/Acl/Role/AclRoleEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Acl/Role/AclRoleEntity.php -------------------------------------------------------------------------------- /Framework/Api/Acl/Role/AclRoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Acl/Role/AclRoleEvents.php -------------------------------------------------------------------------------- /Framework/Api/ApiDefinition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/ApiDefinition/README.md -------------------------------------------------------------------------------- /Framework/Api/ApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/ApiException.php -------------------------------------------------------------------------------- /Framework/Api/Context/AdminApiSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Context/AdminApiSource.php -------------------------------------------------------------------------------- /Framework/Api/Context/ContextSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Context/ContextSource.php -------------------------------------------------------------------------------- /Framework/Api/Context/ShopApiSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Context/ShopApiSource.php -------------------------------------------------------------------------------- /Framework/Api/Context/SystemSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Context/SystemSource.php -------------------------------------------------------------------------------- /Framework/Api/Controller/AclController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Controller/AclController.php -------------------------------------------------------------------------------- /Framework/Api/Controller/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Controller/ApiController.php -------------------------------------------------------------------------------- /Framework/Api/OAuth/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/OAuth/AccessToken.php -------------------------------------------------------------------------------- /Framework/Api/OAuth/Client/ApiClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/OAuth/Client/ApiClient.php -------------------------------------------------------------------------------- /Framework/Api/OAuth/ClientRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/OAuth/ClientRepository.php -------------------------------------------------------------------------------- /Framework/Api/OAuth/FakeCryptKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/OAuth/FakeCryptKey.php -------------------------------------------------------------------------------- /Framework/Api/OAuth/RefreshToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/OAuth/RefreshToken.php -------------------------------------------------------------------------------- /Framework/Api/OAuth/Scope/AdminScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/OAuth/Scope/AdminScope.php -------------------------------------------------------------------------------- /Framework/Api/OAuth/Scope/WriteScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/OAuth/Scope/WriteScope.php -------------------------------------------------------------------------------- /Framework/Api/OAuth/ScopeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/OAuth/ScopeRepository.php -------------------------------------------------------------------------------- /Framework/Api/OAuth/User/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/OAuth/User/User.php -------------------------------------------------------------------------------- /Framework/Api/OAuth/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/OAuth/UserRepository.php -------------------------------------------------------------------------------- /Framework/Api/Response/JsonApiResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Response/JsonApiResponse.php -------------------------------------------------------------------------------- /Framework/Api/Route/ApiRouteLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Route/ApiRouteLoader.php -------------------------------------------------------------------------------- /Framework/Api/Route/RouteInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Route/RouteInfo.php -------------------------------------------------------------------------------- /Framework/Api/Serializer/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Serializer/Record.php -------------------------------------------------------------------------------- /Framework/Api/Sync/AbstractFkResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Sync/AbstractFkResolver.php -------------------------------------------------------------------------------- /Framework/Api/Sync/FkReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Sync/FkReference.php -------------------------------------------------------------------------------- /Framework/Api/Sync/SyncBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Sync/SyncBehavior.php -------------------------------------------------------------------------------- /Framework/Api/Sync/SyncFkResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Sync/SyncFkResolver.php -------------------------------------------------------------------------------- /Framework/Api/Sync/SyncOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Sync/SyncOperation.php -------------------------------------------------------------------------------- /Framework/Api/Sync/SyncResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Sync/SyncResult.php -------------------------------------------------------------------------------- /Framework/Api/Sync/SyncService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Sync/SyncService.php -------------------------------------------------------------------------------- /Framework/Api/Util/AccessKeyHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Api/Util/AccessKeyHelper.php -------------------------------------------------------------------------------- /Framework/App/ActionButton/AppAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/ActionButton/AppAction.php -------------------------------------------------------------------------------- /Framework/App/ActionButton/Executor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/ActionButton/Executor.php -------------------------------------------------------------------------------- /Framework/App/ActiveAppsLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/ActiveAppsLoader.php -------------------------------------------------------------------------------- /Framework/App/Api/AppActionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Api/AppActionController.php -------------------------------------------------------------------------------- /Framework/App/Api/AppCmsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Api/AppCmsController.php -------------------------------------------------------------------------------- /Framework/App/Api/AppJWTGenerateRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Api/AppJWTGenerateRoute.php -------------------------------------------------------------------------------- /Framework/App/Api/ShopIdController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Api/ShopIdController.php -------------------------------------------------------------------------------- /Framework/App/AppArchiveValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/AppArchiveValidator.php -------------------------------------------------------------------------------- /Framework/App/AppCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/AppCollection.php -------------------------------------------------------------------------------- /Framework/App/AppDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/AppDefinition.php -------------------------------------------------------------------------------- /Framework/App/AppDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/AppDownloader.php -------------------------------------------------------------------------------- /Framework/App/AppEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/AppEntity.php -------------------------------------------------------------------------------- /Framework/App/AppEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/AppEvents.php -------------------------------------------------------------------------------- /Framework/App/AppException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/AppException.php -------------------------------------------------------------------------------- /Framework/App/AppExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/AppExtractor.php -------------------------------------------------------------------------------- /Framework/App/AppLocaleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/AppLocaleProvider.php -------------------------------------------------------------------------------- /Framework/App/AppService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/AppService.php -------------------------------------------------------------------------------- /Framework/App/AppStateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/AppStateService.php -------------------------------------------------------------------------------- /Framework/App/Cms/BlockTemplateLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Cms/BlockTemplateLoader.php -------------------------------------------------------------------------------- /Framework/App/Cms/CmsExtensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Cms/CmsExtensions.php -------------------------------------------------------------------------------- /Framework/App/Cms/Schema/cms-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Cms/Schema/cms-1.0.xsd -------------------------------------------------------------------------------- /Framework/App/Cms/Xml/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Cms/Xml/Block.php -------------------------------------------------------------------------------- /Framework/App/Cms/Xml/Blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Cms/Xml/Blocks.php -------------------------------------------------------------------------------- /Framework/App/Cms/Xml/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Cms/Xml/Config.php -------------------------------------------------------------------------------- /Framework/App/Cms/Xml/DefaultConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Cms/Xml/DefaultConfig.php -------------------------------------------------------------------------------- /Framework/App/Cms/Xml/Slot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Cms/Xml/Slot.php -------------------------------------------------------------------------------- /Framework/App/Command/AppListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Command/AppListCommand.php -------------------------------------------------------------------------------- /Framework/App/Command/AppPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Command/AppPrinter.php -------------------------------------------------------------------------------- /Framework/App/Command/CreateAppCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Command/CreateAppCommand.php -------------------------------------------------------------------------------- /Framework/App/Event/AppActivatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Event/AppActivatedEvent.php -------------------------------------------------------------------------------- /Framework/App/Event/AppChangedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Event/AppChangedEvent.php -------------------------------------------------------------------------------- /Framework/App/Event/AppDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Event/AppDeletedEvent.php -------------------------------------------------------------------------------- /Framework/App/Event/AppFlowActionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Event/AppFlowActionEvent.php -------------------------------------------------------------------------------- /Framework/App/Event/AppInstalledEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Event/AppInstalledEvent.php -------------------------------------------------------------------------------- /Framework/App/Event/AppUpdatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Event/AppUpdatedEvent.php -------------------------------------------------------------------------------- /Framework/App/Event/CustomAppEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Event/CustomAppEvent.php -------------------------------------------------------------------------------- /Framework/App/Flow/Action/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Flow/Action/Action.php -------------------------------------------------------------------------------- /Framework/App/Flow/Action/Xml/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Flow/Action/Xml/Action.php -------------------------------------------------------------------------------- /Framework/App/Flow/Action/Xml/Actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Flow/Action/Xml/Actions.php -------------------------------------------------------------------------------- /Framework/App/Flow/Action/Xml/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Flow/Action/Xml/Config.php -------------------------------------------------------------------------------- /Framework/App/Flow/Action/Xml/Headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Flow/Action/Xml/Headers.php -------------------------------------------------------------------------------- /Framework/App/Flow/Action/Xml/Metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Flow/Action/Xml/Metadata.php -------------------------------------------------------------------------------- /Framework/App/Flow/Event/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Flow/Event/Event.php -------------------------------------------------------------------------------- /Framework/App/Flow/Schema/flow-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Flow/Schema/flow-1.0.xsd -------------------------------------------------------------------------------- /Framework/App/Hmac/QuerySigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Hmac/QuerySigner.php -------------------------------------------------------------------------------- /Framework/App/Hmac/RequestSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Hmac/RequestSigner.php -------------------------------------------------------------------------------- /Framework/App/Lifecycle/AppLifecycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Lifecycle/AppLifecycle.php -------------------------------------------------------------------------------- /Framework/App/Lifecycle/AppLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Lifecycle/AppLoader.php -------------------------------------------------------------------------------- /Framework/App/Manifest/Manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Manifest/Manifest.php -------------------------------------------------------------------------------- /Framework/App/Manifest/ManifestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Manifest/ManifestFactory.php -------------------------------------------------------------------------------- /Framework/App/Manifest/ModuleLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Manifest/ModuleLoader.php -------------------------------------------------------------------------------- /Framework/App/Manifest/Xml/Setup/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Manifest/Xml/Setup/Setup.php -------------------------------------------------------------------------------- /Framework/App/Manifest/Xml/Tax/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Manifest/Xml/Tax/Tax.php -------------------------------------------------------------------------------- /Framework/App/Manifest/Xml/XmlElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Manifest/Xml/XmlElement.php -------------------------------------------------------------------------------- /Framework/App/Manifest/XmlParserUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Manifest/XmlParserUtils.php -------------------------------------------------------------------------------- /Framework/App/Payload/AppPayloadStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Payload/AppPayloadStruct.php -------------------------------------------------------------------------------- /Framework/App/Payload/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Payload/Source.php -------------------------------------------------------------------------------- /Framework/App/Privileges/Privileges.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Privileges/Privileges.php -------------------------------------------------------------------------------- /Framework/App/Privileges/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Privileges/Utils.php -------------------------------------------------------------------------------- /Framework/App/ShopId/Fingerprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/ShopId/Fingerprint.php -------------------------------------------------------------------------------- /Framework/App/ShopId/FingerprintMatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/ShopId/FingerprintMatch.php -------------------------------------------------------------------------------- /Framework/App/ShopId/ShopId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/ShopId/ShopId.php -------------------------------------------------------------------------------- /Framework/App/ShopId/ShopIdProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/ShopId/ShopIdProvider.php -------------------------------------------------------------------------------- /Framework/App/Source/Local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Source/Local.php -------------------------------------------------------------------------------- /Framework/App/Source/RemoteZip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Source/RemoteZip.php -------------------------------------------------------------------------------- /Framework/App/Source/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Source/Source.php -------------------------------------------------------------------------------- /Framework/App/Source/SourceResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Source/SourceResolver.php -------------------------------------------------------------------------------- /Framework/App/Template/TemplateEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Template/TemplateEntity.php -------------------------------------------------------------------------------- /Framework/App/Template/TemplateLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Template/TemplateLoader.php -------------------------------------------------------------------------------- /Framework/App/Validation/Error/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/App/Validation/Error/Error.php -------------------------------------------------------------------------------- /Framework/Bundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Bundle.php -------------------------------------------------------------------------------- /Framework/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Context.php -------------------------------------------------------------------------------- /Framework/DataAbstractionLayer/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DataAbstractionLayer/Entity.php -------------------------------------------------------------------------------- /Framework/Demodata/DemodataContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Demodata/DemodataContext.php -------------------------------------------------------------------------------- /Framework/Demodata/DemodataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Demodata/DemodataException.php -------------------------------------------------------------------------------- /Framework/Demodata/DemodataRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Demodata/DemodataRequest.php -------------------------------------------------------------------------------- /Framework/Demodata/DemodataService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Demodata/DemodataService.php -------------------------------------------------------------------------------- /Framework/Demodata/Faker/Commerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Demodata/Faker/Commerce.php -------------------------------------------------------------------------------- /Framework/DependencyInjection/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/acl.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/api.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/app.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/app_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/app_test.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/cache.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/demodata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/demodata.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/event.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/flag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/flag.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/health.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/health.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/hydrator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/hydrator.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/language.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/plugin.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/rule.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/script.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/script.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/seo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/seo.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/seo_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/seo_test.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/services.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/sso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/sso.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/store.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/store.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/update.xml -------------------------------------------------------------------------------- /Framework/DependencyInjection/webhook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/DependencyInjection/webhook.xml -------------------------------------------------------------------------------- /Framework/Event/BusinessEventCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/BusinessEventCollector.php -------------------------------------------------------------------------------- /Framework/Event/BusinessEventRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/BusinessEventRegistry.php -------------------------------------------------------------------------------- /Framework/Event/BusinessEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/BusinessEvents.php -------------------------------------------------------------------------------- /Framework/Event/CustomerAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/CustomerAware.php -------------------------------------------------------------------------------- /Framework/Event/CustomerGroupAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/CustomerGroupAware.php -------------------------------------------------------------------------------- /Framework/Event/DataMappingEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/DataMappingEvent.php -------------------------------------------------------------------------------- /Framework/Event/EventData/ArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/EventData/ArrayType.php -------------------------------------------------------------------------------- /Framework/Event/EventData/EntityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/EventData/EntityType.php -------------------------------------------------------------------------------- /Framework/Event/EventData/ObjectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/EventData/ObjectType.php -------------------------------------------------------------------------------- /Framework/Event/FlowEventAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/FlowEventAware.php -------------------------------------------------------------------------------- /Framework/Event/FlowLogEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/FlowLogEvent.php -------------------------------------------------------------------------------- /Framework/Event/GenericEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/GenericEvent.php -------------------------------------------------------------------------------- /Framework/Event/IsFlowEventAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/IsFlowEventAware.php -------------------------------------------------------------------------------- /Framework/Event/LanguageAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/LanguageAware.php -------------------------------------------------------------------------------- /Framework/Event/MailAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/MailAware.php -------------------------------------------------------------------------------- /Framework/Event/NestedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/NestedEvent.php -------------------------------------------------------------------------------- /Framework/Event/NestedEventCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/NestedEventCollection.php -------------------------------------------------------------------------------- /Framework/Event/NestedEventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/NestedEventDispatcher.php -------------------------------------------------------------------------------- /Framework/Event/OrderAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/OrderAware.php -------------------------------------------------------------------------------- /Framework/Event/ProductAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/ProductAware.php -------------------------------------------------------------------------------- /Framework/Event/ProgressAdvancedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/ProgressAdvancedEvent.php -------------------------------------------------------------------------------- /Framework/Event/ProgressFinishedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/ProgressFinishedEvent.php -------------------------------------------------------------------------------- /Framework/Event/ProgressStartedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/ProgressStartedEvent.php -------------------------------------------------------------------------------- /Framework/Event/SalesChannelAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/SalesChannelAware.php -------------------------------------------------------------------------------- /Framework/Event/ShopwareEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/ShopwareEvent.php -------------------------------------------------------------------------------- /Framework/Event/UserAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Event/UserAware.php -------------------------------------------------------------------------------- /Framework/Extensions/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Extensions/Extension.php -------------------------------------------------------------------------------- /Framework/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Feature.php -------------------------------------------------------------------------------- /Framework/Feature/FeatureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Feature/FeatureException.php -------------------------------------------------------------------------------- /Framework/Feature/FeatureFlagRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Feature/FeatureFlagRegistry.php -------------------------------------------------------------------------------- /Framework/Framework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Framework.php -------------------------------------------------------------------------------- /Framework/FrameworkException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/FrameworkException.php -------------------------------------------------------------------------------- /Framework/Gateway/GatewayException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Gateway/GatewayException.php -------------------------------------------------------------------------------- /Framework/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/HttpException.php -------------------------------------------------------------------------------- /Framework/Increment/ArrayIncrementer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Increment/ArrayIncrementer.php -------------------------------------------------------------------------------- /Framework/Increment/IncrementException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Increment/IncrementException.php -------------------------------------------------------------------------------- /Framework/Increment/MySQLIncrementer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Increment/MySQLIncrementer.php -------------------------------------------------------------------------------- /Framework/Increment/RedisIncrementer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Increment/RedisIncrementer.php -------------------------------------------------------------------------------- /Framework/JWT/JWTDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/JWT/JWTDecoder.php -------------------------------------------------------------------------------- /Framework/JWT/JWTException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/JWT/JWTException.php -------------------------------------------------------------------------------- /Framework/JWT/Struct/JWKCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/JWT/Struct/JWKCollection.php -------------------------------------------------------------------------------- /Framework/JWT/Struct/JWKStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/JWT/Struct/JWKStruct.php -------------------------------------------------------------------------------- /Framework/JWT/Struct/JWTStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/JWT/Struct/JWTStruct.php -------------------------------------------------------------------------------- /Framework/Log/ExceptionLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Log/ExceptionLogger.php -------------------------------------------------------------------------------- /Framework/Log/LogAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Log/LogAware.php -------------------------------------------------------------------------------- /Framework/Log/LogEntryCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Log/LogEntryCollection.php -------------------------------------------------------------------------------- /Framework/Log/LogEntryDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Log/LogEntryDefinition.php -------------------------------------------------------------------------------- /Framework/Log/LogEntryEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Log/LogEntryEntity.php -------------------------------------------------------------------------------- /Framework/Log/LoggingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Log/LoggingService.php -------------------------------------------------------------------------------- /Framework/Log/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Log/Package.php -------------------------------------------------------------------------------- /Framework/Log/PackageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Log/PackageService.php -------------------------------------------------------------------------------- /Framework/MessageQueue/Stats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/MessageQueue/Stats/README.md -------------------------------------------------------------------------------- /Framework/Migration/AddColumnTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Migration/AddColumnTrait.php -------------------------------------------------------------------------------- /Framework/Migration/ColumnExistsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Migration/ColumnExistsTrait.php -------------------------------------------------------------------------------- /Framework/Migration/IndexerQueuer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Migration/IndexerQueuer.php -------------------------------------------------------------------------------- /Framework/Migration/MigrationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Migration/MigrationException.php -------------------------------------------------------------------------------- /Framework/Migration/MigrationRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Migration/MigrationRuntime.php -------------------------------------------------------------------------------- /Framework/Migration/MigrationSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Migration/MigrationSource.php -------------------------------------------------------------------------------- /Framework/Migration/MigrationStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Migration/MigrationStep.php -------------------------------------------------------------------------------- /Framework/Migration/Trigger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Migration/Trigger.php -------------------------------------------------------------------------------- /Framework/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin.php -------------------------------------------------------------------------------- /Framework/Plugin/BundleConfigGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/BundleConfigGenerator.php -------------------------------------------------------------------------------- /Framework/Plugin/Command/MakerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/Command/MakerCommand.php -------------------------------------------------------------------------------- /Framework/Plugin/Composer/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/Composer/Factory.php -------------------------------------------------------------------------------- /Framework/Plugin/Context/UpdateContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/Context/UpdateContext.php -------------------------------------------------------------------------------- /Framework/Plugin/ExtensionExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/ExtensionExtractor.php -------------------------------------------------------------------------------- /Framework/Plugin/PluginCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/PluginCollection.php -------------------------------------------------------------------------------- /Framework/Plugin/PluginDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/PluginDefinition.php -------------------------------------------------------------------------------- /Framework/Plugin/PluginEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/PluginEntity.php -------------------------------------------------------------------------------- /Framework/Plugin/PluginEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/PluginEvents.php -------------------------------------------------------------------------------- /Framework/Plugin/PluginException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/PluginException.php -------------------------------------------------------------------------------- /Framework/Plugin/PluginService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/PluginService.php -------------------------------------------------------------------------------- /Framework/Plugin/PluginZipDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/PluginZipDetector.php -------------------------------------------------------------------------------- /Framework/Plugin/Util/AssetService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/Util/AssetService.php -------------------------------------------------------------------------------- /Framework/Plugin/Util/PluginFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/Util/PluginFinder.php -------------------------------------------------------------------------------- /Framework/Plugin/Util/PluginIdProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/Util/PluginIdProvider.php -------------------------------------------------------------------------------- /Framework/Plugin/Util/VersionSanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/Util/VersionSanitizer.php -------------------------------------------------------------------------------- /Framework/Plugin/Util/ZipUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Plugin/Util/ZipUtils.php -------------------------------------------------------------------------------- /Framework/RateLimiter/RateLimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/RateLimiter/RateLimiter.php -------------------------------------------------------------------------------- /Framework/Resources/config/packages/test/monolog.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Framework/Resources/config/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Resources/config/routes.xml -------------------------------------------------------------------------------- /Framework/Resources/config/routes_dev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Resources/config/routes_dev.xml -------------------------------------------------------------------------------- /Framework/Resources/views/snippets/symbol/comma.html.twig: -------------------------------------------------------------------------------- 1 | {# @internal #}, 2 | -------------------------------------------------------------------------------- /Framework/Resources/views/snippets/symbol/dash.html.twig: -------------------------------------------------------------------------------- 1 | {# @internal #}- 2 | -------------------------------------------------------------------------------- /Framework/Resources/views/snippets/symbol/tilde.html.twig: -------------------------------------------------------------------------------- 1 | {# @internal #}~ 2 | -------------------------------------------------------------------------------- /Framework/Routing/AbstractRouteScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Routing/AbstractRouteScope.php -------------------------------------------------------------------------------- /Framework/Routing/ApiRouteScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Routing/ApiRouteScope.php -------------------------------------------------------------------------------- /Framework/Routing/CoreSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Routing/CoreSubscriber.php -------------------------------------------------------------------------------- /Framework/Routing/Facade/RequestFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Routing/Facade/RequestFacade.php -------------------------------------------------------------------------------- /Framework/Routing/QueryDataBagResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Routing/QueryDataBagResolver.php -------------------------------------------------------------------------------- /Framework/Routing/RequestTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Routing/RequestTransformer.php -------------------------------------------------------------------------------- /Framework/Routing/RouteEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Routing/RouteEventSubscriber.php -------------------------------------------------------------------------------- /Framework/Routing/RouteScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Routing/RouteScope.php -------------------------------------------------------------------------------- /Framework/Routing/RouteScopeCheckTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Routing/RouteScopeCheckTrait.php -------------------------------------------------------------------------------- /Framework/Routing/RouteScopeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Routing/RouteScopeListener.php -------------------------------------------------------------------------------- /Framework/Routing/RouteScopeRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Routing/RouteScopeRegistry.php -------------------------------------------------------------------------------- /Framework/Routing/RoutingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Routing/RoutingException.php -------------------------------------------------------------------------------- /Framework/Rule/Container/AndRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/Container/AndRule.php -------------------------------------------------------------------------------- /Framework/Rule/Container/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/Container/Container.php -------------------------------------------------------------------------------- /Framework/Rule/Container/FilterRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/Container/FilterRule.php -------------------------------------------------------------------------------- /Framework/Rule/Container/NotRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/Container/NotRule.php -------------------------------------------------------------------------------- /Framework/Rule/Container/OrRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/Container/OrRule.php -------------------------------------------------------------------------------- /Framework/Rule/Container/XorRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/Container/XorRule.php -------------------------------------------------------------------------------- /Framework/Rule/CustomFieldRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/CustomFieldRule.php -------------------------------------------------------------------------------- /Framework/Rule/DateRangeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/DateRangeRule.php -------------------------------------------------------------------------------- /Framework/Rule/FlowRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/FlowRule.php -------------------------------------------------------------------------------- /Framework/Rule/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/Rule.php -------------------------------------------------------------------------------- /Framework/Rule/RuleCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/RuleCollection.php -------------------------------------------------------------------------------- /Framework/Rule/RuleComparison.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/RuleComparison.php -------------------------------------------------------------------------------- /Framework/Rule/RuleConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/RuleConfig.php -------------------------------------------------------------------------------- /Framework/Rule/RuleConstraints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/RuleConstraints.php -------------------------------------------------------------------------------- /Framework/Rule/RuleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/RuleException.php -------------------------------------------------------------------------------- /Framework/Rule/RuleIdMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/RuleIdMatcher.php -------------------------------------------------------------------------------- /Framework/Rule/RuleScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/RuleScope.php -------------------------------------------------------------------------------- /Framework/Rule/SalesChannelRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/SalesChannelRule.php -------------------------------------------------------------------------------- /Framework/Rule/ScriptRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/ScriptRule.php -------------------------------------------------------------------------------- /Framework/Rule/SimpleRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/SimpleRule.php -------------------------------------------------------------------------------- /Framework/Rule/TimeRangeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/TimeRangeRule.php -------------------------------------------------------------------------------- /Framework/Rule/WeekdayRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Rule/WeekdayRule.php -------------------------------------------------------------------------------- /Framework/Script/Api/AclFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/Api/AclFacade.php -------------------------------------------------------------------------------- /Framework/Script/Api/ApiHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/Api/ApiHook.php -------------------------------------------------------------------------------- /Framework/Script/Api/ResponseHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/Api/ResponseHook.php -------------------------------------------------------------------------------- /Framework/Script/Api/ScriptApiRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/Api/ScriptApiRoute.php -------------------------------------------------------------------------------- /Framework/Script/Api/ScriptResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/Api/ScriptResponse.php -------------------------------------------------------------------------------- /Framework/Script/Api/StoreApiHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/Api/StoreApiHook.php -------------------------------------------------------------------------------- /Framework/Script/AppContextCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/AppContextCreator.php -------------------------------------------------------------------------------- /Framework/Script/Debugging/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/Debugging/Debug.php -------------------------------------------------------------------------------- /Framework/Script/Execution/Hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/Execution/Hook.php -------------------------------------------------------------------------------- /Framework/Script/Execution/Script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/Execution/Script.php -------------------------------------------------------------------------------- /Framework/Script/Facade/ArrayFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/Facade/ArrayFacade.php -------------------------------------------------------------------------------- /Framework/Script/ScriptCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/ScriptCollection.php -------------------------------------------------------------------------------- /Framework/Script/ScriptDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/ScriptDefinition.php -------------------------------------------------------------------------------- /Framework/Script/ScriptEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/ScriptEntity.php -------------------------------------------------------------------------------- /Framework/Script/ScriptException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/ScriptException.php -------------------------------------------------------------------------------- /Framework/Script/ServiceStubs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Script/ServiceStubs.php -------------------------------------------------------------------------------- /Framework/ShopwareException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/ShopwareException.php -------------------------------------------------------------------------------- /Framework/ShopwareHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/ShopwareHttpException.php -------------------------------------------------------------------------------- /Framework/Sso/Config/LoginConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Sso/Config/LoginConfig.php -------------------------------------------------------------------------------- /Framework/Sso/Config/TemplateData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Sso/Config/TemplateData.php -------------------------------------------------------------------------------- /Framework/Sso/LoginResponseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Sso/LoginResponseService.php -------------------------------------------------------------------------------- /Framework/Sso/ShopwareGrantType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Sso/ShopwareGrantType.php -------------------------------------------------------------------------------- /Framework/Sso/SsoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Sso/SsoException.php -------------------------------------------------------------------------------- /Framework/Sso/SsoService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Sso/SsoService.php -------------------------------------------------------------------------------- /Framework/Sso/StateValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Sso/StateValidator.php -------------------------------------------------------------------------------- /Framework/Sso/TokenTimeToLive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Sso/TokenTimeToLive.php -------------------------------------------------------------------------------- /Framework/Sso/UserService/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Sso/UserService/Token.php -------------------------------------------------------------------------------- /Framework/Store/Api/StoreController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Store/Api/StoreController.php -------------------------------------------------------------------------------- /Framework/Store/InAppPurchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Store/InAppPurchase.php -------------------------------------------------------------------------------- /Framework/Store/Search/FilterStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Store/Search/FilterStruct.php -------------------------------------------------------------------------------- /Framework/Store/StoreException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Store/StoreException.php -------------------------------------------------------------------------------- /Framework/Store/Struct/BinaryStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Store/Struct/BinaryStruct.php -------------------------------------------------------------------------------- /Framework/Store/Struct/CartStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Store/Struct/CartStruct.php -------------------------------------------------------------------------------- /Framework/Store/Struct/FaqStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Store/Struct/FaqStruct.php -------------------------------------------------------------------------------- /Framework/Store/Struct/FrwState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Store/Struct/FrwState.php -------------------------------------------------------------------------------- /Framework/Store/Struct/ImageStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Store/Struct/ImageStruct.php -------------------------------------------------------------------------------- /Framework/Store/Struct/ReviewStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Store/Struct/ReviewStruct.php -------------------------------------------------------------------------------- /Framework/Store/Struct/StoreStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Store/Struct/StoreStruct.php -------------------------------------------------------------------------------- /Framework/Store/public.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Store/public.key -------------------------------------------------------------------------------- /Framework/Struct/ArrayEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Struct/ArrayEntity.php -------------------------------------------------------------------------------- /Framework/Struct/ArrayStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Struct/ArrayStruct.php -------------------------------------------------------------------------------- /Framework/Struct/AssignArrayTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Struct/AssignArrayTrait.php -------------------------------------------------------------------------------- /Framework/Struct/CloneTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Struct/CloneTrait.php -------------------------------------------------------------------------------- /Framework/Struct/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Struct/Collection.php -------------------------------------------------------------------------------- /Framework/Struct/ContextTokenStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Struct/ContextTokenStruct.php -------------------------------------------------------------------------------- /Framework/Struct/CreateFromTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Struct/CreateFromTrait.php -------------------------------------------------------------------------------- /Framework/Struct/ExtendableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Struct/ExtendableTrait.php -------------------------------------------------------------------------------- /Framework/Struct/StateAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Struct/StateAwareTrait.php -------------------------------------------------------------------------------- /Framework/Struct/Struct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Struct/Struct.php -------------------------------------------------------------------------------- /Framework/Struct/StructCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Struct/StructCollection.php -------------------------------------------------------------------------------- /Framework/SystemCheck/BaseCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/SystemCheck/BaseCheck.php -------------------------------------------------------------------------------- /Framework/SystemCheck/Check/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/SystemCheck/Check/Result.php -------------------------------------------------------------------------------- /Framework/SystemCheck/Check/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/SystemCheck/Check/Status.php -------------------------------------------------------------------------------- /Framework/SystemCheck/SystemChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/SystemCheck/SystemChecker.php -------------------------------------------------------------------------------- /Framework/Telemetry/Metrics/Meter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Telemetry/Metrics/Meter.php -------------------------------------------------------------------------------- /Framework/Telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/core/HEAD/Framework/Telemetry/README.md -------------------------------------------------------------------------------- /Framework/Test/Migration/_test_migrations_invalid_namespace/Migration1WithoutANamespace.php: -------------------------------------------------------------------------------- 1 |