├── .gitattributes ├── composer.json └── src ├── Adapter └── DynamoDB │ ├── DynamoDBRepository.php │ └── DynamoDBShop.php ├── AppConfiguration.php ├── AppLifecycle.php ├── Authentication ├── RequestVerifier.php └── ResponseSigner.php ├── Context ├── ActionButton │ └── ActionButtonAction.php ├── ActionSource.php ├── ArrayStruct.php ├── Cart │ ├── CalculatedPrice.php │ ├── CalculatedTax.php │ ├── Cart.php │ ├── CartPrice.php │ ├── CartTransaction.php │ ├── Delivery.php │ ├── DeliveryDate.php │ ├── DeliveryPosition.php │ ├── Error.php │ ├── LineItem.php │ └── TaxRule.php ├── ContextResolver.php ├── Gateway │ ├── Checkout │ │ └── CheckoutGatewayAction.php │ ├── Context │ │ └── ContextGatewayAction.php │ └── InAppFeatures │ │ └── FilterAction.php ├── InAppPurchase │ ├── HasMatchingDomain.php │ ├── HasValidRSAJWKSignature.php │ ├── InAppPurchase.php │ ├── InAppPurchaseProvider.php │ └── SBPStoreKeyFetcher.php ├── Module │ └── ModuleAction.php ├── Order │ ├── Order.php │ ├── OrderCustomer.php │ ├── OrderDelivery.php │ ├── OrderLineItem.php │ ├── OrderTransaction.php │ └── StateMachineState.php ├── Payment │ ├── PaymentCaptureAction.php │ ├── PaymentFinalizeAction.php │ ├── PaymentPayAction.php │ ├── PaymentRecurringAction.php │ ├── PaymentValidateAction.php │ ├── RecurringData.php │ ├── Refund.php │ ├── RefundAction.php │ └── RefundTransactionCapture.php ├── Response │ ├── Customer │ │ ├── AddressResponseStruct.php │ │ └── CustomerResponseStruct.php │ └── ResponseStruct.php ├── SalesChannelContext │ ├── Address.php │ ├── Country.php │ ├── CountryState.php │ ├── Currency.php │ ├── Customer.php │ ├── LanguageInfo.php │ ├── PaymentMethod.php │ ├── RoundingConfig.php │ ├── SalesChannel.php │ ├── SalesChannelContext.php │ ├── SalesChannelDomain.php │ ├── Salutation.php │ ├── ShippingLocation.php │ ├── ShippingMethod.php │ └── TaxInfo.php ├── Storefront │ ├── StorefrontAction.php │ └── StorefrontClaims.php ├── TaxProvider │ └── TaxProviderAction.php ├── Trait │ └── CustomFieldsAware.php └── Webhook │ └── WebhookAction.php ├── Event ├── AbstractAppLifecycleEvent.php ├── BeforeRegistrationCompletedEvent.php ├── BeforeRegistrationStartsEvent.php ├── BeforeShopActivateEvent.php ├── BeforeShopDeactivatedEvent.php ├── BeforeShopDeletionEvent.php ├── RegistrationCompletedEvent.php ├── ShopActivatedEvent.php ├── ShopDeactivatedEvent.php └── ShopDeletedEvent.php ├── Exception ├── MalformedWebhookBodyException.php ├── MissingClaimException.php ├── MissingShopParameterException.php ├── ShopNotFoundException.php ├── SignatureInvalidException.php └── SignatureNotFoundException.php ├── Framework └── Collection.php ├── Gateway ├── Checkout │ ├── CheckoutGatewayCommand.php │ └── Command │ │ ├── AddCartErrorCommand.php │ │ ├── AddPaymentMethodCommand.php │ │ ├── AddPaymentMethodExtensionCommand.php │ │ ├── AddShippingMethodCommand.php │ │ ├── AddShippingMethodExtensionCommand.php │ │ ├── RemovePaymentMethodCommand.php │ │ └── RemoveShippingMethodCommand.php └── Context │ ├── Command │ ├── AddCustomerMessageCommand.php │ ├── ChangeBillingAddressCommand.php │ ├── ChangeCurrencyCommand.php │ ├── ChangeLanguageCommand.php │ ├── ChangePaymentMethodCommand.php │ ├── ChangeShippingAddressCommand.php │ ├── ChangeShippingLocationCommand.php │ ├── ChangeShippingMethodCommand.php │ ├── LoginCustomerCommand.php │ └── RegisterCustomerCommand.php │ └── ContextGatewayCommand.php ├── HttpClient ├── AuthenticatedClient.php ├── ClientFactory.php ├── Exception │ └── AuthenticationFailedException.php ├── LoggerClient.php ├── NullCache.php └── SimpleHttpClient │ ├── SimpleHttpClient.php │ └── SimpleHttpClientResponse.php ├── Registration ├── RandomStringShopSecretGenerator.php ├── RegistrationService.php └── ShopSecretGeneratorInterface.php ├── Response ├── ActionButtonResponse.php ├── GatewayResponse.php ├── InAppPurchasesResponse.php ├── PaymentResponse.php └── RefundResponse.php ├── Shop ├── ShopInterface.php ├── ShopRepositoryInterface.php └── ShopResolver.php ├── TaxProvider ├── CalculatedTax.php └── TaxProviderResponseBuilder.php └── Test ├── JWKSHelper.php ├── MockClient.php ├── MockShop.php ├── MockShopRepository.php └── _fixtures ├── jwks.json └── jwks_private.pem /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/.gitattributes -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/composer.json -------------------------------------------------------------------------------- /src/Adapter/DynamoDB/DynamoDBRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Adapter/DynamoDB/DynamoDBRepository.php -------------------------------------------------------------------------------- /src/Adapter/DynamoDB/DynamoDBShop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Adapter/DynamoDB/DynamoDBShop.php -------------------------------------------------------------------------------- /src/AppConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/AppConfiguration.php -------------------------------------------------------------------------------- /src/AppLifecycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/AppLifecycle.php -------------------------------------------------------------------------------- /src/Authentication/RequestVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Authentication/RequestVerifier.php -------------------------------------------------------------------------------- /src/Authentication/ResponseSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Authentication/ResponseSigner.php -------------------------------------------------------------------------------- /src/Context/ActionButton/ActionButtonAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/ActionButton/ActionButtonAction.php -------------------------------------------------------------------------------- /src/Context/ActionSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/ActionSource.php -------------------------------------------------------------------------------- /src/Context/ArrayStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/ArrayStruct.php -------------------------------------------------------------------------------- /src/Context/Cart/CalculatedPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Cart/CalculatedPrice.php -------------------------------------------------------------------------------- /src/Context/Cart/CalculatedTax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Cart/CalculatedTax.php -------------------------------------------------------------------------------- /src/Context/Cart/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Cart/Cart.php -------------------------------------------------------------------------------- /src/Context/Cart/CartPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Cart/CartPrice.php -------------------------------------------------------------------------------- /src/Context/Cart/CartTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Cart/CartTransaction.php -------------------------------------------------------------------------------- /src/Context/Cart/Delivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Cart/Delivery.php -------------------------------------------------------------------------------- /src/Context/Cart/DeliveryDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Cart/DeliveryDate.php -------------------------------------------------------------------------------- /src/Context/Cart/DeliveryPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Cart/DeliveryPosition.php -------------------------------------------------------------------------------- /src/Context/Cart/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Cart/Error.php -------------------------------------------------------------------------------- /src/Context/Cart/LineItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Cart/LineItem.php -------------------------------------------------------------------------------- /src/Context/Cart/TaxRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Cart/TaxRule.php -------------------------------------------------------------------------------- /src/Context/ContextResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/ContextResolver.php -------------------------------------------------------------------------------- /src/Context/Gateway/Checkout/CheckoutGatewayAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Gateway/Checkout/CheckoutGatewayAction.php -------------------------------------------------------------------------------- /src/Context/Gateway/Context/ContextGatewayAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Gateway/Context/ContextGatewayAction.php -------------------------------------------------------------------------------- /src/Context/Gateway/InAppFeatures/FilterAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Gateway/InAppFeatures/FilterAction.php -------------------------------------------------------------------------------- /src/Context/InAppPurchase/HasMatchingDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/InAppPurchase/HasMatchingDomain.php -------------------------------------------------------------------------------- /src/Context/InAppPurchase/HasValidRSAJWKSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/InAppPurchase/HasValidRSAJWKSignature.php -------------------------------------------------------------------------------- /src/Context/InAppPurchase/InAppPurchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/InAppPurchase/InAppPurchase.php -------------------------------------------------------------------------------- /src/Context/InAppPurchase/InAppPurchaseProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/InAppPurchase/InAppPurchaseProvider.php -------------------------------------------------------------------------------- /src/Context/InAppPurchase/SBPStoreKeyFetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/InAppPurchase/SBPStoreKeyFetcher.php -------------------------------------------------------------------------------- /src/Context/Module/ModuleAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Module/ModuleAction.php -------------------------------------------------------------------------------- /src/Context/Order/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Order/Order.php -------------------------------------------------------------------------------- /src/Context/Order/OrderCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Order/OrderCustomer.php -------------------------------------------------------------------------------- /src/Context/Order/OrderDelivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Order/OrderDelivery.php -------------------------------------------------------------------------------- /src/Context/Order/OrderLineItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Order/OrderLineItem.php -------------------------------------------------------------------------------- /src/Context/Order/OrderTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Order/OrderTransaction.php -------------------------------------------------------------------------------- /src/Context/Order/StateMachineState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Order/StateMachineState.php -------------------------------------------------------------------------------- /src/Context/Payment/PaymentCaptureAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Payment/PaymentCaptureAction.php -------------------------------------------------------------------------------- /src/Context/Payment/PaymentFinalizeAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Payment/PaymentFinalizeAction.php -------------------------------------------------------------------------------- /src/Context/Payment/PaymentPayAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Payment/PaymentPayAction.php -------------------------------------------------------------------------------- /src/Context/Payment/PaymentRecurringAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Payment/PaymentRecurringAction.php -------------------------------------------------------------------------------- /src/Context/Payment/PaymentValidateAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Payment/PaymentValidateAction.php -------------------------------------------------------------------------------- /src/Context/Payment/RecurringData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Payment/RecurringData.php -------------------------------------------------------------------------------- /src/Context/Payment/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Payment/Refund.php -------------------------------------------------------------------------------- /src/Context/Payment/RefundAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Payment/RefundAction.php -------------------------------------------------------------------------------- /src/Context/Payment/RefundTransactionCapture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Payment/RefundTransactionCapture.php -------------------------------------------------------------------------------- /src/Context/Response/Customer/AddressResponseStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Response/Customer/AddressResponseStruct.php -------------------------------------------------------------------------------- /src/Context/Response/Customer/CustomerResponseStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Response/Customer/CustomerResponseStruct.php -------------------------------------------------------------------------------- /src/Context/Response/ResponseStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Response/ResponseStruct.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/Address.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/Country.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/CountryState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/CountryState.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/Currency.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/Customer.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/LanguageInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/LanguageInfo.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/PaymentMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/PaymentMethod.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/RoundingConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/RoundingConfig.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/SalesChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/SalesChannel.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/SalesChannelContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/SalesChannelContext.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/SalesChannelDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/SalesChannelDomain.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/Salutation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/Salutation.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/ShippingLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/ShippingLocation.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/ShippingMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/ShippingMethod.php -------------------------------------------------------------------------------- /src/Context/SalesChannelContext/TaxInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/SalesChannelContext/TaxInfo.php -------------------------------------------------------------------------------- /src/Context/Storefront/StorefrontAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Storefront/StorefrontAction.php -------------------------------------------------------------------------------- /src/Context/Storefront/StorefrontClaims.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Storefront/StorefrontClaims.php -------------------------------------------------------------------------------- /src/Context/TaxProvider/TaxProviderAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/TaxProvider/TaxProviderAction.php -------------------------------------------------------------------------------- /src/Context/Trait/CustomFieldsAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Trait/CustomFieldsAware.php -------------------------------------------------------------------------------- /src/Context/Webhook/WebhookAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Context/Webhook/WebhookAction.php -------------------------------------------------------------------------------- /src/Event/AbstractAppLifecycleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Event/AbstractAppLifecycleEvent.php -------------------------------------------------------------------------------- /src/Event/BeforeRegistrationCompletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Event/BeforeRegistrationCompletedEvent.php -------------------------------------------------------------------------------- /src/Event/BeforeRegistrationStartsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Event/BeforeRegistrationStartsEvent.php -------------------------------------------------------------------------------- /src/Event/BeforeShopActivateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Event/BeforeShopActivateEvent.php -------------------------------------------------------------------------------- /src/Event/BeforeShopDeactivatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Event/BeforeShopDeactivatedEvent.php -------------------------------------------------------------------------------- /src/Event/BeforeShopDeletionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Event/BeforeShopDeletionEvent.php -------------------------------------------------------------------------------- /src/Event/RegistrationCompletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Event/RegistrationCompletedEvent.php -------------------------------------------------------------------------------- /src/Event/ShopActivatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Event/ShopActivatedEvent.php -------------------------------------------------------------------------------- /src/Event/ShopDeactivatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Event/ShopDeactivatedEvent.php -------------------------------------------------------------------------------- /src/Event/ShopDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Event/ShopDeletedEvent.php -------------------------------------------------------------------------------- /src/Exception/MalformedWebhookBodyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Exception/MalformedWebhookBodyException.php -------------------------------------------------------------------------------- /src/Exception/MissingClaimException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Exception/MissingClaimException.php -------------------------------------------------------------------------------- /src/Exception/MissingShopParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Exception/MissingShopParameterException.php -------------------------------------------------------------------------------- /src/Exception/ShopNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Exception/ShopNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/SignatureInvalidException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Exception/SignatureInvalidException.php -------------------------------------------------------------------------------- /src/Exception/SignatureNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Exception/SignatureNotFoundException.php -------------------------------------------------------------------------------- /src/Framework/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Framework/Collection.php -------------------------------------------------------------------------------- /src/Gateway/Checkout/CheckoutGatewayCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Checkout/CheckoutGatewayCommand.php -------------------------------------------------------------------------------- /src/Gateway/Checkout/Command/AddCartErrorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Checkout/Command/AddCartErrorCommand.php -------------------------------------------------------------------------------- /src/Gateway/Checkout/Command/AddPaymentMethodCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Checkout/Command/AddPaymentMethodCommand.php -------------------------------------------------------------------------------- /src/Gateway/Checkout/Command/AddPaymentMethodExtensionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Checkout/Command/AddPaymentMethodExtensionCommand.php -------------------------------------------------------------------------------- /src/Gateway/Checkout/Command/AddShippingMethodCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Checkout/Command/AddShippingMethodCommand.php -------------------------------------------------------------------------------- /src/Gateway/Checkout/Command/AddShippingMethodExtensionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Checkout/Command/AddShippingMethodExtensionCommand.php -------------------------------------------------------------------------------- /src/Gateway/Checkout/Command/RemovePaymentMethodCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Checkout/Command/RemovePaymentMethodCommand.php -------------------------------------------------------------------------------- /src/Gateway/Checkout/Command/RemoveShippingMethodCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Checkout/Command/RemoveShippingMethodCommand.php -------------------------------------------------------------------------------- /src/Gateway/Context/Command/AddCustomerMessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Context/Command/AddCustomerMessageCommand.php -------------------------------------------------------------------------------- /src/Gateway/Context/Command/ChangeBillingAddressCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Context/Command/ChangeBillingAddressCommand.php -------------------------------------------------------------------------------- /src/Gateway/Context/Command/ChangeCurrencyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Context/Command/ChangeCurrencyCommand.php -------------------------------------------------------------------------------- /src/Gateway/Context/Command/ChangeLanguageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Context/Command/ChangeLanguageCommand.php -------------------------------------------------------------------------------- /src/Gateway/Context/Command/ChangePaymentMethodCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Context/Command/ChangePaymentMethodCommand.php -------------------------------------------------------------------------------- /src/Gateway/Context/Command/ChangeShippingAddressCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Context/Command/ChangeShippingAddressCommand.php -------------------------------------------------------------------------------- /src/Gateway/Context/Command/ChangeShippingLocationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Context/Command/ChangeShippingLocationCommand.php -------------------------------------------------------------------------------- /src/Gateway/Context/Command/ChangeShippingMethodCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Context/Command/ChangeShippingMethodCommand.php -------------------------------------------------------------------------------- /src/Gateway/Context/Command/LoginCustomerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Context/Command/LoginCustomerCommand.php -------------------------------------------------------------------------------- /src/Gateway/Context/Command/RegisterCustomerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Context/Command/RegisterCustomerCommand.php -------------------------------------------------------------------------------- /src/Gateway/Context/ContextGatewayCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Gateway/Context/ContextGatewayCommand.php -------------------------------------------------------------------------------- /src/HttpClient/AuthenticatedClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/HttpClient/AuthenticatedClient.php -------------------------------------------------------------------------------- /src/HttpClient/ClientFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/HttpClient/ClientFactory.php -------------------------------------------------------------------------------- /src/HttpClient/Exception/AuthenticationFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/HttpClient/Exception/AuthenticationFailedException.php -------------------------------------------------------------------------------- /src/HttpClient/LoggerClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/HttpClient/LoggerClient.php -------------------------------------------------------------------------------- /src/HttpClient/NullCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/HttpClient/NullCache.php -------------------------------------------------------------------------------- /src/HttpClient/SimpleHttpClient/SimpleHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/HttpClient/SimpleHttpClient/SimpleHttpClient.php -------------------------------------------------------------------------------- /src/HttpClient/SimpleHttpClient/SimpleHttpClientResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/HttpClient/SimpleHttpClient/SimpleHttpClientResponse.php -------------------------------------------------------------------------------- /src/Registration/RandomStringShopSecretGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Registration/RandomStringShopSecretGenerator.php -------------------------------------------------------------------------------- /src/Registration/RegistrationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Registration/RegistrationService.php -------------------------------------------------------------------------------- /src/Registration/ShopSecretGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Registration/ShopSecretGeneratorInterface.php -------------------------------------------------------------------------------- /src/Response/ActionButtonResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Response/ActionButtonResponse.php -------------------------------------------------------------------------------- /src/Response/GatewayResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Response/GatewayResponse.php -------------------------------------------------------------------------------- /src/Response/InAppPurchasesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Response/InAppPurchasesResponse.php -------------------------------------------------------------------------------- /src/Response/PaymentResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Response/PaymentResponse.php -------------------------------------------------------------------------------- /src/Response/RefundResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Response/RefundResponse.php -------------------------------------------------------------------------------- /src/Shop/ShopInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Shop/ShopInterface.php -------------------------------------------------------------------------------- /src/Shop/ShopRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Shop/ShopRepositoryInterface.php -------------------------------------------------------------------------------- /src/Shop/ShopResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Shop/ShopResolver.php -------------------------------------------------------------------------------- /src/TaxProvider/CalculatedTax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/TaxProvider/CalculatedTax.php -------------------------------------------------------------------------------- /src/TaxProvider/TaxProviderResponseBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/TaxProvider/TaxProviderResponseBuilder.php -------------------------------------------------------------------------------- /src/Test/JWKSHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Test/JWKSHelper.php -------------------------------------------------------------------------------- /src/Test/MockClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Test/MockClient.php -------------------------------------------------------------------------------- /src/Test/MockShop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Test/MockShop.php -------------------------------------------------------------------------------- /src/Test/MockShopRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Test/MockShopRepository.php -------------------------------------------------------------------------------- /src/Test/_fixtures/jwks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Test/_fixtures/jwks.json -------------------------------------------------------------------------------- /src/Test/_fixtures/jwks_private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-php-sdk/HEAD/src/Test/_fixtures/jwks_private.pem --------------------------------------------------------------------------------