├── .github └── ISSUE_TEMPLATE.md ├── .styleci.yml ├── CHANGELOG.md ├── ISSUE_TEMPLATE ├── bug.md └── feat.md ├── LICENSE.md ├── README.md ├── WORK-FLOW.md ├── composer.json ├── config └── config.php └── src ├── Gateways ├── PagSeguro │ ├── PagSeguro.php │ └── PagSeguroBase.php └── PayPal │ ├── PayPal.php │ └── PayPalBase.php ├── PaymentGateway.php ├── PaymentGatewayFacade.php └── PaymentGatewayServiceProvider.php /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE/feat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/ISSUE_TEMPLATE/feat.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/README.md -------------------------------------------------------------------------------- /WORK-FLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/WORK-FLOW.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/config/config.php -------------------------------------------------------------------------------- /src/Gateways/PagSeguro/PagSeguro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/src/Gateways/PagSeguro/PagSeguro.php -------------------------------------------------------------------------------- /src/Gateways/PagSeguro/PagSeguroBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/src/Gateways/PagSeguro/PagSeguroBase.php -------------------------------------------------------------------------------- /src/Gateways/PayPal/PayPal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/src/Gateways/PayPal/PayPal.php -------------------------------------------------------------------------------- /src/Gateways/PayPal/PayPalBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/src/Gateways/PayPal/PayPalBase.php -------------------------------------------------------------------------------- /src/PaymentGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/src/PaymentGateway.php -------------------------------------------------------------------------------- /src/PaymentGatewayFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/src/PaymentGatewayFacade.php -------------------------------------------------------------------------------- /src/PaymentGatewayServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerandcodeteam/paymentgateway/HEAD/src/PaymentGatewayServiceProvider.php --------------------------------------------------------------------------------