├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── quickpay.php └── src ├── DataObjects ├── .gitkeep ├── Basket.php ├── BasketItem.php ├── OptionalAddress.php ├── Payment.php ├── PaymentLink.php ├── Subscription.php ├── SubscriptionLink.php └── SubscriptionRecurring.php ├── Exceptions ├── CardNotAccepted.php ├── ConfigNotCorrect.php ├── Payments │ ├── AuthorizePaymentFailed.php │ ├── CancelPaymentFailed.php │ ├── CapturePaymentFailed.php │ ├── CreateFraudConfirmationReportFailed.php │ ├── CreatePaymentFailed.php │ ├── CreatePaymentLinkFailed.php │ ├── CreatePaymentSessionFailed.php │ ├── DeletePaymentLinkFailed.php │ ├── FetchPaymentFailed.php │ ├── FetchPaymentsFailed.php │ ├── RefundPaymentFailed.php │ └── RenewPaymentFailed.php ├── QuickPayTestNotAllowed.php ├── QuickPayValidationError.php └── Subscriptions │ ├── .gitkeep │ ├── AuthorizeSubscriptionFailed.php │ ├── CancelSubscriptionFailed.php │ ├── CreateRecurringFailed.php │ ├── CreateSubscriptionFailed.php │ ├── CreateSubscriptionLinkFailed.php │ ├── DeletePaymentLinkFailed.php │ ├── FetchSubscriptionFailed.php │ ├── FetchSubscriptionsFailed.php │ ├── FraudReportSubscriptionFailed.php │ ├── GetSubscriptionPaymentsFailed.php │ └── UpdateSubscriptionFailed.php ├── Facades └── Quickpay.php ├── Quickpay.php ├── QuickpayServiceProvider.php └── Resources ├── Concerns └── QuickpayApiConsumer.php ├── PaymentResource.php └── SubscriptionResource.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/composer.json -------------------------------------------------------------------------------- /config/quickpay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/config/quickpay.php -------------------------------------------------------------------------------- /src/DataObjects/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DataObjects/Basket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/DataObjects/Basket.php -------------------------------------------------------------------------------- /src/DataObjects/BasketItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/DataObjects/BasketItem.php -------------------------------------------------------------------------------- /src/DataObjects/OptionalAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/DataObjects/OptionalAddress.php -------------------------------------------------------------------------------- /src/DataObjects/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/DataObjects/Payment.php -------------------------------------------------------------------------------- /src/DataObjects/PaymentLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/DataObjects/PaymentLink.php -------------------------------------------------------------------------------- /src/DataObjects/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/DataObjects/Subscription.php -------------------------------------------------------------------------------- /src/DataObjects/SubscriptionLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/DataObjects/SubscriptionLink.php -------------------------------------------------------------------------------- /src/DataObjects/SubscriptionRecurring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/DataObjects/SubscriptionRecurring.php -------------------------------------------------------------------------------- /src/Exceptions/CardNotAccepted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/CardNotAccepted.php -------------------------------------------------------------------------------- /src/Exceptions/ConfigNotCorrect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/ConfigNotCorrect.php -------------------------------------------------------------------------------- /src/Exceptions/Payments/AuthorizePaymentFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Payments/AuthorizePaymentFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Payments/CancelPaymentFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Payments/CancelPaymentFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Payments/CapturePaymentFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Payments/CapturePaymentFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Payments/CreateFraudConfirmationReportFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Payments/CreateFraudConfirmationReportFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Payments/CreatePaymentFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Payments/CreatePaymentFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Payments/CreatePaymentLinkFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Payments/CreatePaymentLinkFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Payments/CreatePaymentSessionFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Payments/CreatePaymentSessionFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Payments/DeletePaymentLinkFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Payments/DeletePaymentLinkFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Payments/FetchPaymentFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Payments/FetchPaymentFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Payments/FetchPaymentsFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Payments/FetchPaymentsFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Payments/RefundPaymentFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Payments/RefundPaymentFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Payments/RenewPaymentFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Payments/RenewPaymentFailed.php -------------------------------------------------------------------------------- /src/Exceptions/QuickPayTestNotAllowed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/QuickPayTestNotAllowed.php -------------------------------------------------------------------------------- /src/Exceptions/QuickPayValidationError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/QuickPayValidationError.php -------------------------------------------------------------------------------- /src/Exceptions/Subscriptions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Exceptions/Subscriptions/AuthorizeSubscriptionFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Subscriptions/AuthorizeSubscriptionFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Subscriptions/CancelSubscriptionFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Subscriptions/CancelSubscriptionFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Subscriptions/CreateRecurringFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Subscriptions/CreateRecurringFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Subscriptions/CreateSubscriptionFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Subscriptions/CreateSubscriptionFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Subscriptions/CreateSubscriptionLinkFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Subscriptions/CreateSubscriptionLinkFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Subscriptions/DeletePaymentLinkFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Subscriptions/DeletePaymentLinkFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Subscriptions/FetchSubscriptionFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Subscriptions/FetchSubscriptionFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Subscriptions/FetchSubscriptionsFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Subscriptions/FetchSubscriptionsFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Subscriptions/FraudReportSubscriptionFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Subscriptions/FraudReportSubscriptionFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Subscriptions/GetSubscriptionPaymentsFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Subscriptions/GetSubscriptionPaymentsFailed.php -------------------------------------------------------------------------------- /src/Exceptions/Subscriptions/UpdateSubscriptionFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Exceptions/Subscriptions/UpdateSubscriptionFailed.php -------------------------------------------------------------------------------- /src/Facades/Quickpay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Facades/Quickpay.php -------------------------------------------------------------------------------- /src/Quickpay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Quickpay.php -------------------------------------------------------------------------------- /src/QuickpayServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/QuickpayServiceProvider.php -------------------------------------------------------------------------------- /src/Resources/Concerns/QuickpayApiConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Resources/Concerns/QuickpayApiConsumer.php -------------------------------------------------------------------------------- /src/Resources/PaymentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Resources/PaymentResource.php -------------------------------------------------------------------------------- /src/Resources/SubscriptionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortenebak/laravel-quickpay/HEAD/src/Resources/SubscriptionResource.php --------------------------------------------------------------------------------