├── .gitignore ├── LICENSE ├── README.md ├── assets ├── img │ ├── amex.svg │ ├── diners.svg │ ├── discover.svg │ ├── giropay.svg │ ├── ideal.svg │ ├── jcb.svg │ ├── mastercard.svg │ ├── payment.png │ ├── paypal.svg │ ├── sofort.svg │ ├── spin.svg │ ├── unionpay.svg │ └── visa.svg └── js │ ├── fastspring-checkout-integrated.js │ ├── fastspring-checkout.js │ └── fastspring-checkout.min.js ├── includes ├── class-wc-gateway-fastspring-builder.php ├── class-wc-gateway-fastspring-handler.php ├── class-wc-gateway-fastspring.php └── settings-fastspring.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── uninstall.php └── woocommerce-gateway-fastspring.php /.gitignore: -------------------------------------------------------------------------------- 1 | /deploy.sh 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/README.md -------------------------------------------------------------------------------- /assets/img/amex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/amex.svg -------------------------------------------------------------------------------- /assets/img/diners.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/diners.svg -------------------------------------------------------------------------------- /assets/img/discover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/discover.svg -------------------------------------------------------------------------------- /assets/img/giropay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/giropay.svg -------------------------------------------------------------------------------- /assets/img/ideal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/ideal.svg -------------------------------------------------------------------------------- /assets/img/jcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/jcb.svg -------------------------------------------------------------------------------- /assets/img/mastercard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/mastercard.svg -------------------------------------------------------------------------------- /assets/img/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/payment.png -------------------------------------------------------------------------------- /assets/img/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/paypal.svg -------------------------------------------------------------------------------- /assets/img/sofort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/sofort.svg -------------------------------------------------------------------------------- /assets/img/spin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/spin.svg -------------------------------------------------------------------------------- /assets/img/unionpay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/unionpay.svg -------------------------------------------------------------------------------- /assets/img/visa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/img/visa.svg -------------------------------------------------------------------------------- /assets/js/fastspring-checkout-integrated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/js/fastspring-checkout-integrated.js -------------------------------------------------------------------------------- /assets/js/fastspring-checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/js/fastspring-checkout.js -------------------------------------------------------------------------------- /assets/js/fastspring-checkout.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/assets/js/fastspring-checkout.min.js -------------------------------------------------------------------------------- /includes/class-wc-gateway-fastspring-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/includes/class-wc-gateway-fastspring-builder.php -------------------------------------------------------------------------------- /includes/class-wc-gateway-fastspring-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/includes/class-wc-gateway-fastspring-handler.php -------------------------------------------------------------------------------- /includes/class-wc-gateway-fastspring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/includes/class-wc-gateway-fastspring.php -------------------------------------------------------------------------------- /includes/settings-fastspring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/includes/settings-fastspring.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/screenshot-1.png -------------------------------------------------------------------------------- /screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/screenshot-2.png -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/uninstall.php -------------------------------------------------------------------------------- /woocommerce-gateway-fastspring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberwombat/woocommerce-fastspring-payment-gateway/HEAD/woocommerce-gateway-fastspring.php --------------------------------------------------------------------------------