├── .ci ├── .env.dist ├── Makefile ├── README.md ├── compose.e2e-current.yml ├── compose.e2e-legacy.shopware-legacy.yml ├── compose.e2e-legacy.yml └── compose.sh ├── .eslintignore ├── .githooks ├── install_hooks.sh └── pre-commit ├── .github ├── config.php ├── dependabot.yml └── workflows │ ├── e2e-tests-legacy.yml │ ├── e2e-tests.yml │ ├── javascript-code-analysis.yml │ ├── php-code-analysis-legacy.yml │ ├── php-code-analysis.yml │ ├── php-unit-tests-shopware-5-7.yml │ ├── php-unit-tests-shopware-legacy.yml │ └── tests-launcher.yml ├── .gitignore ├── .gitlab-ci.yml ├── .make.env ├── .php-cs-fixer.php ├── .psh.yml.dist ├── .sw-zip-blacklist ├── .template-block-ignore-list ├── Bundle └── AccountBundle │ └── Service │ └── Validator │ └── AddressValidatorDecorator.php ├── Components ├── Backend │ ├── CaptureService.php │ ├── CredentialsService.php │ ├── PaymentDetailsService.php │ ├── ShopRegistrationService.php │ └── VoidService.php ├── ButtonLocaleService.php ├── DependencyInjection │ ├── AbstractFactoryCompilerPass.php │ ├── OrderHandlerCompilerPass.php │ ├── OrderToArrayHandlerCompilerPass.php │ ├── PaymentSourceHandlerCompilerPass.php │ ├── PaymentSourceValueHandlerCompilerPass.php │ ├── RiskManagementValidatorCompilerPass.php │ ├── RiskManagementValueCompilerPass.php │ └── WebhookFactoryCompilerPass.php ├── DependencyProvider.php ├── Document │ ├── InvoiceDocumentHandler.php │ └── PuiInvoiceDocumentHandler.php ├── ErrorCodes.php ├── Exception │ ├── BirthdateNotValidException.php │ ├── InvalidOrderException.php │ ├── OrderNotFoundException.php │ ├── PayPalApiException.php │ ├── PhoneNumberCountryCodeNotValidException.php │ ├── PhoneNumberNationalNumberNotValidException.php │ ├── PuiValidationException.php │ └── TimeoutInfoException.php ├── ExceptionHandlerServiceInterface.php ├── NumberRangeIncrementerDecorator.php ├── OrderNumberService.php ├── OrderProvider.php ├── PayPalOrderParameter │ ├── PayPalOrderParameter.php │ ├── PayPalOrderParameterFacade.php │ ├── PayPalOrderParameterFacadeInterface.php │ └── ShopwareOrderData.php ├── PaymentBuilderInterface.php ├── PaymentBuilderParameters.php ├── PaymentMethodProvider.php ├── PaymentMethodProviderInterface.php ├── PaymentStatus.php ├── Services │ ├── Common │ │ ├── CartHelper.php │ │ ├── CartPersister.php │ │ ├── CustomerHelper.php │ │ ├── PriceFormatter.php │ │ ├── ReturnUrlHelper.php │ │ └── UrlBuilder.php │ ├── DispatchValidation.php │ ├── ErrorMessages │ │ ├── ErrorMessage.php │ │ └── ErrorMessageTransporter.php │ ├── ExceptionHandlerService.php │ ├── ExpressCheckout │ │ ├── CustomerNameResult.php │ │ ├── CustomerService.php │ │ └── PatchOrderService.php │ ├── Legacy │ │ └── LegacyService.php │ ├── LoggerService.php │ ├── Onboarding │ │ └── IsCapableResult.php │ ├── OnboardingStatusService.php │ ├── OrderBuilder │ │ ├── OrderFactory.php │ │ ├── OrderHandler │ │ │ ├── AbstractOrderHandler.php │ │ │ ├── ApmOrderHandler.php │ │ │ ├── ClassicOrderHandler.php │ │ │ ├── OrderBuilderHandlerInterface.php │ │ │ └── PuiOrderHandler.php │ │ └── PaymentSource │ │ │ ├── AbstractPaymentSourceHandler.php │ │ │ ├── PaymentSourceFactory.php │ │ │ ├── PaymentSourceHandler │ │ │ ├── AdvancedCreditDebitCardPaymentSourceHandler.php │ │ │ ├── BancontactPaymentSourceHandler.php │ │ │ ├── BlikPaymentSourceHandler.php │ │ │ ├── EpsPaymentSourceHandler.php │ │ │ ├── GiropayPaymentSourceHandler.php │ │ │ ├── IdealPaymentSourceHandler.php │ │ │ ├── MultiBancoPaymentSourceHandler.php │ │ │ ├── MyBankPaymentSourceHandler.php │ │ │ ├── P24PaymentSourceHandler.php │ │ │ ├── PayPalPaymentSourceHandler.php │ │ │ ├── PuiPaymentSourceHandler.php │ │ │ ├── SofortPaymentSourceHandler.php │ │ │ └── TrustlyPaymentSourceHandler.php │ │ │ ├── PaymentSourceValueFactory.php │ │ │ └── PaymentSourceValueHandler │ │ │ ├── AbstractPaymentSourceValueHandler.php │ │ │ ├── AdvancedCreditDebitCardPaymentSourceValueHandler.php │ │ │ ├── BancontactPaymentSourceValueHandler.php │ │ │ ├── BlikPaymentSourceValueHandler.php │ │ │ ├── EpsPaymentSourceValueHandler.php │ │ │ ├── GiropayPaymentSourceValueHandler.php │ │ │ ├── IdealPaymentSourceValueHandler.php │ │ │ ├── MultibancoPaymentSourceValueHandler.php │ │ │ ├── MyBankPaymentSourceValueHandler.php │ │ │ ├── P24PaymentSourceValueHandler.php │ │ │ ├── PayPalPaymentSourceValueHandler.php │ │ │ ├── PuiPaymentSourceValueHandler.php │ │ │ ├── SofortPaymentSourceValueHandler.php │ │ │ └── TrustlyPaymentSourceValueHandler.php │ ├── OrderDataService.php │ ├── OrderDataServiceResults │ │ └── OrderAndPaymentStatusResult.php │ ├── OrderPropertyHelper.php │ ├── PayPalOrder │ │ ├── AmountProvider.php │ │ └── ItemListProvider.php │ ├── PayUponInvoiceInstructionService.php │ ├── PaymentAddressService.php │ ├── PaymentBuilderService.php │ ├── PaymentControllerHelper.php │ ├── PaymentStatusService.php │ ├── PaymentTokenExtractor.php │ ├── PhoneNumberService.php │ ├── Plus │ │ ├── PaymentInstructionService.php │ │ └── PlusPaymentBuilderService.php │ ├── RequestIdService.php │ ├── RiskManagement │ │ ├── Apm │ │ │ ├── Validator │ │ │ │ ├── BancontactValidatorHandler.php │ │ │ │ ├── BlikValidatorHandler.php │ │ │ │ ├── EpsValidatorHandler.php │ │ │ │ ├── GiropayValidatorHandler.php │ │ │ │ ├── IdealValidatorHandler.php │ │ │ │ ├── MultibancoValidatorHandler.php │ │ │ │ ├── MyBankValidatorHandler.php │ │ │ │ ├── P24ValidatorHandler.php │ │ │ │ ├── SofortValidatorHandler.php │ │ │ │ └── TrustlyValidatorHandler.php │ │ │ ├── ValidatorFactory.php │ │ │ ├── ValidatorHandlerInterface.php │ │ │ ├── Value │ │ │ │ └── DefaultValueHandler.php │ │ │ ├── ValueFactory.php │ │ │ └── ValueHandlerInterface.php │ │ ├── Attribute.php │ │ ├── Context.php │ │ ├── EsdProductChecker.php │ │ ├── EsdProductCheckerInterface.php │ │ ├── RiskManagement.php │ │ ├── RiskManagementHelper.php │ │ ├── RiskManagementHelperInterface.php │ │ └── RiskManagementInterface.php │ ├── SettingsService.php │ ├── ThreeDSecureResultChecker │ │ ├── Exception │ │ │ ├── ThreeDSecureAuthorizationCanceledException.php │ │ │ ├── ThreeDSecureAuthorizationFailedException.php │ │ │ ├── ThreeDSecureAuthorizationRejectedException.php │ │ │ ├── ThreeDSecureCardHasNoAuthorization.php │ │ │ └── ThreeDSecureExceptionDescription.php │ │ ├── ThreeDSecureResultChecker.php │ │ └── ThreeDSecureResultStatus.php │ ├── TimeoutRefundService.php │ ├── TransactionHistoryBuilderService.php │ └── Validation │ │ ├── BasketIdWhitelist.php │ │ ├── BasketValidatorInterface.php │ │ ├── RedirectDataBuilder.php │ │ ├── RedirectDataBuilderFactory.php │ │ ├── RedirectDataBuilderFactoryInterface.php │ │ └── SimpleBasketValidator.php ├── ShippingProvider.php ├── TransactionReport │ ├── ReportResult.php │ └── TransactionReport.php └── Uuid.php ├── Controllers ├── Backend │ ├── PaypalUnified.php │ ├── PaypalUnifiedAdvancedCreditDebitCardSettings.php │ ├── PaypalUnifiedExpressSettings.php │ ├── PaypalUnifiedGeneralSettings.php │ ├── PaypalUnifiedInstallmentsSettings.php │ ├── PaypalUnifiedPayUponInvoiceSettings.php │ ├── PaypalUnifiedPlusSettings.php │ ├── PaypalUnifiedSettings.php │ └── PaypalUnifiedV2.php ├── Frontend │ ├── AbstractPaypalPaymentController.php │ ├── AbstractPaypalPaymentControllerResults │ │ └── DeterminedStatus.php │ ├── Exceptions │ │ ├── AuthorizationDeniedException.php │ │ ├── AuthorizationPendingException.php │ │ ├── CaptureDeclinedException.php │ │ ├── CaptureFailedException.php │ │ ├── CapturePendingException.php │ │ ├── EmptyCartException.php │ │ ├── InstrumentDeclinedException.php │ │ ├── InvalidAddressException.php │ │ ├── InvalidBillingAddressException.php │ │ ├── InvalidShippingAddressException.php │ │ ├── NoOrderToProceedException.php │ │ ├── PayerActionRequiredException.php │ │ ├── PendingException.php │ │ ├── RequireRestartException.php │ │ └── UnexpectedStatusException.php │ ├── PaypalUnified.php │ ├── PaypalUnifiedApm.php │ ├── PaypalUnifiedV2.php │ ├── PaypalUnifiedV2AdvancedCreditDebitCard.php │ ├── PaypalUnifiedV2ExpressCheckout.php │ ├── PaypalUnifiedV2PayUponInvoice.php │ └── PaypalUnifiedWebhook.php └── Widgets │ ├── PayPalUnifiedOrderNumber.php │ ├── PaypalUnifiedV2AdvancedCreditDebitCard.php │ ├── PaypalUnifiedV2ExpressCheckout.php │ ├── PaypalUnifiedV2PayUponInvoice.php │ └── PaypalUnifiedV2SmartPaymentButtons.php ├── LICENSE ├── Makefile ├── Models ├── PaymentInstruction.php └── Settings │ ├── AdvancedCreditDebitCard.php │ ├── ExpressCheckout.php │ ├── General.php │ ├── Installments.php │ ├── PayUponInvoice.php │ └── Plus.php ├── PayPalBundle ├── BaseURL.php ├── Components │ ├── LoggerServiceInterface.php │ ├── Patches │ │ ├── PatchInterface.php │ │ ├── PayerInfoPatch.php │ │ ├── PaymentAddressPatch.php │ │ ├── PaymentAmountPatch.php │ │ ├── PaymentItemsPatch.php │ │ └── PaymentOrderNumberPatch.php │ ├── SettingsServiceInterface.php │ ├── SettingsTable.php │ └── Webhook │ │ ├── WebhookEventTypes.php │ │ ├── WebhookException.php │ │ └── WebhookHandler.php ├── PartnerAttributionId.php ├── PaymentIntent.php ├── PaymentType.php ├── ProcessingInstruction.php ├── RequestType.php ├── RequestUri.php ├── Resources │ ├── AuthorizationResource.php │ ├── CaptureResource.php │ ├── CredentialsResource.php │ ├── MerchantIntegrationsResource.php │ ├── OrderResource.php │ ├── PaymentResource.php │ ├── RefundResource.php │ ├── SaleResource.php │ ├── ShippingResource.php │ ├── TokenResource.php │ └── WebhookResource.php ├── Services │ ├── ClientService.php │ ├── EUStates.php │ ├── NonceService.php │ ├── TokenService.php │ └── WebhookService.php ├── Structs │ ├── Common │ │ ├── Address.php │ │ └── Link.php │ ├── ErrorResponse.php │ ├── ErrorResponse │ │ └── Detail.php │ ├── GenericErrorResponse.php │ ├── OAuthCredentials.php │ ├── Payment.php │ ├── Payment │ │ ├── ApplicationContext.php │ │ ├── Capture.php │ │ ├── CaptureRefund.php │ │ ├── Instruction │ │ │ ├── Amount.php │ │ │ ├── PaymentInstructionType.php │ │ │ └── RecipientBanking.php │ │ ├── Payer.php │ │ ├── Payer │ │ │ └── PayerInfo.php │ │ ├── PaymentInstruction.php │ │ ├── RedirectUrls.php │ │ ├── RelatedResources │ │ │ ├── Authorization.php │ │ │ ├── Capture.php │ │ │ ├── Order.php │ │ │ ├── Refund.php │ │ │ ├── RelatedResource.php │ │ │ ├── ResourceType.php │ │ │ ├── Sale.php │ │ │ ├── State.php │ │ │ ├── StateReasonCode.php │ │ │ └── TransactionFee.php │ │ ├── SaleRefund.php │ │ ├── Transactions.php │ │ └── Transactions │ │ │ ├── Amount.php │ │ │ ├── Amount │ │ │ └── Details.php │ │ │ ├── ItemList.php │ │ │ ├── ItemList │ │ │ ├── Item.php │ │ │ └── ShippingAddress.php │ │ │ ├── RelatedResources.php │ │ │ └── ShipmentDetails.php │ ├── Shipping.php │ ├── Shipping │ │ └── Tracker.php │ ├── Token.php │ └── Webhook.php └── V2 │ ├── Api │ ├── ClientToken.php │ ├── Common │ │ ├── Address.php │ │ ├── Link.php │ │ └── Money.php │ ├── Order.php │ ├── Order │ │ ├── ApplicationContext.php │ │ ├── Link.php │ │ ├── Payer.php │ │ ├── Payer │ │ │ ├── Address.php │ │ │ ├── Name.php │ │ │ ├── Phone.php │ │ │ └── Phone │ │ │ │ └── PhoneNumber.php │ │ ├── PaymentSource.php │ │ ├── PaymentSource │ │ │ ├── AbstractApmPaymentSource.php │ │ │ ├── AbstractPaymentSource.php │ │ │ ├── Bancontact.php │ │ │ ├── Blik.php │ │ │ ├── Card.php │ │ │ ├── Card │ │ │ │ ├── AuthenticationResult.php │ │ │ │ └── AuthenticationResult │ │ │ │ │ └── ThreeDSecure.php │ │ │ ├── Eps.php │ │ │ ├── ExperienceContext.php │ │ │ ├── Giropay.php │ │ │ ├── Ideal.php │ │ │ ├── Multibanco.php │ │ │ ├── Mybank.php │ │ │ ├── P24.php │ │ │ ├── PayPal.php │ │ │ ├── PayUponInvoice.php │ │ │ ├── PayUponInvoice │ │ │ │ └── DepositBankDetails.php │ │ │ ├── Sofort.php │ │ │ └── Trustly.php │ │ ├── PurchaseUnit.php │ │ └── PurchaseUnit │ │ │ ├── AbstractAmount.php │ │ │ ├── Amount.php │ │ │ ├── Amount │ │ │ ├── Breakdown.php │ │ │ └── Breakdown │ │ │ │ ├── Discount.php │ │ │ │ ├── Handling.php │ │ │ │ ├── Insurance.php │ │ │ │ ├── ItemTotal.php │ │ │ │ ├── Shipping.php │ │ │ │ ├── ShippingDiscount.php │ │ │ │ └── TaxTotal.php │ │ │ ├── Item.php │ │ │ ├── Item │ │ │ ├── Tax.php │ │ │ └── UnitAmount.php │ │ │ ├── Payee.php │ │ │ ├── Payee │ │ │ └── DisplayData.php │ │ │ ├── Payments.php │ │ │ ├── Payments │ │ │ ├── Authorization.php │ │ │ ├── Authorization │ │ │ │ ├── Amount.php │ │ │ │ ├── Link.php │ │ │ │ └── SellerProtection.php │ │ │ ├── Capture.php │ │ │ ├── Capture │ │ │ │ ├── Amount.php │ │ │ │ ├── Link.php │ │ │ │ ├── SellerProtection.php │ │ │ │ ├── SellerReceivableBreakdown.php │ │ │ │ └── SellerReceivableBreakdown │ │ │ │ │ ├── GrossAmount.php │ │ │ │ │ ├── NetAmount.php │ │ │ │ │ └── PaypalFee.php │ │ │ ├── Payment.php │ │ │ ├── Refund.php │ │ │ └── Refund │ │ │ │ ├── Amount.php │ │ │ │ ├── Link.php │ │ │ │ ├── SellerPayableBreakdown.php │ │ │ │ └── SellerPayableBreakdown │ │ │ │ ├── GrossAmount.php │ │ │ │ ├── NetAmount.php │ │ │ │ ├── PaypalFee.php │ │ │ │ └── TotalRefundedAmount.php │ │ │ ├── Shipping.php │ │ │ └── Shipping │ │ │ ├── Address.php │ │ │ └── Name.php │ ├── Patch.php │ ├── Patches │ │ ├── OrderAddInvoiceIdPatch.php │ │ ├── OrderPurchaseUnitPatch.php │ │ ├── OrderPurchaseUnitShippingAddressPatch.php │ │ └── OrderPurchaseUnitShippingNamePatch.php │ ├── Webhook.php │ └── Webhook │ │ └── Link.php │ ├── PayPalApiStruct.php │ ├── PaymentIntentV2.php │ ├── PaymentStatusV2.php │ ├── RequestUriV2.php │ └── Resource │ ├── AuthorizationResource.php │ ├── CaptureResource.php │ ├── ClientTokenResource.php │ ├── OrderArrayFactory │ ├── Handler │ │ ├── ApmDefaultHandler.php │ │ ├── ApmExtendedHandler.php │ │ └── DefaultHandler.php │ ├── OrderArrayFactory.php │ └── OrderToArrayHandlerInterface.php │ ├── OrderResource.php │ └── RefundResource.php ├── PhpStan ├── CustomRules │ └── CrudServiceTest.php └── phpstan-autoload.php ├── README.md ├── Resources ├── cronjob.xml ├── menu.xml ├── services.xml ├── services │ ├── backend.xml │ ├── components.xml │ ├── components │ │ ├── apm_risk_management.xml │ │ ├── common.xml │ │ ├── error_messages.xml │ │ ├── express_checkout.xml │ │ ├── legacy.xml │ │ ├── order_array_factory.xml │ │ ├── order_builder.xml │ │ ├── payment_source.xml │ │ ├── payment_source_value.xml │ │ ├── paypal_order.xml │ │ ├── plus.xml │ │ └── validation.xml │ ├── decorators.xml │ ├── paypal_bundle.xml │ ├── resources.xml │ ├── resources_v2.xml │ ├── subscribers.xml │ └── webhook.xml ├── snippets │ ├── backend │ │ ├── attribute_columns.ini │ │ ├── document │ │ │ └── paypal_config.ini │ │ ├── order │ │ │ └── detail │ │ │ │ └── overview.ini │ │ ├── payment │ │ │ └── controller │ │ │ │ └── payment.ini │ │ ├── paypal_unified │ │ │ ├── capture │ │ │ │ └── authorize.ini │ │ │ ├── controller │ │ │ │ ├── history.ini │ │ │ │ └── main.ini │ │ │ ├── overview │ │ │ │ ├── extensions │ │ │ │ │ └── filter.ini │ │ │ │ ├── grid.ini │ │ │ │ └── window.ini │ │ │ ├── refund │ │ │ │ ├── capture_window.ini │ │ │ │ └── sale_window.ini │ │ │ ├── sidebar │ │ │ │ ├── history.ini │ │ │ │ ├── history │ │ │ │ │ ├── details.ini │ │ │ │ │ ├── grid.ini │ │ │ │ │ └── refund_button.ini │ │ │ │ ├── order.ini │ │ │ │ ├── order │ │ │ │ │ ├── customer.ini │ │ │ │ │ └── details.ini │ │ │ │ ├── payment.ini │ │ │ │ ├── payment │ │ │ │ │ ├── address.ini │ │ │ │ │ ├── cart.ini │ │ │ │ │ ├── customer.ini │ │ │ │ │ ├── details.ini │ │ │ │ │ └── invoice.ini │ │ │ │ └── toolbar.ini │ │ │ └── v2 │ │ │ │ └── main.ini │ │ └── paypal_unified_settings │ │ │ ├── landing_page_select.ini │ │ │ ├── main.ini │ │ │ ├── mixin │ │ │ └── onboarding_helper.ini │ │ │ ├── model │ │ │ └── plus.ini │ │ │ ├── store │ │ │ ├── ec_button_style_color.ini │ │ │ ├── ec_button_style_shape.ini │ │ │ ├── ec_button_style_size.ini │ │ │ ├── installments_presentment.ini │ │ │ ├── landing_page_type.ini │ │ │ ├── log_level.ini │ │ │ └── payment_intent.ini │ │ │ ├── tabs │ │ │ ├── advanced_credit_debit_card.ini │ │ │ ├── express_checkout.ini │ │ │ ├── general.ini │ │ │ ├── installments.ini │ │ │ ├── payment_intent.ini │ │ │ ├── paypal_pay_upon_invoice.ini │ │ │ └── paypal_plus.ini │ │ │ ├── toolbar.ini │ │ │ ├── top_toolbar.ini │ │ │ └── window.ini │ ├── document │ │ └── rate_pay.ini │ └── frontend │ │ └── paypal_unified │ │ ├── address │ │ └── error-messsages.ini │ │ ├── checkout │ │ ├── confirm.ini │ │ ├── finish.ini │ │ ├── item_list.ini │ │ └── messages.ini │ │ ├── cookie_consent │ │ └── cookie.ini │ │ ├── index │ │ └── sidebar.ini │ │ ├── order │ │ └── order.ini │ │ ├── register │ │ └── error-messages.ini │ │ └── smart_payment_buttons │ │ └── payment.ini └── views │ ├── backend │ ├── _resources │ │ └── img │ │ │ └── paypal-unified.png │ ├── config │ │ └── view │ │ │ └── form │ │ │ └── document_paypal_unified.js │ ├── order │ │ └── detail │ │ │ └── overview_paypal_extension.js │ ├── payment │ │ └── controller │ │ │ └── payment_paypal_unified.js │ ├── paypal_unified │ │ ├── api_v2_types.js │ │ ├── app.js │ │ ├── controller │ │ │ ├── api.js │ │ │ ├── api_v2.js │ │ │ ├── history.js │ │ │ └── main.js │ │ ├── menu_icon.tpl │ │ ├── model │ │ │ ├── authorization.js │ │ │ ├── capture.js │ │ │ ├── order.js │ │ │ ├── payment.js │ │ │ ├── payment_amount.js │ │ │ ├── payment_amount_details.js │ │ │ ├── payment_cart_item.js │ │ │ ├── payment_customer.js │ │ │ ├── payment_customer_shipping.js │ │ │ ├── payment_sale.js │ │ │ ├── refund.js │ │ │ ├── sale.js │ │ │ ├── shopware_order.js │ │ │ └── transaction_fee.js │ │ ├── store │ │ │ ├── order.js │ │ │ ├── payment_cart.js │ │ │ └── payment_sale.js │ │ └── view │ │ │ ├── capture │ │ │ └── authorize.js │ │ │ ├── overview │ │ │ ├── abstract_sidebar.js │ │ │ ├── extensions │ │ │ │ └── filter.js │ │ │ ├── grid.js │ │ │ ├── sidebar.js │ │ │ ├── sidebar_v2.js │ │ │ └── window.js │ │ │ ├── refund │ │ │ ├── capture_window.js │ │ │ └── sale_window.js │ │ │ ├── sidebar │ │ │ ├── history.js │ │ │ ├── history │ │ │ │ ├── details.js │ │ │ │ ├── grid.js │ │ │ │ └── refund_button.js │ │ │ ├── order.js │ │ │ ├── order │ │ │ │ ├── customer.js │ │ │ │ └── details.js │ │ │ ├── payment.js │ │ │ ├── payment │ │ │ │ ├── address.js │ │ │ │ ├── cart.js │ │ │ │ ├── customer.js │ │ │ │ ├── details.js │ │ │ │ └── invoice.js │ │ │ └── toolbar.js │ │ │ └── sidebar_v2 │ │ │ ├── capture_refund │ │ │ └── toolbar.js │ │ │ ├── fields │ │ │ ├── date_time_field_formatter.js │ │ │ └── field_factory.js │ │ │ ├── order │ │ │ ├── fieldset │ │ │ │ ├── abstract_fieldset.js │ │ │ │ ├── payment_history │ │ │ │ │ ├── payment_details.js │ │ │ │ │ └── refund_button.js │ │ │ │ └── paypal_transactions │ │ │ │ │ ├── invoice_amount.js │ │ │ │ │ ├── payer_details.js │ │ │ │ │ ├── payment_details.js │ │ │ │ │ └── shipping_address.js │ │ │ └── grid │ │ │ │ ├── payment_history_grid.js │ │ │ │ └── product_item_grid.js │ │ │ ├── payment_types │ │ │ └── payment_types.js │ │ │ ├── tabs │ │ │ ├── abstract_tab.js │ │ │ ├── order.js │ │ │ ├── payment_history.js │ │ │ └── paypal_transactions.js │ │ │ └── windows │ │ │ ├── abstract_window.js │ │ │ ├── capture_window.js │ │ │ ├── refund_authorize_window.js │ │ │ └── refund_capture_window.js │ └── paypal_unified_settings │ │ ├── app.js │ │ ├── controller │ │ └── main.js │ │ ├── mixin │ │ └── onboarding_helper.js │ │ ├── model │ │ ├── advanced_credit_debit_card.js │ │ ├── express_checkout.js │ │ ├── general.js │ │ ├── installments.js │ │ ├── pay_upon_invoice.js │ │ └── plus.js │ │ ├── store │ │ ├── ec_button_style_color.js │ │ ├── ec_button_style_shape.js │ │ ├── ec_button_style_size.js │ │ └── landing_page_type.js │ │ └── view │ │ ├── landing_page_select.js │ │ ├── settings_loader.js │ │ ├── tabs │ │ ├── abstract_pui_acdc_tab.js │ │ ├── advanced_credit_debit_card.js │ │ ├── express_checkout.js │ │ ├── general.js │ │ ├── installments.js │ │ ├── pay_upon_invoice.js │ │ └── plus.js │ │ ├── toolbar.js │ │ ├── top_toolbar.js │ │ └── window.js │ └── frontend │ ├── _public │ └── src │ │ ├── img │ │ ├── installments_header.png │ │ ├── sepa_payment.png │ │ ├── sidebar-paypal-generic.png │ │ ├── sidebar-paypal-installments.png │ │ └── unified-pui-arrow.png │ │ ├── js │ │ ├── jquery.button-config.js │ │ ├── jquery.button-restore-ordernumber-to-pool.js │ │ ├── jquery.cancel-payment-function.js │ │ ├── jquery.create-url-function.js │ │ ├── jquery.create_order_function.js │ │ ├── jquery.form_validity_functions.js │ │ ├── jquery.redirect.js │ │ ├── jquery.swag-paypal-unified-fraudnet.js │ │ ├── jquery.swag-paypal-unified-sepa-eligibility.js │ │ ├── jquery.swag-paypal-unified-sepa.js │ │ ├── jquery.swag-paypal-unified.advanced-credit-debit-card-fallback.js │ │ ├── jquery.swag-paypal-unified.advanced-credit-debit-card.js │ │ ├── jquery.swag-paypal-unified.custom-shipping-payment.js │ │ ├── jquery.swag-paypal-unified.express-address-patch.js │ │ ├── jquery.swag-paypal-unified.express-checkout-button.js │ │ ├── jquery.swag-paypal-unified.express-checkout-change-cart.js │ │ ├── jquery.swag-paypal-unified.in-context-checkout.js │ │ ├── jquery.swag-paypal-unified.installments-banner.js │ │ ├── jquery.swag-paypal-unified.pay-later.js │ │ ├── jquery.swag-paypal-unified.payment-wall-confirm.js │ │ ├── jquery.swag-paypal-unified.payment-wall-shipping-payment.js │ │ ├── jquery.swag-paypal-unified.payment-wall.js │ │ ├── jquery.swag-paypal-unified.polling.js │ │ ├── jquery.swag-paypal-unified.pui-birthday-field.js │ │ ├── jquery.swag-paypal-unified.pui-phone-number-field.js │ │ └── jquery.swag-paypal-unified.smart-payment-buttons.js │ │ └── less │ │ ├── _modules │ │ ├── advanced_credit_debit_card │ │ │ └── form.less │ │ ├── express_checkout │ │ │ └── button.less │ │ ├── index │ │ │ └── sidebar.less │ │ ├── installments │ │ │ └── banner.less │ │ ├── pay_upon_invoice │ │ │ ├── birthday_field_mobile.less │ │ │ ├── extra_fields.less │ │ │ └── legal_text.less │ │ ├── plus │ │ │ └── checkout │ │ │ │ ├── finish.less │ │ │ │ ├── payment_item.less │ │ │ │ └── shipping_payment.less │ │ ├── shipping_payment │ │ │ └── error.less │ │ └── smart-payment-buttons │ │ │ └── buttons.less │ │ ├── _variables │ │ └── checkout │ │ │ └── payment_item.less │ │ ├── all.less │ │ ├── modules.less │ │ └── variables.less │ ├── account │ ├── index.tpl │ └── payment.tpl │ ├── address │ └── index.tpl │ ├── checkout │ ├── ajax_add_article.tpl │ ├── ajax_cart.tpl │ ├── cart.tpl │ ├── cart_footer.tpl │ ├── change_payment.tpl │ ├── confirm.tpl │ ├── confirm_footer.tpl │ ├── error_messages.tpl │ ├── finish.tpl │ ├── shipping_payment.tpl │ └── shipping_payment_core.tpl │ ├── detail │ └── buy.tpl │ ├── index │ ├── index.tpl │ └── sidebar.tpl │ ├── listing │ └── product-box │ │ ├── button-buy.tpl │ │ └── button-detail.tpl │ ├── paypal_unified │ ├── acdc │ │ ├── confirm_inputs.tpl │ │ └── payment_details.tpl │ ├── checkout │ │ └── error_message.tpl │ ├── express_checkout │ │ ├── button.tpl │ │ ├── confirm │ │ │ └── quantity_selection.tpl │ │ └── confirm_inputs.tpl │ ├── in_context │ │ └── button.tpl │ ├── index │ │ └── sidebar.tpl │ ├── installments │ │ └── banner │ │ │ ├── ajax_cart.tpl │ │ │ ├── cart.tpl │ │ │ ├── index.tpl │ │ │ └── product_detail.tpl │ ├── pay_later │ │ ├── button.tpl │ │ └── message.tpl │ ├── pay_upon_invoice │ │ ├── extra_field_birthday.tpl │ │ ├── extra_field_phone_number.tpl │ │ └── extra_fields.tpl │ ├── plus │ │ └── checkout │ │ │ ├── custom_shipping_payment │ │ │ ├── change_payment.tpl │ │ │ └── custom_payment_method.tpl │ │ │ ├── instructions │ │ │ ├── head.tpl │ │ │ ├── legal_message.tpl │ │ │ └── table.tpl │ │ │ ├── payment_instructions.tpl │ │ │ ├── payment_wall_premiums.tpl │ │ │ └── payment_wall_shipping_payment.tpl │ ├── sepa │ │ └── sepa_payment_button.tpl │ └── spb │ │ └── smart_payment_buttons.tpl │ └── register │ ├── login.tpl │ └── payment_fieldset.tpl ├── Setup ├── Assets │ ├── Document │ │ ├── PayPal_Unified_Instructions_Content.html │ │ ├── PayPal_Unified_Instructions_Content_Style.css │ │ ├── PayPal_Unified_Instructions_Footer.html │ │ └── PayPal_Unified_Ratepay_Instructions_Content.html │ ├── Translations.php │ ├── migration.sql │ └── tables.sql ├── ColumnService.php ├── FirstRunWizardInstaller.php ├── InstallationException.php ├── Installer.php ├── InstanceIdService.php ├── PaymentModels │ ├── PaymentInstaller.php │ ├── PaymentModelFactory.php │ └── PaymentModels │ │ ├── AbstractPaymentModel.php │ │ ├── Bancontact.php │ │ ├── Blik.php │ │ ├── Eps.php │ │ ├── Giropay.php │ │ ├── Ideal.php │ │ ├── MultiBanco.php │ │ ├── MyBank.php │ │ ├── PayLater.php │ │ ├── PayPalAdvancedCreditAndDebitCard.php │ │ ├── PayPalClassic.php │ │ ├── PayPalPayUponInvoice.php │ │ ├── Przelewy24.php │ │ ├── Sepa.php │ │ ├── Sofort.php │ │ └── Trustly.php ├── TranslationTransformer.php ├── TranslationUpdater.php ├── Uninstaller.php ├── Updater.php └── Versions │ ├── UpdateTo400.php │ ├── UpdateTo411.php │ ├── UpdateTo420.php │ ├── UpdateTo430.php │ ├── UpdateTo433.php │ ├── UpdateTo500.php │ ├── UpdateTo504.php │ ├── UpdateTo600.php │ ├── UpdateTo602.php │ ├── UpdateTo604.php │ ├── UpdateTo610.php │ ├── UpdateTo616.php │ ├── UpdateTo617.php │ └── UpdateTo618.php ├── Subscriber ├── Account.php ├── Address.php ├── AdvancedCreditDebitCard.php ├── AdvancedCreditDebitCardRiskManagement.php ├── ApmCheckoutFinish.php ├── ApmRiskManagement.php ├── Backend.php ├── Carrier.php ├── Checkout.php ├── CheckoutRequestId.php ├── CommentSubscriber.php ├── ControllerRegistration │ ├── Backend.php │ ├── Frontend.php │ └── Widgets.php ├── CookieConsent.php ├── Documents │ └── Invoice.php ├── ExpressCheckout.php ├── FraudNet.php ├── Frontend.php ├── InContext.php ├── InstallmentsBanner.php ├── Less.php ├── Order.php ├── PayLater.php ├── PayLaterMessage.php ├── PayUponInvoice.php ├── PayUponInvoiceRiskManagement.php ├── PaymentMeans.php ├── Plus.php ├── Register.php ├── RiskManagement.php ├── Sepa.php ├── SepaRiskManagement.php ├── SmartPaymentButtons.php └── TransactionReportSubscriber.php ├── SwagPaymentPayPalUnified.php ├── Tests ├── E2E │ ├── .env.dist │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── helper │ │ ├── backendHandleSaveHelper.mjs │ │ ├── backendLoginHelper.mjs │ │ ├── clearCacheHelper.mjs │ │ ├── clearPaypalSettingsHelper.mjs │ │ ├── connectDefaultShippingMethodWithPayPalHelper.mjs │ │ ├── cookieHelper.mjs │ │ ├── customerCommentHelper.mjs │ │ ├── getPayPalPaymentMethodSelector.mjs │ │ ├── loginHelper.mjs │ │ ├── mysqlFactory.mjs │ │ ├── offCanvasSettingHelper.mjs │ │ ├── payLaterSettingsHelper.mjs │ │ ├── paypalSqlHelper.mjs │ │ ├── restoreOrderNumberHelper.mjs │ │ ├── retryHelper.mjs │ │ ├── updatePlusHelper.mjs │ │ ├── updateProductNumberAddLeadingZero.mjs │ │ └── useSmartPaymentButtons.mjs │ ├── package-lock.json │ ├── package.json │ ├── playwright.config.js │ ├── setup │ │ ├── credentials.mjs │ │ ├── globalSetup.mjs │ │ ├── globalTeardown.mjs │ │ └── sql │ │ │ ├── activate_plus_settings.sql │ │ │ ├── api_access.sql │ │ │ ├── apm_fixtures.sql │ │ │ ├── buy_in_listing.sql │ │ │ ├── clear_orders_for_check_tracking.sql │ │ │ ├── connect_default_shipping_method_with_paypal.sql │ │ │ ├── deactivate_cookie_note.sql │ │ │ ├── order_for_check_tracking.sql │ │ │ ├── paypal_settings.sql │ │ │ ├── paypal_settings_use_smart_payment_buttons.sql │ │ │ ├── reset_product_number_with_leading_zero.sql │ │ │ ├── set_customer_data.sql │ │ │ ├── truncate_paypal_tables.sql │ │ │ └── update_product_number_with_leading_zero.sql │ └── test │ │ ├── backend_check_active_state_for_pui_and_acdc.spec.mjs │ │ ├── backend_check_message_merchant_id_is_wrong.spec.mjs │ │ ├── backend_deactivate_plus.spec.mjs │ │ ├── backend_sandbox.spec.mjs │ │ ├── backend_tracking_url.spec.mjs │ │ ├── credentials.mjs │ │ ├── pay_later_button_is_not_shown.spec.mjs │ │ ├── pay_later_button_is_shown.spec.mjs │ │ ├── pay_with_acdc.spec.mjs │ │ ├── pay_with_express-without-offcanvas.spec.mjs │ │ ├── pay_with_express.spec.mjs │ │ ├── pay_with_invoice.spec.mjs │ │ ├── pay_with_pay_later.spec.mjs │ │ ├── pay_with_paypal.spec.mjs │ │ ├── pay_with_sepa.spec.mjs │ │ ├── pay_with_smart_payment_buttons.spec.mjs │ │ ├── pui_should_show_error_messages.spec.mjs │ │ └── voucher_field_is_visible.spec.mjs ├── Functional │ ├── AssertLocationTrait.php │ ├── AssertStringContainsTrait.php │ ├── Bundle │ │ └── AccountBundle │ │ │ └── Service │ │ │ └── Validator │ │ │ └── AddressValidatorDecoratorTest.php │ ├── Components │ │ ├── Backend │ │ │ ├── CaptureServiceTest.php │ │ │ ├── CredentialsServiceTest.php │ │ │ ├── OrderTrait.php │ │ │ ├── PaymentDetailsServiceTest.php │ │ │ └── VoidServiceTest.php │ │ ├── DependencyProviderGetRouterTest.php │ │ ├── DependencyProviderTest.php │ │ ├── NumberRangeIncrementerDecoratorTest.php │ │ ├── OrderNumberServiceTest.php │ │ ├── OrderProviderTest.php │ │ ├── PayPalOrderParameter │ │ │ ├── PayPalOrderParameterFacadeTest.php │ │ │ └── _fixtures │ │ │ │ ├── BasketData.php │ │ │ │ └── UserData.php │ │ ├── PaymentMethodProviderTest.php │ │ ├── Services │ │ │ ├── Common │ │ │ │ └── CartHelperTest.php │ │ │ ├── ErrorMessages │ │ │ │ └── ErrorMessageTransporterTest.php │ │ │ ├── ExpressCheckout │ │ │ │ ├── CustomerServiceCreateCustomerDataTest.php │ │ │ │ ├── CustomerServiceGetSalutationTest.php │ │ │ │ └── CustomerServiceTest.php │ │ │ ├── Legacy │ │ │ │ └── LegacyServiceTest.php │ │ │ ├── LoggerServiceTest.php │ │ │ ├── Mock │ │ │ │ └── SettingsServicePaymentBuilderServiceMock.php │ │ │ ├── OnboardingStatusServiceTest.php │ │ │ ├── OrderBuilder │ │ │ │ ├── OrderFactoryTest.php │ │ │ │ └── OrderHandler │ │ │ │ │ ├── AbstractOrderHandlerCreatePurchaseUnitTest.php │ │ │ │ │ ├── AbstractOrderHandlerTest.php │ │ │ │ │ ├── AmountProviderTest.php │ │ │ │ │ ├── ApmOrderHandlerTest.php │ │ │ │ │ ├── ClassicOrderHandlerTest.php │ │ │ │ │ ├── OrderHandlerMock.php │ │ │ │ │ ├── PaymentSource │ │ │ │ │ ├── PaymentSourceHandler │ │ │ │ │ │ ├── AdvancedCreditDebitCartPaymentSourceHandlerTest.php │ │ │ │ │ │ ├── PayPalPaymentSourceHandlerTest.php │ │ │ │ │ │ └── PuiPaymentSourceHandlerTest.php │ │ │ │ │ └── PaymentSourceValueHandler │ │ │ │ │ │ ├── AbstractPaymentSourceValueHandlerTest.php │ │ │ │ │ │ ├── AdvancedCreditDebitCardPaymentSourceValueHandlerTest.php │ │ │ │ │ │ ├── PayPalPaymentSourceValueHandlerTest.php │ │ │ │ │ │ └── PuiPaymentSourceValueHandlerTest.php │ │ │ │ │ ├── PuiOrderHandlerTest.php │ │ │ │ │ └── _fixtures │ │ │ │ │ ├── b2b_basket.php │ │ │ │ │ ├── b2b_basket_sw53.php │ │ │ │ │ ├── b2b_basket_with_three_items_and_tax.php │ │ │ │ │ ├── b2b_basket_with_three_items_without_tax.php │ │ │ │ │ ├── b2b_customer.php │ │ │ │ │ ├── b2c_basket.php │ │ │ │ │ ├── b2c_basket_with_three_items_and_full_tax.php │ │ │ │ │ └── b2c_customer.php │ │ │ ├── OrderBuilderServiceTest.php │ │ │ ├── OrderDataServiceTest.php │ │ │ ├── PatchOrderServiceTest.php │ │ │ ├── PayPalOrder │ │ │ │ └── AmountProviderTest.php │ │ │ ├── PayUponInvoiceInstructionServiceTest.php │ │ │ ├── PaymentAddressServiceTest.php │ │ │ ├── PaymentBuilderServiceTest.php │ │ │ ├── PaymentInstructionServiceTest.php │ │ │ ├── PaymentStatusServiceTest.php │ │ │ ├── PhoneNumberServiceTest.php │ │ │ ├── Plus │ │ │ │ └── PlusPaymentBuilderServiceTest.php │ │ │ ├── RequestIdServiceTest.php │ │ │ ├── RiskManagement │ │ │ │ ├── Apm │ │ │ │ │ └── Validator │ │ │ │ │ │ └── SofortValidatorHandlerTest.php │ │ │ │ ├── AttributeTest.php │ │ │ │ ├── ContextTest.php │ │ │ │ ├── RiskManagementHelperTest.php │ │ │ │ ├── RiskManagementServiceTest.php │ │ │ │ └── _fixtures │ │ │ │ │ ├── risk_management_rules_attr_is.sql │ │ │ │ │ ├── risk_management_rules_attr_is_not.sql │ │ │ │ │ ├── risk_management_rules_product_in_category.sql │ │ │ │ │ └── testAttrIsNot_category_result.php │ │ │ ├── SettingsServiceTest.php │ │ │ ├── ThreeDSecureResultChecker │ │ │ │ ├── Exception │ │ │ │ │ └── ThreeDSecureExceptionDescriptionTest.php │ │ │ │ └── ThreeDSecureResultCheckerTest.php │ │ │ ├── TimeoutRefundServiceTest.php │ │ │ ├── TransactionsHistoryBuilderServiceTest.php │ │ │ ├── Validation │ │ │ │ ├── RedirectDataBuilderFactoryTest.php │ │ │ │ └── RedirectDataBuilderTest.php │ │ │ └── _fixtures │ │ │ │ ├── OrderBuilderServiceTestBasketData.php │ │ │ │ ├── OrderBuilderServiceTestUserData.php │ │ │ │ ├── PaymentFixtureAuthentication.php │ │ │ │ ├── PaymentFixtureOrder.php │ │ │ │ ├── PaymentFixtureSale.php │ │ │ │ ├── basket_restore_basket.sql │ │ │ │ ├── order_builder_service_test.sql │ │ │ │ ├── order_payment_state_test.sql │ │ │ │ ├── order_status.sql │ │ │ │ └── update_order_payment_status.sql │ │ ├── ShippingProviderTest.php │ │ ├── TransactionReport │ │ │ ├── TransactionReportTest.php │ │ │ └── _fixtures │ │ │ │ ├── orders.sql │ │ │ │ └── with_canceled_orders.sql │ │ ├── UuidTest.php │ │ └── _fixtures │ │ │ ├── order.sql │ │ │ └── shipping.sql │ ├── ContainerTrait.php │ ├── Controller │ │ ├── Backend │ │ │ ├── PaypalUnifiedSettingsTest.php │ │ │ ├── PaypalUnifiedTest.php │ │ │ ├── PaypalUnifiedV2Test.php │ │ │ └── _fixtures │ │ │ │ └── order_for_update_payment_status.sql │ │ ├── Frontend │ │ │ ├── AbstractPayPalPaymentControllerThrowsExceptionOnCreateOrderWithEmptyCartTest.php │ │ │ ├── AbstractPaypalPaymentControllerCreatePayPalOrderExpectInvalidAddressExceptionTest.php │ │ │ ├── AbstractPaypalPaymentControllerCreateShopwareOrderTest.php │ │ │ ├── AbstractPaypalPaymentControllerGetOrderIdTest.php │ │ │ ├── AbstractPaypalPaymentControllerGetPaymentTypeTest.php │ │ │ ├── AbstractPaypalPaymentControllerHandleCommentTest.php │ │ │ ├── AbstractPaypalPaymentControllerHandlePendingOrderTest.php │ │ │ ├── AbstractPaypalPaymentControllerTest.php │ │ │ ├── AbstractPaypalPaymentControllerTestCheckCaptureAuthorizationStatusTest.php │ │ │ ├── AbstractPaypalPaymentControllerTestIsPaymentCompletedTest.php │ │ │ ├── AbstractPaypalPaymentControllerUpdatePaymentStatusTest.php │ │ │ ├── CheckCaptureAuthorizationStatusCallTest.php │ │ │ ├── ControllerHandlePendingOrderTest.php │ │ │ ├── PayPalUnifiedApmCaptureTimeoutTest.php │ │ │ ├── PayPalUnifiedV2GetPayPalOrderIdFromRequestTest.php │ │ │ ├── PayPalUnifiedV2ReturnActionTest.php │ │ │ ├── PaypalUnifiedApmCatchesInvalidAddressExceptionTest.php │ │ │ ├── PaypalUnifiedApmPaymentCompletedFailedTest.php │ │ │ ├── PaypalUnifiedApmReturnActionTest.php │ │ │ ├── PaypalUnifiedReturnActionNotInContextTest.php │ │ │ ├── PaypalUnifiedReturnActionTest.php │ │ │ ├── PaypalUnifiedV2AdvancedCreditDebitCardIndexActionTest.php │ │ │ ├── PaypalUnifiedV2CaptureOrAuthorizeErrorTest.php │ │ │ ├── PaypalUnifiedV2CatchesInvalidAddressExceptionTest.php │ │ │ ├── PaypalUnifiedV2CheckForKnownResponsesWhichRequiresResetTest.php │ │ │ ├── PaypalUnifiedV2ExpressCheckoutCaptureOrAuthorizeOrderErrorTest.php │ │ │ ├── PaypalUnifiedV2ExpressCheckoutExpressCheckoutFinishActionShouldRedirectToCheckoutConfirmTest.php │ │ │ ├── PaypalUnifiedV2ExpressCheckoutExpressCheckoutFinishActionTest.php │ │ │ ├── PaypalUnifiedV2PayUponInvoiceCatchValidationExceptionsTest.php │ │ │ ├── PaypalUnifiedV2PayUponInvoiceCatchesInvalidAddressExceptionTest.php │ │ │ ├── PaypalUnifiedV2PayUponInvoiceIndexActionTest.php │ │ │ ├── PaypalUnifiedV2Test.php │ │ │ ├── PaypalUnifiedV2TestShouldUsePayLaterTest.php │ │ │ ├── _fixtures │ │ │ │ ├── SimplePayPalOrderCreator.php │ │ │ │ ├── basket.sql │ │ │ │ ├── execute_result.php │ │ │ │ ├── getBasket_result.php │ │ │ │ ├── getUser_result.php │ │ │ │ ├── get_order_id.sql │ │ │ │ ├── payment_result.php │ │ │ │ └── temporary_order.sql │ │ │ └── _mocks │ │ │ │ ├── AbstractPaypalPaymentControllerMock.php │ │ │ │ ├── PaypalUnifiedApmMock.php │ │ │ │ └── ViewMock.php │ │ └── Widgets │ │ │ ├── PayPalUnifiedOrderNumberTest.php │ │ │ ├── PaypalUnifiedV2AdvancedCreditDebitCardCaptureActionTest.php │ │ │ ├── PaypalUnifiedV2AdvancedCreditDebitCardCaptureOrAuthorizeErrorTest.php │ │ │ ├── PaypalUnifiedV2AdvancedCreditDebitCardCatchesInvalidAddressExceptionTest.php │ │ │ ├── PaypalUnifiedV2AdvancedCreditDebitCardTest.php │ │ │ ├── PaypalUnifiedV2AdvancedCreditDebitCardThreeDSecureTest.php │ │ │ ├── PaypalUnifiedV2ExpressCheckoutTest.php │ │ │ ├── PaypalUnifiedV2PayUponInvoicePollActionTest.php │ │ │ └── PaypalUnifiedV2SmartPaymentButtonsCatchesInvalidAddressExceptionTest.php │ ├── DatabaseHelperTrait.php │ ├── DatabaseTestCaseTrait.php │ ├── Models │ │ └── PayUponInvoiceTest.php │ ├── PayPalBundle │ │ └── Services │ │ │ └── WebhookServiceTest.php │ ├── PayPalUnifiedPaymentIdTrait.php │ ├── ReflectionHelperTrait.php │ ├── RequestExceptionTrait.php │ ├── ResetSessionTrait.php │ ├── ServiceDefinition │ │ └── ServiceDefinitionTest.php │ ├── SettingsHelperTrait.php │ ├── Setup │ │ ├── FirstRunWizardInstallerTest.php │ │ ├── InstallerTest.php │ │ ├── InstanceIdServiceTest.php │ │ ├── UninstallerTest.php │ │ ├── UpdaterTest.php │ │ ├── Versions │ │ │ ├── UpdateTo400Test.php │ │ │ ├── UpdateTo433Test.php │ │ │ ├── UpdateTo500Test.php │ │ │ ├── UpdateTo504Test.php │ │ │ ├── UpdateTo600Test.php │ │ │ ├── UpdateTo602Test.php │ │ │ ├── UpdateTo604Test.php │ │ │ ├── UpdateTo617Test.php │ │ │ ├── UpdateTo618Test.php │ │ │ └── _fixtures │ │ │ │ ├── create_test_data.sql │ │ │ │ ├── drop_test_tables.sql │ │ │ │ └── install_test_tables.sql │ │ └── _fixtures │ │ │ ├── orders.sql │ │ │ └── orders_invoice.sql │ ├── ShopRegistrationTrait.php │ ├── Subscriber │ │ ├── AccountTest.php │ │ ├── AdvancedCreditDebitCardSubscriberTest.php │ │ ├── AdvancedCreditDebitCartRiskManagementTest.php │ │ ├── ApmCheckoutFinishTest.php │ │ ├── BackendSubscriberTest.php │ │ ├── CarrierTest.php │ │ ├── CheckoutTest.php │ │ ├── CommentSubscriberTest.php │ │ ├── ControllerRegistration │ │ │ ├── BackendRegistrationSubscriberTest.php │ │ │ ├── FrontendRegistrationSubscriberTest.php │ │ │ └── WidgetsRegistrationSubscriberTest.php │ │ ├── CookieConsentTest.php │ │ ├── Documents │ │ │ ├── InvoiceSubscriberPuiTest.php │ │ │ ├── InvoiceSubscriberTest.php │ │ │ ├── Mock │ │ │ │ ├── HookArgsWithCorrectPaymentId.php │ │ │ │ ├── HookArgsWithWrongPaymentId.php │ │ │ │ └── HookArgsWithoutSubject.php │ │ │ └── _fixtures │ │ │ │ └── pui_order.sql │ │ ├── ExpressCheckoutSubscriberTest.php │ │ ├── FraudNetTest.php │ │ ├── FrontendSubscriberTest.php │ │ ├── InContextSubscriberTest.php │ │ ├── InstallmentsBannerCountryTest.php │ │ ├── InstallmentsBannerSubscriberTest.php │ │ ├── LessSubscriberTest.php │ │ ├── Mock │ │ │ └── PaymentMeansSubscriberTest │ │ │ │ ├── EventArgsMockWithUnifiedReturn.php │ │ │ │ ├── EventArgsMockWithoutReturn.php │ │ │ │ └── EventArgsMockWithoutUnifiedReturn.php │ │ ├── OrderTest.php │ │ ├── PayLaterMessageTest.php │ │ ├── PayLaterTest.php │ │ ├── PayUponInvoiceRiskManagementTest.php │ │ ├── PayUponInvoiceTest.php │ │ ├── PaymentMeansSubscriberTest.php │ │ ├── PlusSubscriberTest.php │ │ ├── RiskManagementTest.php │ │ ├── SepaRiskManagementTest.php │ │ ├── SepaTest.php │ │ ├── SmartPaymentButtonsSubscriberTest.php │ │ └── _fixtures │ │ │ ├── account_view_assigns.php │ │ │ ├── carrier.sql │ │ │ ├── customer_update_phone_and_birthday.sql │ │ │ ├── install_great_britan_pounds.sql │ │ │ ├── risk_management_rules_invalid_empty_product_attr_is.sql │ │ │ ├── risk_management_rules_invalid_product_attr_is.sql │ │ │ ├── risk_management_rules_product_attr_is.sql │ │ │ ├── risk_management_rules_product_in_category.sql │ │ │ ├── sOrderVariables.php │ │ │ └── sPayments.php │ ├── TranslationTestCaseTrait.php │ ├── UnifiedControllerTestCase.php │ ├── WebhookHandler │ │ ├── AbstractWebhookTest.php │ │ ├── AuthorizationVoidedTest.php │ │ ├── CheckoutPaymentApprovalReversedTest.php │ │ ├── EntityManagerMock.php │ │ ├── PaymentCaptureCompletedTest.php │ │ ├── PaymentCaptureDeniedTest.php │ │ ├── SaleCompleteTest.php │ │ ├── SaleDeniedTest.php │ │ ├── SaleRefundedTest.php │ │ ├── TestWebhookResource.php │ │ ├── _fixtures │ │ │ └── order.sql │ │ └── _mocks │ │ │ └── AbstractWebhookMock.php │ └── order_fixtures.sql ├── Jest │ ├── .eslintrc.js │ ├── jest.config.js │ ├── jest.setup.js │ ├── matchMedia.mock.js │ ├── paypal.mock.js │ └── tests │ │ ├── jquery.create_order_function.spec.js │ │ ├── jquery.express-checkout-spec.js │ │ ├── jquery.form_validity_functions.spec.js │ │ ├── jquery.swag-paypal-unified.express-address-patch.spec.js │ │ └── jquery.swag-paypal-unified.express-checkout-change-cart.spec.js ├── Mocks │ ├── AuthorizationResourceMock.php │ ├── CaptureResourceMock.php │ ├── ClientService.php │ ├── ConnectionMock.php │ ├── DummyController.php │ ├── LoggerMock.php │ ├── OrderDataServiceMock.php │ ├── OrderResourceMock.php │ ├── PaymentInstructionServiceMock.php │ ├── PaymentResourceMock.php │ ├── ResultSet │ │ ├── CaptureAuthorization.php │ │ ├── CaptureOrder.php │ │ ├── CreatePaymentSale.php │ │ ├── GetPaymentAuthorization.php │ │ ├── GetPaymentOrder.php │ │ ├── GetPaymentSale.php │ │ ├── GetSale.php │ │ ├── RefundCapture.php │ │ ├── VoidAuthorization.php │ │ └── VoidOrder.php │ ├── SaleResourceMock.php │ └── ViewMock.php ├── PayPalUnifiedTestKernel.php ├── Unit │ ├── Components │ │ ├── Backend │ │ │ ├── CaptureServiceTest.php │ │ │ ├── CredentialsServiceTest.php │ │ │ ├── PaymentDetailsServiceAssignDataToArrayTest.php │ │ │ └── ShopRegistrationServiceTest.php │ │ ├── Document │ │ │ ├── InvoiceDocumentHandlerTest.php │ │ │ ├── PuiInvoiceDocumentHandlerTest.php │ │ │ └── _fixtures │ │ │ │ ├── insert_translations.sql │ │ │ │ ├── payment_instructions.sql │ │ │ │ └── update_translations.sql │ │ ├── PayPalOrderParameter │ │ │ └── PayPalOrderParameterFacadeTest.php │ │ ├── PaymentMethodProviderTest.php │ │ └── Services │ │ │ ├── ExceptionHandlerServiceTest.php │ │ │ ├── OrderBuilder │ │ │ └── OrderHandler │ │ │ │ ├── AbstractOrderHandlerTest.php │ │ │ │ ├── ApmOrderHandlerTest.php │ │ │ │ ├── TestOrderHandler.php │ │ │ │ └── _fixtures │ │ │ │ └── basket.php │ │ │ ├── OrderPropertyHelperTest.php │ │ │ ├── PayPalOrder │ │ │ ├── AmountProviderTest.php │ │ │ ├── Fixture.php │ │ │ ├── ItemListProviderTest.php │ │ │ └── ItemListProviderTestGetItemListTest.php │ │ │ ├── PaymentTokenExtractorTest.php │ │ │ ├── PhoneNumberServiceTest.php │ │ │ └── Validation │ │ │ └── SimpleBasketValidatorTest.php │ ├── Controllers │ │ └── Frontend │ │ │ ├── AbstractPaymentControllerCaptureOrAuthorizeOrderTest.php │ │ │ ├── AbstractPaypalPaymentControllerTest.php │ │ │ ├── PaypalUnifiedApmTest.php │ │ │ └── _fixtures │ │ │ └── basket.sql │ ├── PayPalBundle │ │ ├── Components │ │ │ └── Patches │ │ │ │ └── PayerInfoPatchTest.php │ │ └── Structs │ │ │ └── WebhookStructTest.php │ ├── PaypalPaymentControllerTestCase.php │ └── Subscriber │ │ └── CarrierTest.php ├── _fixtures │ ├── s_user_data.php │ └── shops_for_translation.sql └── config_gitlab.php ├── WebhookHandlers ├── AbstractWebhook.php ├── AuthorizationVoided.php ├── CheckoutPaymentApprovalReversed.php ├── OrderAndTransactionIdResult.php ├── PaymentCaptureCompleted.php ├── PaymentCaptureDenied.php ├── SaleComplete.php ├── SaleDenied.php └── SaleRefunded.php ├── before_install_plugin.sh ├── composer.json ├── composer.lock ├── phpstan-baseline.neon ├── phpstan.neon ├── phpunit.xml.dist ├── plugin.png ├── plugin.xml └── psh /.ci/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.ci/.env.dist -------------------------------------------------------------------------------- /.ci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.ci/Makefile -------------------------------------------------------------------------------- /.ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.ci/README.md -------------------------------------------------------------------------------- /.ci/compose.e2e-current.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.ci/compose.e2e-current.yml -------------------------------------------------------------------------------- /.ci/compose.e2e-legacy.shopware-legacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.ci/compose.e2e-legacy.shopware-legacy.yml -------------------------------------------------------------------------------- /.ci/compose.e2e-legacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.ci/compose.e2e-legacy.yml -------------------------------------------------------------------------------- /.ci/compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.ci/compose.sh -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.githooks/install_hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.githooks/install_hooks.sh -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.github/config.php -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-tests-legacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.github/workflows/e2e-tests-legacy.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.github/workflows/e2e-tests.yml -------------------------------------------------------------------------------- /.github/workflows/javascript-code-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.github/workflows/javascript-code-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/php-code-analysis-legacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.github/workflows/php-code-analysis-legacy.yml -------------------------------------------------------------------------------- /.github/workflows/php-code-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.github/workflows/php-code-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/php-unit-tests-shopware-5-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.github/workflows/php-unit-tests-shopware-5-7.yml -------------------------------------------------------------------------------- /.github/workflows/php-unit-tests-shopware-legacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.github/workflows/php-unit-tests-shopware-legacy.yml -------------------------------------------------------------------------------- /.github/workflows/tests-launcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.github/workflows/tests-launcher.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.make.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.make.env -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.psh.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.psh.yml.dist -------------------------------------------------------------------------------- /.sw-zip-blacklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.sw-zip-blacklist -------------------------------------------------------------------------------- /.template-block-ignore-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/.template-block-ignore-list -------------------------------------------------------------------------------- /Components/Backend/CaptureService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Backend/CaptureService.php -------------------------------------------------------------------------------- /Components/Backend/CredentialsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Backend/CredentialsService.php -------------------------------------------------------------------------------- /Components/Backend/PaymentDetailsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Backend/PaymentDetailsService.php -------------------------------------------------------------------------------- /Components/Backend/ShopRegistrationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Backend/ShopRegistrationService.php -------------------------------------------------------------------------------- /Components/Backend/VoidService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Backend/VoidService.php -------------------------------------------------------------------------------- /Components/ButtonLocaleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/ButtonLocaleService.php -------------------------------------------------------------------------------- /Components/DependencyInjection/AbstractFactoryCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/DependencyInjection/AbstractFactoryCompilerPass.php -------------------------------------------------------------------------------- /Components/DependencyInjection/OrderHandlerCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/DependencyInjection/OrderHandlerCompilerPass.php -------------------------------------------------------------------------------- /Components/DependencyInjection/OrderToArrayHandlerCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/DependencyInjection/OrderToArrayHandlerCompilerPass.php -------------------------------------------------------------------------------- /Components/DependencyInjection/RiskManagementValueCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/DependencyInjection/RiskManagementValueCompilerPass.php -------------------------------------------------------------------------------- /Components/DependencyInjection/WebhookFactoryCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/DependencyInjection/WebhookFactoryCompilerPass.php -------------------------------------------------------------------------------- /Components/DependencyProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/DependencyProvider.php -------------------------------------------------------------------------------- /Components/Document/InvoiceDocumentHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Document/InvoiceDocumentHandler.php -------------------------------------------------------------------------------- /Components/Document/PuiInvoiceDocumentHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Document/PuiInvoiceDocumentHandler.php -------------------------------------------------------------------------------- /Components/ErrorCodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/ErrorCodes.php -------------------------------------------------------------------------------- /Components/Exception/BirthdateNotValidException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Exception/BirthdateNotValidException.php -------------------------------------------------------------------------------- /Components/Exception/InvalidOrderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Exception/InvalidOrderException.php -------------------------------------------------------------------------------- /Components/Exception/OrderNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Exception/OrderNotFoundException.php -------------------------------------------------------------------------------- /Components/Exception/PayPalApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Exception/PayPalApiException.php -------------------------------------------------------------------------------- /Components/Exception/PhoneNumberCountryCodeNotValidException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Exception/PhoneNumberCountryCodeNotValidException.php -------------------------------------------------------------------------------- /Components/Exception/PuiValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Exception/PuiValidationException.php -------------------------------------------------------------------------------- /Components/Exception/TimeoutInfoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Exception/TimeoutInfoException.php -------------------------------------------------------------------------------- /Components/ExceptionHandlerServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/ExceptionHandlerServiceInterface.php -------------------------------------------------------------------------------- /Components/NumberRangeIncrementerDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/NumberRangeIncrementerDecorator.php -------------------------------------------------------------------------------- /Components/OrderNumberService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/OrderNumberService.php -------------------------------------------------------------------------------- /Components/OrderProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/OrderProvider.php -------------------------------------------------------------------------------- /Components/PayPalOrderParameter/PayPalOrderParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/PayPalOrderParameter/PayPalOrderParameter.php -------------------------------------------------------------------------------- /Components/PayPalOrderParameter/PayPalOrderParameterFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/PayPalOrderParameter/PayPalOrderParameterFacade.php -------------------------------------------------------------------------------- /Components/PayPalOrderParameter/ShopwareOrderData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/PayPalOrderParameter/ShopwareOrderData.php -------------------------------------------------------------------------------- /Components/PaymentBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/PaymentBuilderInterface.php -------------------------------------------------------------------------------- /Components/PaymentBuilderParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/PaymentBuilderParameters.php -------------------------------------------------------------------------------- /Components/PaymentMethodProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/PaymentMethodProvider.php -------------------------------------------------------------------------------- /Components/PaymentMethodProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/PaymentMethodProviderInterface.php -------------------------------------------------------------------------------- /Components/PaymentStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/PaymentStatus.php -------------------------------------------------------------------------------- /Components/Services/Common/CartHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Common/CartHelper.php -------------------------------------------------------------------------------- /Components/Services/Common/CartPersister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Common/CartPersister.php -------------------------------------------------------------------------------- /Components/Services/Common/CustomerHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Common/CustomerHelper.php -------------------------------------------------------------------------------- /Components/Services/Common/PriceFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Common/PriceFormatter.php -------------------------------------------------------------------------------- /Components/Services/Common/ReturnUrlHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Common/ReturnUrlHelper.php -------------------------------------------------------------------------------- /Components/Services/Common/UrlBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Common/UrlBuilder.php -------------------------------------------------------------------------------- /Components/Services/DispatchValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/DispatchValidation.php -------------------------------------------------------------------------------- /Components/Services/ErrorMessages/ErrorMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/ErrorMessages/ErrorMessage.php -------------------------------------------------------------------------------- /Components/Services/ErrorMessages/ErrorMessageTransporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/ErrorMessages/ErrorMessageTransporter.php -------------------------------------------------------------------------------- /Components/Services/ExceptionHandlerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/ExceptionHandlerService.php -------------------------------------------------------------------------------- /Components/Services/ExpressCheckout/CustomerNameResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/ExpressCheckout/CustomerNameResult.php -------------------------------------------------------------------------------- /Components/Services/ExpressCheckout/CustomerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/ExpressCheckout/CustomerService.php -------------------------------------------------------------------------------- /Components/Services/ExpressCheckout/PatchOrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/ExpressCheckout/PatchOrderService.php -------------------------------------------------------------------------------- /Components/Services/Legacy/LegacyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Legacy/LegacyService.php -------------------------------------------------------------------------------- /Components/Services/LoggerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/LoggerService.php -------------------------------------------------------------------------------- /Components/Services/Onboarding/IsCapableResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Onboarding/IsCapableResult.php -------------------------------------------------------------------------------- /Components/Services/OnboardingStatusService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/OnboardingStatusService.php -------------------------------------------------------------------------------- /Components/Services/OrderBuilder/OrderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/OrderBuilder/OrderFactory.php -------------------------------------------------------------------------------- /Components/Services/OrderBuilder/OrderHandler/ApmOrderHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/OrderBuilder/OrderHandler/ApmOrderHandler.php -------------------------------------------------------------------------------- /Components/Services/OrderBuilder/OrderHandler/PuiOrderHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/OrderBuilder/OrderHandler/PuiOrderHandler.php -------------------------------------------------------------------------------- /Components/Services/OrderDataService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/OrderDataService.php -------------------------------------------------------------------------------- /Components/Services/OrderPropertyHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/OrderPropertyHelper.php -------------------------------------------------------------------------------- /Components/Services/PayPalOrder/AmountProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/PayPalOrder/AmountProvider.php -------------------------------------------------------------------------------- /Components/Services/PayPalOrder/ItemListProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/PayPalOrder/ItemListProvider.php -------------------------------------------------------------------------------- /Components/Services/PayUponInvoiceInstructionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/PayUponInvoiceInstructionService.php -------------------------------------------------------------------------------- /Components/Services/PaymentAddressService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/PaymentAddressService.php -------------------------------------------------------------------------------- /Components/Services/PaymentBuilderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/PaymentBuilderService.php -------------------------------------------------------------------------------- /Components/Services/PaymentControllerHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/PaymentControllerHelper.php -------------------------------------------------------------------------------- /Components/Services/PaymentStatusService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/PaymentStatusService.php -------------------------------------------------------------------------------- /Components/Services/PaymentTokenExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/PaymentTokenExtractor.php -------------------------------------------------------------------------------- /Components/Services/PhoneNumberService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/PhoneNumberService.php -------------------------------------------------------------------------------- /Components/Services/Plus/PaymentInstructionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Plus/PaymentInstructionService.php -------------------------------------------------------------------------------- /Components/Services/Plus/PlusPaymentBuilderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Plus/PlusPaymentBuilderService.php -------------------------------------------------------------------------------- /Components/Services/RequestIdService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/RequestIdService.php -------------------------------------------------------------------------------- /Components/Services/RiskManagement/Apm/ValidatorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/RiskManagement/Apm/ValidatorFactory.php -------------------------------------------------------------------------------- /Components/Services/RiskManagement/Apm/ValueFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/RiskManagement/Apm/ValueFactory.php -------------------------------------------------------------------------------- /Components/Services/RiskManagement/Apm/ValueHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/RiskManagement/Apm/ValueHandlerInterface.php -------------------------------------------------------------------------------- /Components/Services/RiskManagement/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/RiskManagement/Attribute.php -------------------------------------------------------------------------------- /Components/Services/RiskManagement/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/RiskManagement/Context.php -------------------------------------------------------------------------------- /Components/Services/RiskManagement/EsdProductChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/RiskManagement/EsdProductChecker.php -------------------------------------------------------------------------------- /Components/Services/RiskManagement/EsdProductCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/RiskManagement/EsdProductCheckerInterface.php -------------------------------------------------------------------------------- /Components/Services/RiskManagement/RiskManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/RiskManagement/RiskManagement.php -------------------------------------------------------------------------------- /Components/Services/RiskManagement/RiskManagementHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/RiskManagement/RiskManagementHelper.php -------------------------------------------------------------------------------- /Components/Services/RiskManagement/RiskManagementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/RiskManagement/RiskManagementInterface.php -------------------------------------------------------------------------------- /Components/Services/SettingsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/SettingsService.php -------------------------------------------------------------------------------- /Components/Services/TimeoutRefundService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/TimeoutRefundService.php -------------------------------------------------------------------------------- /Components/Services/TransactionHistoryBuilderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/TransactionHistoryBuilderService.php -------------------------------------------------------------------------------- /Components/Services/Validation/BasketIdWhitelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Validation/BasketIdWhitelist.php -------------------------------------------------------------------------------- /Components/Services/Validation/BasketValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Validation/BasketValidatorInterface.php -------------------------------------------------------------------------------- /Components/Services/Validation/RedirectDataBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Validation/RedirectDataBuilder.php -------------------------------------------------------------------------------- /Components/Services/Validation/RedirectDataBuilderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Validation/RedirectDataBuilderFactory.php -------------------------------------------------------------------------------- /Components/Services/Validation/SimpleBasketValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Services/Validation/SimpleBasketValidator.php -------------------------------------------------------------------------------- /Components/ShippingProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/ShippingProvider.php -------------------------------------------------------------------------------- /Components/TransactionReport/ReportResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/TransactionReport/ReportResult.php -------------------------------------------------------------------------------- /Components/TransactionReport/TransactionReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/TransactionReport/TransactionReport.php -------------------------------------------------------------------------------- /Components/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Components/Uuid.php -------------------------------------------------------------------------------- /Controllers/Backend/PaypalUnified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Backend/PaypalUnified.php -------------------------------------------------------------------------------- /Controllers/Backend/PaypalUnifiedExpressSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Backend/PaypalUnifiedExpressSettings.php -------------------------------------------------------------------------------- /Controllers/Backend/PaypalUnifiedGeneralSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Backend/PaypalUnifiedGeneralSettings.php -------------------------------------------------------------------------------- /Controllers/Backend/PaypalUnifiedInstallmentsSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Backend/PaypalUnifiedInstallmentsSettings.php -------------------------------------------------------------------------------- /Controllers/Backend/PaypalUnifiedPayUponInvoiceSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Backend/PaypalUnifiedPayUponInvoiceSettings.php -------------------------------------------------------------------------------- /Controllers/Backend/PaypalUnifiedPlusSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Backend/PaypalUnifiedPlusSettings.php -------------------------------------------------------------------------------- /Controllers/Backend/PaypalUnifiedSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Backend/PaypalUnifiedSettings.php -------------------------------------------------------------------------------- /Controllers/Backend/PaypalUnifiedV2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Backend/PaypalUnifiedV2.php -------------------------------------------------------------------------------- /Controllers/Frontend/AbstractPaypalPaymentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/AbstractPaypalPaymentController.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/AuthorizationDeniedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/AuthorizationDeniedException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/AuthorizationPendingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/AuthorizationPendingException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/CaptureDeclinedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/CaptureDeclinedException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/CaptureFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/CaptureFailedException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/CapturePendingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/CapturePendingException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/EmptyCartException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/EmptyCartException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/InstrumentDeclinedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/InstrumentDeclinedException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/InvalidAddressException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/InvalidAddressException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/InvalidBillingAddressException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/InvalidBillingAddressException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/NoOrderToProceedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/NoOrderToProceedException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/PayerActionRequiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/PayerActionRequiredException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/PendingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/PendingException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/RequireRestartException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/RequireRestartException.php -------------------------------------------------------------------------------- /Controllers/Frontend/Exceptions/UnexpectedStatusException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/Exceptions/UnexpectedStatusException.php -------------------------------------------------------------------------------- /Controllers/Frontend/PaypalUnified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/PaypalUnified.php -------------------------------------------------------------------------------- /Controllers/Frontend/PaypalUnifiedApm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/PaypalUnifiedApm.php -------------------------------------------------------------------------------- /Controllers/Frontend/PaypalUnifiedV2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/PaypalUnifiedV2.php -------------------------------------------------------------------------------- /Controllers/Frontend/PaypalUnifiedV2AdvancedCreditDebitCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/PaypalUnifiedV2AdvancedCreditDebitCard.php -------------------------------------------------------------------------------- /Controllers/Frontend/PaypalUnifiedV2ExpressCheckout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/PaypalUnifiedV2ExpressCheckout.php -------------------------------------------------------------------------------- /Controllers/Frontend/PaypalUnifiedV2PayUponInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/PaypalUnifiedV2PayUponInvoice.php -------------------------------------------------------------------------------- /Controllers/Frontend/PaypalUnifiedWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Frontend/PaypalUnifiedWebhook.php -------------------------------------------------------------------------------- /Controllers/Widgets/PayPalUnifiedOrderNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Widgets/PayPalUnifiedOrderNumber.php -------------------------------------------------------------------------------- /Controllers/Widgets/PaypalUnifiedV2AdvancedCreditDebitCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Widgets/PaypalUnifiedV2AdvancedCreditDebitCard.php -------------------------------------------------------------------------------- /Controllers/Widgets/PaypalUnifiedV2ExpressCheckout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Widgets/PaypalUnifiedV2ExpressCheckout.php -------------------------------------------------------------------------------- /Controllers/Widgets/PaypalUnifiedV2PayUponInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Widgets/PaypalUnifiedV2PayUponInvoice.php -------------------------------------------------------------------------------- /Controllers/Widgets/PaypalUnifiedV2SmartPaymentButtons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Controllers/Widgets/PaypalUnifiedV2SmartPaymentButtons.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Makefile -------------------------------------------------------------------------------- /Models/PaymentInstruction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Models/PaymentInstruction.php -------------------------------------------------------------------------------- /Models/Settings/AdvancedCreditDebitCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Models/Settings/AdvancedCreditDebitCard.php -------------------------------------------------------------------------------- /Models/Settings/ExpressCheckout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Models/Settings/ExpressCheckout.php -------------------------------------------------------------------------------- /Models/Settings/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Models/Settings/General.php -------------------------------------------------------------------------------- /Models/Settings/Installments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Models/Settings/Installments.php -------------------------------------------------------------------------------- /Models/Settings/PayUponInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Models/Settings/PayUponInvoice.php -------------------------------------------------------------------------------- /Models/Settings/Plus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Models/Settings/Plus.php -------------------------------------------------------------------------------- /PayPalBundle/BaseURL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/BaseURL.php -------------------------------------------------------------------------------- /PayPalBundle/Components/LoggerServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Components/LoggerServiceInterface.php -------------------------------------------------------------------------------- /PayPalBundle/Components/Patches/PatchInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Components/Patches/PatchInterface.php -------------------------------------------------------------------------------- /PayPalBundle/Components/Patches/PayerInfoPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Components/Patches/PayerInfoPatch.php -------------------------------------------------------------------------------- /PayPalBundle/Components/Patches/PaymentAddressPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Components/Patches/PaymentAddressPatch.php -------------------------------------------------------------------------------- /PayPalBundle/Components/Patches/PaymentAmountPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Components/Patches/PaymentAmountPatch.php -------------------------------------------------------------------------------- /PayPalBundle/Components/Patches/PaymentItemsPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Components/Patches/PaymentItemsPatch.php -------------------------------------------------------------------------------- /PayPalBundle/Components/Patches/PaymentOrderNumberPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Components/Patches/PaymentOrderNumberPatch.php -------------------------------------------------------------------------------- /PayPalBundle/Components/SettingsServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Components/SettingsServiceInterface.php -------------------------------------------------------------------------------- /PayPalBundle/Components/SettingsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Components/SettingsTable.php -------------------------------------------------------------------------------- /PayPalBundle/Components/Webhook/WebhookEventTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Components/Webhook/WebhookEventTypes.php -------------------------------------------------------------------------------- /PayPalBundle/Components/Webhook/WebhookException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Components/Webhook/WebhookException.php -------------------------------------------------------------------------------- /PayPalBundle/Components/Webhook/WebhookHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Components/Webhook/WebhookHandler.php -------------------------------------------------------------------------------- /PayPalBundle/PartnerAttributionId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/PartnerAttributionId.php -------------------------------------------------------------------------------- /PayPalBundle/PaymentIntent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/PaymentIntent.php -------------------------------------------------------------------------------- /PayPalBundle/PaymentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/PaymentType.php -------------------------------------------------------------------------------- /PayPalBundle/ProcessingInstruction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/ProcessingInstruction.php -------------------------------------------------------------------------------- /PayPalBundle/RequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/RequestType.php -------------------------------------------------------------------------------- /PayPalBundle/RequestUri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/RequestUri.php -------------------------------------------------------------------------------- /PayPalBundle/Resources/AuthorizationResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Resources/AuthorizationResource.php -------------------------------------------------------------------------------- /PayPalBundle/Resources/CaptureResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Resources/CaptureResource.php -------------------------------------------------------------------------------- /PayPalBundle/Resources/CredentialsResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Resources/CredentialsResource.php -------------------------------------------------------------------------------- /PayPalBundle/Resources/MerchantIntegrationsResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Resources/MerchantIntegrationsResource.php -------------------------------------------------------------------------------- /PayPalBundle/Resources/OrderResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Resources/OrderResource.php -------------------------------------------------------------------------------- /PayPalBundle/Resources/PaymentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Resources/PaymentResource.php -------------------------------------------------------------------------------- /PayPalBundle/Resources/RefundResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Resources/RefundResource.php -------------------------------------------------------------------------------- /PayPalBundle/Resources/SaleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Resources/SaleResource.php -------------------------------------------------------------------------------- /PayPalBundle/Resources/ShippingResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Resources/ShippingResource.php -------------------------------------------------------------------------------- /PayPalBundle/Resources/TokenResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Resources/TokenResource.php -------------------------------------------------------------------------------- /PayPalBundle/Resources/WebhookResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Resources/WebhookResource.php -------------------------------------------------------------------------------- /PayPalBundle/Services/ClientService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Services/ClientService.php -------------------------------------------------------------------------------- /PayPalBundle/Services/EUStates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Services/EUStates.php -------------------------------------------------------------------------------- /PayPalBundle/Services/NonceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Services/NonceService.php -------------------------------------------------------------------------------- /PayPalBundle/Services/TokenService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Services/TokenService.php -------------------------------------------------------------------------------- /PayPalBundle/Services/WebhookService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Services/WebhookService.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Common/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Common/Address.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Common/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Common/Link.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/ErrorResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/ErrorResponse.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/ErrorResponse/Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/ErrorResponse/Detail.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/GenericErrorResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/GenericErrorResponse.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/OAuthCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/OAuthCredentials.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/ApplicationContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/ApplicationContext.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/Capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/Capture.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/CaptureRefund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/CaptureRefund.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/Instruction/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/Instruction/Amount.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/Instruction/RecipientBanking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/Instruction/RecipientBanking.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/Payer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/Payer.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/Payer/PayerInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/Payer/PayerInfo.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/PaymentInstruction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/PaymentInstruction.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/RedirectUrls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/RedirectUrls.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/RelatedResources/Authorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/RelatedResources/Authorization.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/RelatedResources/Capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/RelatedResources/Capture.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/RelatedResources/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/RelatedResources/Order.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/RelatedResources/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/RelatedResources/Refund.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/RelatedResources/RelatedResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/RelatedResources/RelatedResource.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/RelatedResources/ResourceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/RelatedResources/ResourceType.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/RelatedResources/Sale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/RelatedResources/Sale.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/RelatedResources/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/RelatedResources/State.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/RelatedResources/StateReasonCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/RelatedResources/StateReasonCode.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/RelatedResources/TransactionFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/RelatedResources/TransactionFee.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/SaleRefund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/SaleRefund.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/Transactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/Transactions.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/Transactions/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/Transactions/Amount.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/Transactions/Amount/Details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/Transactions/Amount/Details.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/Transactions/ItemList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/Transactions/ItemList.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/Transactions/ItemList/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/Transactions/ItemList/Item.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/Transactions/RelatedResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/Transactions/RelatedResources.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Payment/Transactions/ShipmentDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Payment/Transactions/ShipmentDetails.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Shipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Shipping.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Shipping/Tracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Shipping/Tracker.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Token.php -------------------------------------------------------------------------------- /PayPalBundle/Structs/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/Structs/Webhook.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/ClientToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/ClientToken.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Common/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Common/Address.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Common/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Common/Link.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Common/Money.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Common/Money.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/ApplicationContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/ApplicationContext.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/Link.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/Payer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/Payer.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/Payer/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/Payer/Address.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/Payer/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/Payer/Name.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/Payer/Phone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/Payer/Phone.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/Payer/Phone/PhoneNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/Payer/Phone/PhoneNumber.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/AbstractPaymentSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/AbstractPaymentSource.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/Bancontact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/Bancontact.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/Blik.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/Blik.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/Card.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/Eps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/Eps.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/ExperienceContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/ExperienceContext.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/Giropay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/Giropay.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/Ideal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/Ideal.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/Multibanco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/Multibanco.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/Mybank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/Mybank.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/P24.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/P24.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/PayPal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/PayPal.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/PayUponInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/PayUponInvoice.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/Sofort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/Sofort.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PaymentSource/Trustly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PaymentSource/Trustly.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/AbstractAmount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/AbstractAmount.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Amount.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Amount/Breakdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Amount/Breakdown.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Item.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Item/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Item/Tax.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Item/UnitAmount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Item/UnitAmount.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Payee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Payee.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Payee/DisplayData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Payee/DisplayData.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Payments.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Authorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Authorization.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Capture.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Capture/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Capture/Amount.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Capture/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Capture/Link.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Payment.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Refund.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Refund/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Refund/Amount.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Refund/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Payments/Refund/Link.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Shipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Shipping.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Shipping/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Shipping/Address.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Order/PurchaseUnit/Shipping/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Order/PurchaseUnit/Shipping/Name.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Patch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Patch.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Patches/OrderAddInvoiceIdPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Patches/OrderAddInvoiceIdPatch.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Patches/OrderPurchaseUnitPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Patches/OrderPurchaseUnitPatch.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Patches/OrderPurchaseUnitShippingNamePatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Patches/OrderPurchaseUnitShippingNamePatch.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Webhook.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Api/Webhook/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Api/Webhook/Link.php -------------------------------------------------------------------------------- /PayPalBundle/V2/PayPalApiStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/PayPalApiStruct.php -------------------------------------------------------------------------------- /PayPalBundle/V2/PaymentIntentV2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/PaymentIntentV2.php -------------------------------------------------------------------------------- /PayPalBundle/V2/PaymentStatusV2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/PaymentStatusV2.php -------------------------------------------------------------------------------- /PayPalBundle/V2/RequestUriV2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/RequestUriV2.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Resource/AuthorizationResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Resource/AuthorizationResource.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Resource/CaptureResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Resource/CaptureResource.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Resource/ClientTokenResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Resource/ClientTokenResource.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Resource/OrderArrayFactory/OrderArrayFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Resource/OrderArrayFactory/OrderArrayFactory.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Resource/OrderResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Resource/OrderResource.php -------------------------------------------------------------------------------- /PayPalBundle/V2/Resource/RefundResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PayPalBundle/V2/Resource/RefundResource.php -------------------------------------------------------------------------------- /PhpStan/CustomRules/CrudServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PhpStan/CustomRules/CrudServiceTest.php -------------------------------------------------------------------------------- /PhpStan/phpstan-autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/PhpStan/phpstan-autoload.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/README.md -------------------------------------------------------------------------------- /Resources/cronjob.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/cronjob.xml -------------------------------------------------------------------------------- /Resources/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/menu.xml -------------------------------------------------------------------------------- /Resources/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services.xml -------------------------------------------------------------------------------- /Resources/services/backend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/backend.xml -------------------------------------------------------------------------------- /Resources/services/components.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components.xml -------------------------------------------------------------------------------- /Resources/services/components/apm_risk_management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components/apm_risk_management.xml -------------------------------------------------------------------------------- /Resources/services/components/common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components/common.xml -------------------------------------------------------------------------------- /Resources/services/components/error_messages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components/error_messages.xml -------------------------------------------------------------------------------- /Resources/services/components/express_checkout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components/express_checkout.xml -------------------------------------------------------------------------------- /Resources/services/components/legacy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components/legacy.xml -------------------------------------------------------------------------------- /Resources/services/components/order_array_factory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components/order_array_factory.xml -------------------------------------------------------------------------------- /Resources/services/components/order_builder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components/order_builder.xml -------------------------------------------------------------------------------- /Resources/services/components/payment_source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components/payment_source.xml -------------------------------------------------------------------------------- /Resources/services/components/payment_source_value.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components/payment_source_value.xml -------------------------------------------------------------------------------- /Resources/services/components/paypal_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components/paypal_order.xml -------------------------------------------------------------------------------- /Resources/services/components/plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components/plus.xml -------------------------------------------------------------------------------- /Resources/services/components/validation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/components/validation.xml -------------------------------------------------------------------------------- /Resources/services/decorators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/decorators.xml -------------------------------------------------------------------------------- /Resources/services/paypal_bundle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/paypal_bundle.xml -------------------------------------------------------------------------------- /Resources/services/resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/resources.xml -------------------------------------------------------------------------------- /Resources/services/resources_v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/resources_v2.xml -------------------------------------------------------------------------------- /Resources/services/subscribers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/subscribers.xml -------------------------------------------------------------------------------- /Resources/services/webhook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/services/webhook.xml -------------------------------------------------------------------------------- /Resources/snippets/backend/attribute_columns.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/attribute_columns.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/document/paypal_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/document/paypal_config.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/order/detail/overview.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/order/detail/overview.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/payment/controller/payment.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/payment/controller/payment.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/capture/authorize.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/capture/authorize.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/controller/history.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/controller/history.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/controller/main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/controller/main.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/overview/grid.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/overview/grid.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/overview/window.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/overview/window.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/refund/sale_window.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/refund/sale_window.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/sidebar/history.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/sidebar/history.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/sidebar/history/grid.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/sidebar/history/grid.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/sidebar/order.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/sidebar/order.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/sidebar/payment.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/sidebar/payment.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/sidebar/payment/cart.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/sidebar/payment/cart.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/sidebar/toolbar.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/sidebar/toolbar.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified/v2/main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified/v2/main.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified_settings/main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified_settings/main.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified_settings/model/plus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified_settings/model/plus.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified_settings/toolbar.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified_settings/toolbar.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified_settings/top_toolbar.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified_settings/top_toolbar.ini -------------------------------------------------------------------------------- /Resources/snippets/backend/paypal_unified_settings/window.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/backend/paypal_unified_settings/window.ini -------------------------------------------------------------------------------- /Resources/snippets/document/rate_pay.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/document/rate_pay.ini -------------------------------------------------------------------------------- /Resources/snippets/frontend/paypal_unified/checkout/confirm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/frontend/paypal_unified/checkout/confirm.ini -------------------------------------------------------------------------------- /Resources/snippets/frontend/paypal_unified/checkout/finish.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/frontend/paypal_unified/checkout/finish.ini -------------------------------------------------------------------------------- /Resources/snippets/frontend/paypal_unified/checkout/item_list.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/frontend/paypal_unified/checkout/item_list.ini -------------------------------------------------------------------------------- /Resources/snippets/frontend/paypal_unified/checkout/messages.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/frontend/paypal_unified/checkout/messages.ini -------------------------------------------------------------------------------- /Resources/snippets/frontend/paypal_unified/index/sidebar.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/frontend/paypal_unified/index/sidebar.ini -------------------------------------------------------------------------------- /Resources/snippets/frontend/paypal_unified/order/order.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/snippets/frontend/paypal_unified/order/order.ini -------------------------------------------------------------------------------- /Resources/views/backend/_resources/img/paypal-unified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/_resources/img/paypal-unified.png -------------------------------------------------------------------------------- /Resources/views/backend/order/detail/overview_paypal_extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/order/detail/overview_paypal_extension.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/api_v2_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/api_v2_types.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/app.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/controller/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/controller/api.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/controller/api_v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/controller/api_v2.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/controller/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/controller/history.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/controller/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/controller/main.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/menu_icon.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/menu_icon.tpl -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/model/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/model/authorization.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/model/capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/model/capture.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/model/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/model/order.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/model/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/model/payment.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/model/payment_amount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/model/payment_amount.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/model/payment_cart_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/model/payment_cart_item.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/model/payment_customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/model/payment_customer.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/model/payment_sale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/model/payment_sale.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/model/refund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/model/refund.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/model/sale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/model/sale.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/model/shopware_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/model/shopware_order.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/model/transaction_fee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/model/transaction_fee.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/store/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/store/order.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/store/payment_cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/store/payment_cart.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/store/payment_sale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/store/payment_sale.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/view/capture/authorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/view/capture/authorize.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/view/overview/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/view/overview/grid.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/view/overview/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/view/overview/sidebar.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/view/overview/sidebar_v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/view/overview/sidebar_v2.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/view/overview/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/view/overview/window.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/view/refund/sale_window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/view/refund/sale_window.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/view/sidebar/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/view/sidebar/history.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/view/sidebar/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/view/sidebar/order.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/view/sidebar/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/view/sidebar/payment.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified/view/sidebar/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified/view/sidebar/toolbar.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified_settings/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified_settings/app.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified_settings/controller/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified_settings/controller/main.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified_settings/model/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified_settings/model/general.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified_settings/model/plus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified_settings/model/plus.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified_settings/view/tabs/plus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified_settings/view/tabs/plus.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified_settings/view/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified_settings/view/toolbar.js -------------------------------------------------------------------------------- /Resources/views/backend/paypal_unified_settings/view/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/backend/paypal_unified_settings/view/window.js -------------------------------------------------------------------------------- /Resources/views/frontend/_public/src/img/installments_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/_public/src/img/installments_header.png -------------------------------------------------------------------------------- /Resources/views/frontend/_public/src/img/sepa_payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/_public/src/img/sepa_payment.png -------------------------------------------------------------------------------- /Resources/views/frontend/_public/src/img/unified-pui-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/_public/src/img/unified-pui-arrow.png -------------------------------------------------------------------------------- /Resources/views/frontend/_public/src/js/jquery.button-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/_public/src/js/jquery.button-config.js -------------------------------------------------------------------------------- /Resources/views/frontend/_public/src/js/jquery.redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/_public/src/js/jquery.redirect.js -------------------------------------------------------------------------------- /Resources/views/frontend/_public/src/less/all.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/_public/src/less/all.less -------------------------------------------------------------------------------- /Resources/views/frontend/_public/src/less/modules.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/_public/src/less/modules.less -------------------------------------------------------------------------------- /Resources/views/frontend/_public/src/less/variables.less: -------------------------------------------------------------------------------- 1 | @import "_variables/checkout/payment_item"; 2 | -------------------------------------------------------------------------------- /Resources/views/frontend/account/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/account/index.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/account/payment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/account/payment.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/address/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/address/index.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/checkout/ajax_add_article.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/checkout/ajax_add_article.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/checkout/ajax_cart.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/checkout/ajax_cart.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/checkout/cart.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/checkout/cart.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/checkout/cart_footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/checkout/cart_footer.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/checkout/change_payment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/checkout/change_payment.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/checkout/confirm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/checkout/confirm.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/checkout/confirm_footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/checkout/confirm_footer.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/checkout/error_messages.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/checkout/error_messages.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/checkout/finish.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/checkout/finish.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/checkout/shipping_payment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/checkout/shipping_payment.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/checkout/shipping_payment_core.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/checkout/shipping_payment_core.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/detail/buy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/detail/buy.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/index/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/index/index.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/index/sidebar.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/index/sidebar.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/listing/product-box/button-buy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/listing/product-box/button-buy.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/listing/product-box/button-detail.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/listing/product-box/button-detail.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/paypal_unified/acdc/confirm_inputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/paypal_unified/acdc/confirm_inputs.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/paypal_unified/acdc/payment_details.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/paypal_unified/acdc/payment_details.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/paypal_unified/checkout/error_message.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/paypal_unified/checkout/error_message.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/paypal_unified/in_context/button.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/paypal_unified/in_context/button.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/paypal_unified/index/sidebar.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/paypal_unified/index/sidebar.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/paypal_unified/pay_later/button.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/paypal_unified/pay_later/button.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/paypal_unified/pay_later/message.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/paypal_unified/pay_later/message.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/register/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/register/login.tpl -------------------------------------------------------------------------------- /Resources/views/frontend/register/payment_fieldset.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Resources/views/frontend/register/payment_fieldset.tpl -------------------------------------------------------------------------------- /Setup/Assets/Document/PayPal_Unified_Instructions_Content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Assets/Document/PayPal_Unified_Instructions_Content.html -------------------------------------------------------------------------------- /Setup/Assets/Document/PayPal_Unified_Instructions_Footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Assets/Document/PayPal_Unified_Instructions_Footer.html -------------------------------------------------------------------------------- /Setup/Assets/Translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Assets/Translations.php -------------------------------------------------------------------------------- /Setup/Assets/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Assets/migration.sql -------------------------------------------------------------------------------- /Setup/Assets/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Assets/tables.sql -------------------------------------------------------------------------------- /Setup/ColumnService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/ColumnService.php -------------------------------------------------------------------------------- /Setup/FirstRunWizardInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/FirstRunWizardInstaller.php -------------------------------------------------------------------------------- /Setup/InstallationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/InstallationException.php -------------------------------------------------------------------------------- /Setup/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Installer.php -------------------------------------------------------------------------------- /Setup/InstanceIdService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/InstanceIdService.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentInstaller.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModelFactory.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/AbstractPaymentModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/AbstractPaymentModel.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/Bancontact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/Bancontact.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/Blik.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/Blik.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/Eps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/Eps.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/Giropay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/Giropay.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/Ideal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/Ideal.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/MultiBanco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/MultiBanco.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/MyBank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/MyBank.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/PayLater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/PayLater.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/PayPalClassic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/PayPalClassic.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/PayPalPayUponInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/PayPalPayUponInvoice.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/Przelewy24.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/Przelewy24.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/Sepa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/Sepa.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/Sofort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/Sofort.php -------------------------------------------------------------------------------- /Setup/PaymentModels/PaymentModels/Trustly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/PaymentModels/PaymentModels/Trustly.php -------------------------------------------------------------------------------- /Setup/TranslationTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/TranslationTransformer.php -------------------------------------------------------------------------------- /Setup/TranslationUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/TranslationUpdater.php -------------------------------------------------------------------------------- /Setup/Uninstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Uninstaller.php -------------------------------------------------------------------------------- /Setup/Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Updater.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo400.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo411.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo411.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo420.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo420.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo430.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo430.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo433.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo433.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo500.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo504.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo504.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo600.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo600.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo602.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo602.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo604.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo604.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo610.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo610.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo616.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo616.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo617.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo617.php -------------------------------------------------------------------------------- /Setup/Versions/UpdateTo618.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Setup/Versions/UpdateTo618.php -------------------------------------------------------------------------------- /Subscriber/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/Account.php -------------------------------------------------------------------------------- /Subscriber/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/Address.php -------------------------------------------------------------------------------- /Subscriber/AdvancedCreditDebitCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/AdvancedCreditDebitCard.php -------------------------------------------------------------------------------- /Subscriber/AdvancedCreditDebitCardRiskManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/AdvancedCreditDebitCardRiskManagement.php -------------------------------------------------------------------------------- /Subscriber/ApmCheckoutFinish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/ApmCheckoutFinish.php -------------------------------------------------------------------------------- /Subscriber/ApmRiskManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/ApmRiskManagement.php -------------------------------------------------------------------------------- /Subscriber/Backend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/Backend.php -------------------------------------------------------------------------------- /Subscriber/Carrier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/Carrier.php -------------------------------------------------------------------------------- /Subscriber/Checkout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/Checkout.php -------------------------------------------------------------------------------- /Subscriber/CheckoutRequestId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/CheckoutRequestId.php -------------------------------------------------------------------------------- /Subscriber/CommentSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/CommentSubscriber.php -------------------------------------------------------------------------------- /Subscriber/ControllerRegistration/Backend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/ControllerRegistration/Backend.php -------------------------------------------------------------------------------- /Subscriber/ControllerRegistration/Frontend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/ControllerRegistration/Frontend.php -------------------------------------------------------------------------------- /Subscriber/ControllerRegistration/Widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/ControllerRegistration/Widgets.php -------------------------------------------------------------------------------- /Subscriber/CookieConsent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/CookieConsent.php -------------------------------------------------------------------------------- /Subscriber/Documents/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/Documents/Invoice.php -------------------------------------------------------------------------------- /Subscriber/ExpressCheckout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/ExpressCheckout.php -------------------------------------------------------------------------------- /Subscriber/FraudNet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/FraudNet.php -------------------------------------------------------------------------------- /Subscriber/Frontend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/Frontend.php -------------------------------------------------------------------------------- /Subscriber/InContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/InContext.php -------------------------------------------------------------------------------- /Subscriber/InstallmentsBanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/InstallmentsBanner.php -------------------------------------------------------------------------------- /Subscriber/Less.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/Less.php -------------------------------------------------------------------------------- /Subscriber/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/Order.php -------------------------------------------------------------------------------- /Subscriber/PayLater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/PayLater.php -------------------------------------------------------------------------------- /Subscriber/PayLaterMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/PayLaterMessage.php -------------------------------------------------------------------------------- /Subscriber/PayUponInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/PayUponInvoice.php -------------------------------------------------------------------------------- /Subscriber/PayUponInvoiceRiskManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/PayUponInvoiceRiskManagement.php -------------------------------------------------------------------------------- /Subscriber/PaymentMeans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/PaymentMeans.php -------------------------------------------------------------------------------- /Subscriber/Plus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/Plus.php -------------------------------------------------------------------------------- /Subscriber/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/Register.php -------------------------------------------------------------------------------- /Subscriber/RiskManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/RiskManagement.php -------------------------------------------------------------------------------- /Subscriber/Sepa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/Sepa.php -------------------------------------------------------------------------------- /Subscriber/SepaRiskManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/SepaRiskManagement.php -------------------------------------------------------------------------------- /Subscriber/SmartPaymentButtons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/SmartPaymentButtons.php -------------------------------------------------------------------------------- /Subscriber/TransactionReportSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Subscriber/TransactionReportSubscriber.php -------------------------------------------------------------------------------- /SwagPaymentPayPalUnified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/SwagPaymentPayPalUnified.php -------------------------------------------------------------------------------- /Tests/E2E/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/.env.dist -------------------------------------------------------------------------------- /Tests/E2E/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/.eslintrc.js -------------------------------------------------------------------------------- /Tests/E2E/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/.gitignore -------------------------------------------------------------------------------- /Tests/E2E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/README.md -------------------------------------------------------------------------------- /Tests/E2E/helper/backendHandleSaveHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/backendHandleSaveHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/backendLoginHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/backendLoginHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/clearCacheHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/clearCacheHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/clearPaypalSettingsHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/clearPaypalSettingsHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/connectDefaultShippingMethodWithPayPalHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/connectDefaultShippingMethodWithPayPalHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/cookieHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/cookieHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/customerCommentHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/customerCommentHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/getPayPalPaymentMethodSelector.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/getPayPalPaymentMethodSelector.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/loginHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/loginHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/mysqlFactory.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/mysqlFactory.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/offCanvasSettingHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/offCanvasSettingHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/payLaterSettingsHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/payLaterSettingsHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/paypalSqlHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/paypalSqlHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/restoreOrderNumberHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/restoreOrderNumberHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/retryHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/retryHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/updatePlusHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/updatePlusHelper.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/updateProductNumberAddLeadingZero.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/updateProductNumberAddLeadingZero.mjs -------------------------------------------------------------------------------- /Tests/E2E/helper/useSmartPaymentButtons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/helper/useSmartPaymentButtons.mjs -------------------------------------------------------------------------------- /Tests/E2E/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/package-lock.json -------------------------------------------------------------------------------- /Tests/E2E/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/package.json -------------------------------------------------------------------------------- /Tests/E2E/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/playwright.config.js -------------------------------------------------------------------------------- /Tests/E2E/setup/credentials.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/credentials.mjs -------------------------------------------------------------------------------- /Tests/E2E/setup/globalSetup.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/globalSetup.mjs -------------------------------------------------------------------------------- /Tests/E2E/setup/globalTeardown.mjs: -------------------------------------------------------------------------------- 1 | export default function () { 2 | console.log('Global Teardown'); 3 | } 4 | -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/activate_plus_settings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/activate_plus_settings.sql -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/api_access.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/api_access.sql -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/apm_fixtures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/apm_fixtures.sql -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/buy_in_listing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/buy_in_listing.sql -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/clear_orders_for_check_tracking.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/clear_orders_for_check_tracking.sql -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/deactivate_cookie_note.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/deactivate_cookie_note.sql -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/order_for_check_tracking.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/order_for_check_tracking.sql -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/paypal_settings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/paypal_settings.sql -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/paypal_settings_use_smart_payment_buttons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/paypal_settings_use_smart_payment_buttons.sql -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/reset_product_number_with_leading_zero.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/reset_product_number_with_leading_zero.sql -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/set_customer_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/set_customer_data.sql -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/truncate_paypal_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/truncate_paypal_tables.sql -------------------------------------------------------------------------------- /Tests/E2E/setup/sql/update_product_number_with_leading_zero.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/setup/sql/update_product_number_with_leading_zero.sql -------------------------------------------------------------------------------- /Tests/E2E/test/backend_check_message_merchant_id_is_wrong.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/backend_check_message_merchant_id_is_wrong.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/backend_deactivate_plus.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/backend_deactivate_plus.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/backend_sandbox.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/backend_sandbox.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/backend_tracking_url.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/backend_tracking_url.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/credentials.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/credentials.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/pay_later_button_is_not_shown.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/pay_later_button_is_not_shown.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/pay_later_button_is_shown.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/pay_later_button_is_shown.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/pay_with_acdc.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/pay_with_acdc.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/pay_with_express-without-offcanvas.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/pay_with_express-without-offcanvas.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/pay_with_express.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/pay_with_express.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/pay_with_invoice.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/pay_with_invoice.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/pay_with_pay_later.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/pay_with_pay_later.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/pay_with_paypal.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/pay_with_paypal.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/pay_with_sepa.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/pay_with_sepa.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/pay_with_smart_payment_buttons.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/pay_with_smart_payment_buttons.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/pui_should_show_error_messages.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/pui_should_show_error_messages.spec.mjs -------------------------------------------------------------------------------- /Tests/E2E/test/voucher_field_is_visible.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/E2E/test/voucher_field_is_visible.spec.mjs -------------------------------------------------------------------------------- /Tests/Functional/AssertLocationTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/AssertLocationTrait.php -------------------------------------------------------------------------------- /Tests/Functional/AssertStringContainsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/AssertStringContainsTrait.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Backend/CaptureServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Backend/CaptureServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Backend/CredentialsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Backend/CredentialsServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Backend/OrderTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Backend/OrderTrait.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Backend/PaymentDetailsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Backend/PaymentDetailsServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Backend/VoidServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Backend/VoidServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/DependencyProviderGetRouterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/DependencyProviderGetRouterTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/DependencyProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/DependencyProviderTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/OrderNumberServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/OrderNumberServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/OrderProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/OrderProviderTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/PaymentMethodProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/PaymentMethodProviderTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Services/Common/CartHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Services/Common/CartHelperTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Services/LoggerServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Services/LoggerServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Services/OrderBuilderServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Services/OrderBuilderServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Services/OrderDataServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Services/OrderDataServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Services/PatchOrderServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Services/PatchOrderServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Services/PhoneNumberServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Services/PhoneNumberServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Services/RequestIdServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Services/RequestIdServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Services/SettingsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Services/SettingsServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/Services/_fixtures/order_status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/Services/_fixtures/order_status.sql -------------------------------------------------------------------------------- /Tests/Functional/Components/ShippingProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/ShippingProviderTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/UuidTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/UuidTest.php -------------------------------------------------------------------------------- /Tests/Functional/Components/_fixtures/order.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/_fixtures/order.sql -------------------------------------------------------------------------------- /Tests/Functional/Components/_fixtures/shipping.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Components/_fixtures/shipping.sql -------------------------------------------------------------------------------- /Tests/Functional/ContainerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/ContainerTrait.php -------------------------------------------------------------------------------- /Tests/Functional/Controller/Backend/PaypalUnifiedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Controller/Backend/PaypalUnifiedTest.php -------------------------------------------------------------------------------- /Tests/Functional/Controller/Backend/PaypalUnifiedV2Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Controller/Backend/PaypalUnifiedV2Test.php -------------------------------------------------------------------------------- /Tests/Functional/Controller/Frontend/PaypalUnifiedV2Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Controller/Frontend/PaypalUnifiedV2Test.php -------------------------------------------------------------------------------- /Tests/Functional/Controller/Frontend/_fixtures/basket.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Controller/Frontend/_fixtures/basket.sql -------------------------------------------------------------------------------- /Tests/Functional/Controller/Frontend/_fixtures/get_order_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Controller/Frontend/_fixtures/get_order_id.sql -------------------------------------------------------------------------------- /Tests/Functional/Controller/Frontend/_mocks/ViewMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Controller/Frontend/_mocks/ViewMock.php -------------------------------------------------------------------------------- /Tests/Functional/DatabaseHelperTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/DatabaseHelperTrait.php -------------------------------------------------------------------------------- /Tests/Functional/DatabaseTestCaseTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/DatabaseTestCaseTrait.php -------------------------------------------------------------------------------- /Tests/Functional/Models/PayUponInvoiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Models/PayUponInvoiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/PayPalBundle/Services/WebhookServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/PayPalBundle/Services/WebhookServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/PayPalUnifiedPaymentIdTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/PayPalUnifiedPaymentIdTrait.php -------------------------------------------------------------------------------- /Tests/Functional/ReflectionHelperTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/ReflectionHelperTrait.php -------------------------------------------------------------------------------- /Tests/Functional/RequestExceptionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/RequestExceptionTrait.php -------------------------------------------------------------------------------- /Tests/Functional/ResetSessionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/ResetSessionTrait.php -------------------------------------------------------------------------------- /Tests/Functional/ServiceDefinition/ServiceDefinitionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/ServiceDefinition/ServiceDefinitionTest.php -------------------------------------------------------------------------------- /Tests/Functional/SettingsHelperTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/SettingsHelperTrait.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/FirstRunWizardInstallerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/FirstRunWizardInstallerTest.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/InstallerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/InstallerTest.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/InstanceIdServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/InstanceIdServiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/UninstallerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/UninstallerTest.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/UpdaterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/UpdaterTest.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/Versions/UpdateTo400Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/Versions/UpdateTo400Test.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/Versions/UpdateTo433Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/Versions/UpdateTo433Test.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/Versions/UpdateTo500Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/Versions/UpdateTo500Test.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/Versions/UpdateTo504Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/Versions/UpdateTo504Test.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/Versions/UpdateTo600Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/Versions/UpdateTo600Test.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/Versions/UpdateTo602Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/Versions/UpdateTo602Test.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/Versions/UpdateTo604Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/Versions/UpdateTo604Test.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/Versions/UpdateTo617Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/Versions/UpdateTo617Test.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/Versions/UpdateTo618Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/Versions/UpdateTo618Test.php -------------------------------------------------------------------------------- /Tests/Functional/Setup/Versions/_fixtures/create_test_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/Versions/_fixtures/create_test_data.sql -------------------------------------------------------------------------------- /Tests/Functional/Setup/Versions/_fixtures/drop_test_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/Versions/_fixtures/drop_test_tables.sql -------------------------------------------------------------------------------- /Tests/Functional/Setup/_fixtures/orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/_fixtures/orders.sql -------------------------------------------------------------------------------- /Tests/Functional/Setup/_fixtures/orders_invoice.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Setup/_fixtures/orders_invoice.sql -------------------------------------------------------------------------------- /Tests/Functional/ShopRegistrationTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/ShopRegistrationTrait.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/AccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/AccountTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/ApmCheckoutFinishTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/ApmCheckoutFinishTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/BackendSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/BackendSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/CarrierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/CarrierTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/CheckoutTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/CheckoutTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/CommentSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/CommentSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/CookieConsentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/CookieConsentTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/Documents/InvoiceSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/Documents/InvoiceSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/Documents/_fixtures/pui_order.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/Documents/_fixtures/pui_order.sql -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/ExpressCheckoutSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/ExpressCheckoutSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/FraudNetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/FraudNetTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/FrontendSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/FrontendSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/InContextSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/InContextSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/InstallmentsBannerCountryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/InstallmentsBannerCountryTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/InstallmentsBannerSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/InstallmentsBannerSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/LessSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/LessSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/OrderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/OrderTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/PayLaterMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/PayLaterMessageTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/PayLaterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/PayLaterTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/PayUponInvoiceRiskManagementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/PayUponInvoiceRiskManagementTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/PayUponInvoiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/PayUponInvoiceTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/PaymentMeansSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/PaymentMeansSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/PlusSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/PlusSubscriberTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/RiskManagementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/RiskManagementTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/SepaRiskManagementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/SepaRiskManagementTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/SepaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/SepaTest.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/_fixtures/account_view_assigns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/_fixtures/account_view_assigns.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/_fixtures/carrier.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/_fixtures/carrier.sql -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/_fixtures/sOrderVariables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/_fixtures/sOrderVariables.php -------------------------------------------------------------------------------- /Tests/Functional/Subscriber/_fixtures/sPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/Subscriber/_fixtures/sPayments.php -------------------------------------------------------------------------------- /Tests/Functional/TranslationTestCaseTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/TranslationTestCaseTrait.php -------------------------------------------------------------------------------- /Tests/Functional/UnifiedControllerTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/UnifiedControllerTestCase.php -------------------------------------------------------------------------------- /Tests/Functional/WebhookHandler/AbstractWebhookTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/WebhookHandler/AbstractWebhookTest.php -------------------------------------------------------------------------------- /Tests/Functional/WebhookHandler/AuthorizationVoidedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/WebhookHandler/AuthorizationVoidedTest.php -------------------------------------------------------------------------------- /Tests/Functional/WebhookHandler/EntityManagerMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/WebhookHandler/EntityManagerMock.php -------------------------------------------------------------------------------- /Tests/Functional/WebhookHandler/PaymentCaptureCompletedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/WebhookHandler/PaymentCaptureCompletedTest.php -------------------------------------------------------------------------------- /Tests/Functional/WebhookHandler/PaymentCaptureDeniedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/WebhookHandler/PaymentCaptureDeniedTest.php -------------------------------------------------------------------------------- /Tests/Functional/WebhookHandler/SaleCompleteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/WebhookHandler/SaleCompleteTest.php -------------------------------------------------------------------------------- /Tests/Functional/WebhookHandler/SaleDeniedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/WebhookHandler/SaleDeniedTest.php -------------------------------------------------------------------------------- /Tests/Functional/WebhookHandler/SaleRefundedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/WebhookHandler/SaleRefundedTest.php -------------------------------------------------------------------------------- /Tests/Functional/WebhookHandler/TestWebhookResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/WebhookHandler/TestWebhookResource.php -------------------------------------------------------------------------------- /Tests/Functional/WebhookHandler/_fixtures/order.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/WebhookHandler/_fixtures/order.sql -------------------------------------------------------------------------------- /Tests/Functional/WebhookHandler/_mocks/AbstractWebhookMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/WebhookHandler/_mocks/AbstractWebhookMock.php -------------------------------------------------------------------------------- /Tests/Functional/order_fixtures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Functional/order_fixtures.sql -------------------------------------------------------------------------------- /Tests/Jest/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Jest/.eslintrc.js -------------------------------------------------------------------------------- /Tests/Jest/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Jest/jest.config.js -------------------------------------------------------------------------------- /Tests/Jest/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Jest/jest.setup.js -------------------------------------------------------------------------------- /Tests/Jest/matchMedia.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Jest/matchMedia.mock.js -------------------------------------------------------------------------------- /Tests/Jest/paypal.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Jest/paypal.mock.js -------------------------------------------------------------------------------- /Tests/Jest/tests/jquery.create_order_function.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Jest/tests/jquery.create_order_function.spec.js -------------------------------------------------------------------------------- /Tests/Jest/tests/jquery.express-checkout-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Jest/tests/jquery.express-checkout-spec.js -------------------------------------------------------------------------------- /Tests/Jest/tests/jquery.form_validity_functions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Jest/tests/jquery.form_validity_functions.spec.js -------------------------------------------------------------------------------- /Tests/Mocks/AuthorizationResourceMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/AuthorizationResourceMock.php -------------------------------------------------------------------------------- /Tests/Mocks/CaptureResourceMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/CaptureResourceMock.php -------------------------------------------------------------------------------- /Tests/Mocks/ClientService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ClientService.php -------------------------------------------------------------------------------- /Tests/Mocks/ConnectionMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ConnectionMock.php -------------------------------------------------------------------------------- /Tests/Mocks/DummyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/DummyController.php -------------------------------------------------------------------------------- /Tests/Mocks/LoggerMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/LoggerMock.php -------------------------------------------------------------------------------- /Tests/Mocks/OrderDataServiceMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/OrderDataServiceMock.php -------------------------------------------------------------------------------- /Tests/Mocks/OrderResourceMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/OrderResourceMock.php -------------------------------------------------------------------------------- /Tests/Mocks/PaymentInstructionServiceMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/PaymentInstructionServiceMock.php -------------------------------------------------------------------------------- /Tests/Mocks/PaymentResourceMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/PaymentResourceMock.php -------------------------------------------------------------------------------- /Tests/Mocks/ResultSet/CaptureAuthorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ResultSet/CaptureAuthorization.php -------------------------------------------------------------------------------- /Tests/Mocks/ResultSet/CaptureOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ResultSet/CaptureOrder.php -------------------------------------------------------------------------------- /Tests/Mocks/ResultSet/CreatePaymentSale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ResultSet/CreatePaymentSale.php -------------------------------------------------------------------------------- /Tests/Mocks/ResultSet/GetPaymentAuthorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ResultSet/GetPaymentAuthorization.php -------------------------------------------------------------------------------- /Tests/Mocks/ResultSet/GetPaymentOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ResultSet/GetPaymentOrder.php -------------------------------------------------------------------------------- /Tests/Mocks/ResultSet/GetPaymentSale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ResultSet/GetPaymentSale.php -------------------------------------------------------------------------------- /Tests/Mocks/ResultSet/GetSale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ResultSet/GetSale.php -------------------------------------------------------------------------------- /Tests/Mocks/ResultSet/RefundCapture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ResultSet/RefundCapture.php -------------------------------------------------------------------------------- /Tests/Mocks/ResultSet/VoidAuthorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ResultSet/VoidAuthorization.php -------------------------------------------------------------------------------- /Tests/Mocks/ResultSet/VoidOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ResultSet/VoidOrder.php -------------------------------------------------------------------------------- /Tests/Mocks/SaleResourceMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/SaleResourceMock.php -------------------------------------------------------------------------------- /Tests/Mocks/ViewMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Mocks/ViewMock.php -------------------------------------------------------------------------------- /Tests/PayPalUnifiedTestKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/PayPalUnifiedTestKernel.php -------------------------------------------------------------------------------- /Tests/Unit/Components/Backend/CaptureServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/Backend/CaptureServiceTest.php -------------------------------------------------------------------------------- /Tests/Unit/Components/Backend/CredentialsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/Backend/CredentialsServiceTest.php -------------------------------------------------------------------------------- /Tests/Unit/Components/Backend/ShopRegistrationServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/Backend/ShopRegistrationServiceTest.php -------------------------------------------------------------------------------- /Tests/Unit/Components/Document/InvoiceDocumentHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/Document/InvoiceDocumentHandlerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Components/Document/PuiInvoiceDocumentHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/Document/PuiInvoiceDocumentHandlerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Components/Document/_fixtures/insert_translations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/Document/_fixtures/insert_translations.sql -------------------------------------------------------------------------------- /Tests/Unit/Components/Document/_fixtures/update_translations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/Document/_fixtures/update_translations.sql -------------------------------------------------------------------------------- /Tests/Unit/Components/PaymentMethodProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/PaymentMethodProviderTest.php -------------------------------------------------------------------------------- /Tests/Unit/Components/Services/ExceptionHandlerServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/Services/ExceptionHandlerServiceTest.php -------------------------------------------------------------------------------- /Tests/Unit/Components/Services/OrderPropertyHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/Services/OrderPropertyHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/Components/Services/PayPalOrder/Fixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/Services/PayPalOrder/Fixture.php -------------------------------------------------------------------------------- /Tests/Unit/Components/Services/PaymentTokenExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/Services/PaymentTokenExtractorTest.php -------------------------------------------------------------------------------- /Tests/Unit/Components/Services/PhoneNumberServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Components/Services/PhoneNumberServiceTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controllers/Frontend/PaypalUnifiedApmTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Controllers/Frontend/PaypalUnifiedApmTest.php -------------------------------------------------------------------------------- /Tests/Unit/Controllers/Frontend/_fixtures/basket.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Controllers/Frontend/_fixtures/basket.sql -------------------------------------------------------------------------------- /Tests/Unit/PayPalBundle/Structs/WebhookStructTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/PayPalBundle/Structs/WebhookStructTest.php -------------------------------------------------------------------------------- /Tests/Unit/PaypalPaymentControllerTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/PaypalPaymentControllerTestCase.php -------------------------------------------------------------------------------- /Tests/Unit/Subscriber/CarrierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/Unit/Subscriber/CarrierTest.php -------------------------------------------------------------------------------- /Tests/_fixtures/s_user_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/_fixtures/s_user_data.php -------------------------------------------------------------------------------- /Tests/_fixtures/shops_for_translation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/_fixtures/shops_for_translation.sql -------------------------------------------------------------------------------- /Tests/config_gitlab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/Tests/config_gitlab.php -------------------------------------------------------------------------------- /WebhookHandlers/AbstractWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/WebhookHandlers/AbstractWebhook.php -------------------------------------------------------------------------------- /WebhookHandlers/AuthorizationVoided.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/WebhookHandlers/AuthorizationVoided.php -------------------------------------------------------------------------------- /WebhookHandlers/CheckoutPaymentApprovalReversed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/WebhookHandlers/CheckoutPaymentApprovalReversed.php -------------------------------------------------------------------------------- /WebhookHandlers/OrderAndTransactionIdResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/WebhookHandlers/OrderAndTransactionIdResult.php -------------------------------------------------------------------------------- /WebhookHandlers/PaymentCaptureCompleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/WebhookHandlers/PaymentCaptureCompleted.php -------------------------------------------------------------------------------- /WebhookHandlers/PaymentCaptureDenied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/WebhookHandlers/PaymentCaptureDenied.php -------------------------------------------------------------------------------- /WebhookHandlers/SaleComplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/WebhookHandlers/SaleComplete.php -------------------------------------------------------------------------------- /WebhookHandlers/SaleDenied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/WebhookHandlers/SaleDenied.php -------------------------------------------------------------------------------- /WebhookHandlers/SaleRefunded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/WebhookHandlers/SaleRefunded.php -------------------------------------------------------------------------------- /before_install_plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/before_install_plugin.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/composer.lock -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/phpstan-baseline.neon -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/plugin.png -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware5/SwagPaymentPayPalUnified/HEAD/plugin.xml -------------------------------------------------------------------------------- /psh: -------------------------------------------------------------------------------- 1 | vendor/shopware/plugin-dev-tools/psh.phar --------------------------------------------------------------------------------