├── .github ├── FUNDING.yml └── workflows │ └── tests.yml ├── LICENSE ├── README.md ├── composer.json ├── config └── newebpay.php └── src ├── Concerns ├── HasEncryption.php ├── HasSender.php └── WithSessionIdKey.php ├── Contracts ├── Httpable.php └── Sender.php ├── Enums ├── Bank.php ├── CVSCOM.php ├── CreditInst.php ├── CreditRememberDemand.php ├── LgsType.php ├── NTCBLocate.php ├── PeriodStartType.php ├── PeriodStatus.php └── PeriodType.php ├── Exceptions └── NewebpayDecodeFailException.php ├── Facades └── NewebPay.php ├── Factory.php ├── NewebPay.php ├── NewebPayCancel.php ├── NewebPayClose.php ├── NewebPayCustomer.php ├── NewebPayMPG.php ├── NewebPayPeriod.php ├── NewebPayPeriodAmt.php ├── NewebPayPeriodNotify.php ├── NewebPayPeriodResult.php ├── NewebPayPeriodStatus.php ├── NewebPayQuery.php ├── NewebPayRequest.php ├── NewebPayResult.php ├── NewebPayServiceProvider.php ├── Results ├── CancelResult.php ├── CloseResult.php ├── Concerns │ └── HasVerifyCheckCode.php ├── CustomerATMResult.php ├── CustomerLgsResult.php ├── CustomerResult.php ├── CustomerStoreBarcodeResult.php ├── CustomerStoreCodeResult.php ├── MPGATMResult.php ├── MPGCreditResult.php ├── MPGEsunWalletResult.php ├── MPGEzPayResult.php ├── MPGLgsResult.php ├── MPGResult.php ├── MPGStoreBarcodeResult.php ├── MPGStoreCodeResult.php ├── MPGTaiwanPayResult.php ├── PeriodAmtResult.php ├── PeriodNotifyResult.php ├── PeriodResult.php ├── PeriodStatusResult.php ├── QueryCreditResult.php ├── QueryDigitalWalletResult.php ├── QueryLgsResult.php ├── QueryPaymentStatusResult.php ├── QueryResult.php └── Result.php └── Senders ├── BackgroundSender.php └── FrontendSender.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: ycs77 2 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/composer.json -------------------------------------------------------------------------------- /config/newebpay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/config/newebpay.php -------------------------------------------------------------------------------- /src/Concerns/HasEncryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Concerns/HasEncryption.php -------------------------------------------------------------------------------- /src/Concerns/HasSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Concerns/HasSender.php -------------------------------------------------------------------------------- /src/Concerns/WithSessionIdKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Concerns/WithSessionIdKey.php -------------------------------------------------------------------------------- /src/Contracts/Httpable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Contracts/Httpable.php -------------------------------------------------------------------------------- /src/Contracts/Sender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Contracts/Sender.php -------------------------------------------------------------------------------- /src/Enums/Bank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Enums/Bank.php -------------------------------------------------------------------------------- /src/Enums/CVSCOM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Enums/CVSCOM.php -------------------------------------------------------------------------------- /src/Enums/CreditInst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Enums/CreditInst.php -------------------------------------------------------------------------------- /src/Enums/CreditRememberDemand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Enums/CreditRememberDemand.php -------------------------------------------------------------------------------- /src/Enums/LgsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Enums/LgsType.php -------------------------------------------------------------------------------- /src/Enums/NTCBLocate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Enums/NTCBLocate.php -------------------------------------------------------------------------------- /src/Enums/PeriodStartType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Enums/PeriodStartType.php -------------------------------------------------------------------------------- /src/Enums/PeriodStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Enums/PeriodStatus.php -------------------------------------------------------------------------------- /src/Enums/PeriodType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Enums/PeriodType.php -------------------------------------------------------------------------------- /src/Exceptions/NewebpayDecodeFailException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Exceptions/NewebpayDecodeFailException.php -------------------------------------------------------------------------------- /src/Facades/NewebPay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Facades/NewebPay.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/NewebPay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPay.php -------------------------------------------------------------------------------- /src/NewebPayCancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayCancel.php -------------------------------------------------------------------------------- /src/NewebPayClose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayClose.php -------------------------------------------------------------------------------- /src/NewebPayCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayCustomer.php -------------------------------------------------------------------------------- /src/NewebPayMPG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayMPG.php -------------------------------------------------------------------------------- /src/NewebPayPeriod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayPeriod.php -------------------------------------------------------------------------------- /src/NewebPayPeriodAmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayPeriodAmt.php -------------------------------------------------------------------------------- /src/NewebPayPeriodNotify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayPeriodNotify.php -------------------------------------------------------------------------------- /src/NewebPayPeriodResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayPeriodResult.php -------------------------------------------------------------------------------- /src/NewebPayPeriodStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayPeriodStatus.php -------------------------------------------------------------------------------- /src/NewebPayQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayQuery.php -------------------------------------------------------------------------------- /src/NewebPayRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayRequest.php -------------------------------------------------------------------------------- /src/NewebPayResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayResult.php -------------------------------------------------------------------------------- /src/NewebPayServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/NewebPayServiceProvider.php -------------------------------------------------------------------------------- /src/Results/CancelResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/CancelResult.php -------------------------------------------------------------------------------- /src/Results/CloseResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/CloseResult.php -------------------------------------------------------------------------------- /src/Results/Concerns/HasVerifyCheckCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/Concerns/HasVerifyCheckCode.php -------------------------------------------------------------------------------- /src/Results/CustomerATMResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/CustomerATMResult.php -------------------------------------------------------------------------------- /src/Results/CustomerLgsResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/CustomerLgsResult.php -------------------------------------------------------------------------------- /src/Results/CustomerResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/CustomerResult.php -------------------------------------------------------------------------------- /src/Results/CustomerStoreBarcodeResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/CustomerStoreBarcodeResult.php -------------------------------------------------------------------------------- /src/Results/CustomerStoreCodeResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/CustomerStoreCodeResult.php -------------------------------------------------------------------------------- /src/Results/MPGATMResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/MPGATMResult.php -------------------------------------------------------------------------------- /src/Results/MPGCreditResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/MPGCreditResult.php -------------------------------------------------------------------------------- /src/Results/MPGEsunWalletResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/MPGEsunWalletResult.php -------------------------------------------------------------------------------- /src/Results/MPGEzPayResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/MPGEzPayResult.php -------------------------------------------------------------------------------- /src/Results/MPGLgsResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/MPGLgsResult.php -------------------------------------------------------------------------------- /src/Results/MPGResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/MPGResult.php -------------------------------------------------------------------------------- /src/Results/MPGStoreBarcodeResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/MPGStoreBarcodeResult.php -------------------------------------------------------------------------------- /src/Results/MPGStoreCodeResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/MPGStoreCodeResult.php -------------------------------------------------------------------------------- /src/Results/MPGTaiwanPayResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/MPGTaiwanPayResult.php -------------------------------------------------------------------------------- /src/Results/PeriodAmtResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/PeriodAmtResult.php -------------------------------------------------------------------------------- /src/Results/PeriodNotifyResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/PeriodNotifyResult.php -------------------------------------------------------------------------------- /src/Results/PeriodResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/PeriodResult.php -------------------------------------------------------------------------------- /src/Results/PeriodStatusResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/PeriodStatusResult.php -------------------------------------------------------------------------------- /src/Results/QueryCreditResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/QueryCreditResult.php -------------------------------------------------------------------------------- /src/Results/QueryDigitalWalletResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/QueryDigitalWalletResult.php -------------------------------------------------------------------------------- /src/Results/QueryLgsResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/QueryLgsResult.php -------------------------------------------------------------------------------- /src/Results/QueryPaymentStatusResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/QueryPaymentStatusResult.php -------------------------------------------------------------------------------- /src/Results/QueryResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/QueryResult.php -------------------------------------------------------------------------------- /src/Results/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Results/Result.php -------------------------------------------------------------------------------- /src/Senders/BackgroundSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Senders/BackgroundSender.php -------------------------------------------------------------------------------- /src/Senders/FrontendSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/laravel-newebpay/HEAD/src/Senders/FrontendSender.php --------------------------------------------------------------------------------