├── .github └── workflows │ ├── build.yml │ ├── release.sh │ ├── release.yml │ └── tests.yml ├── .gitignore ├── BitPayLib ├── Blocks │ └── class-bitpaypaymentsblocks.php ├── Exception │ └── class-bitpayinvalidorder.php ├── class-bitpaycancelorder.php ├── class-bitpaycart.php ├── class-bitpaycheckouttransactions.php ├── class-bitpayclientfactory.php ├── class-bitpaycreateorder.php ├── class-bitpayinvoicecreate.php ├── class-bitpayinvoicefactory.php ├── class-bitpayipnprocess.php ├── class-bitpaylogger.php ├── class-bitpaypaymentsettings.php ├── class-bitpaypluginsetup.php ├── class-bitpaysupportpackage.php ├── class-bitpaywebhookverifier.php ├── class-bitpaywordpresshelper.php ├── class-wcgatewaybitpay.php └── trait-wpdbhelper.php ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── banner-1544x500.png ├── banner-772x250.png ├── icon-256x256.png ├── screenshot-1.png ├── screenshot-10.png ├── screenshot-11.png ├── screenshot-12.png ├── screenshot-13.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png ├── screenshot-6.png ├── screenshot-7.png ├── screenshot-8.png └── screenshot-9.png ├── bitpay.css ├── codeception.dist.yml ├── composer.json ├── composer.lock ├── images ├── BitPay-Accepted-Card-Alt-DarkMode.svg ├── BitPay-Accepted-Card-Alt.svg ├── BitPay-Accepted-Card-DarkMode.svg ├── BitPay-Accepted-Card-GrayScale.svg ├── BitPay-Accepted-Card.svg ├── BitPay-Accepted-CardGroup-DarkMode.svg ├── BitPay-Accepted-CardGroup.svg ├── Pay-with-BitPay-CardGroup-DarkMode.svg ├── Pay-with-BitPay-CardGroup.svg ├── PayWith-BitPay-Card-Alt.svg ├── PayWith-BitPay-Card-DarkMode.svg ├── PayWith-BitPay-Card-GrayScale.svg ├── PayWith-BitPay-Card2x.svg └── bitpay-currency-group.svg ├── index.php ├── js ├── bitpay_payments_blocks.js └── wc_gateway_bitpay.js ├── php-scoper.phar ├── phpcs.xml ├── phpunit.xml.dist ├── readme.txt ├── scoper.inc.php └── tests ├── .env.dist ├── .gitignore ├── EndToEnd.suite.yml ├── EndToEnd ├── BitPayAdminSettingsCest.php ├── CreateOrderWithBitPayCest.php ├── Support │ ├── Data │ │ └── .gitkeep │ ├── EndToEndTester.php │ └── _generated │ │ └── .gitignore └── _bootstrap.php └── Unit ├── .gitignore ├── BitPayLib ├── json │ ├── bitpay_completed_ipn_webhook.json │ ├── bitpay_confirmed_ipn_webhook.json │ ├── bitpay_declined_ipn_webhook.json │ ├── bitpay_expired_ipn_webhook.json │ ├── bitpay_invalid_ipn_webhook.json │ ├── bitpay_paid_ipn_webhook.json │ └── bitpay_refunded_ipn_webhook.json ├── test-bitpayipnprocess.php ├── test-bitpaywebhookverifier.php └── test-classbitpayinvoicefactory.php ├── bootstrap.php ├── index.tests.php └── wp-config.dist.php /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/.github/workflows/release.sh -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /BitPayLib/Blocks/class-bitpaypaymentsblocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/Blocks/class-bitpaypaymentsblocks.php -------------------------------------------------------------------------------- /BitPayLib/Exception/class-bitpayinvalidorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/Exception/class-bitpayinvalidorder.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpaycancelorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpaycancelorder.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpaycart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpaycart.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpaycheckouttransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpaycheckouttransactions.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpayclientfactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpayclientfactory.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpaycreateorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpaycreateorder.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpayinvoicecreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpayinvoicecreate.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpayinvoicefactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpayinvoicefactory.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpayipnprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpayipnprocess.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpaylogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpaylogger.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpaypaymentsettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpaypaymentsettings.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpaypluginsetup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpaypluginsetup.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpaysupportpackage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpaysupportpackage.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpaywebhookverifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpaywebhookverifier.php -------------------------------------------------------------------------------- /BitPayLib/class-bitpaywordpresshelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-bitpaywordpresshelper.php -------------------------------------------------------------------------------- /BitPayLib/class-wcgatewaybitpay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/class-wcgatewaybitpay.php -------------------------------------------------------------------------------- /BitPayLib/trait-wpdbhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/BitPayLib/trait-wpdbhelper.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/banner-1544x500.png -------------------------------------------------------------------------------- /assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/banner-772x250.png -------------------------------------------------------------------------------- /assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/icon-256x256.png -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /assets/screenshot-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-10.png -------------------------------------------------------------------------------- /assets/screenshot-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-11.png -------------------------------------------------------------------------------- /assets/screenshot-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-12.png -------------------------------------------------------------------------------- /assets/screenshot-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-13.png -------------------------------------------------------------------------------- /assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-2.png -------------------------------------------------------------------------------- /assets/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-3.png -------------------------------------------------------------------------------- /assets/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-4.png -------------------------------------------------------------------------------- /assets/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-5.png -------------------------------------------------------------------------------- /assets/screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-6.png -------------------------------------------------------------------------------- /assets/screenshot-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-7.png -------------------------------------------------------------------------------- /assets/screenshot-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-8.png -------------------------------------------------------------------------------- /assets/screenshot-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/assets/screenshot-9.png -------------------------------------------------------------------------------- /bitpay.css: -------------------------------------------------------------------------------- 1 | button#place_order{ 2 | opacity: 0; 3 | } 4 | -------------------------------------------------------------------------------- /codeception.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/codeception.dist.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/composer.lock -------------------------------------------------------------------------------- /images/BitPay-Accepted-Card-Alt-DarkMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/BitPay-Accepted-Card-Alt-DarkMode.svg -------------------------------------------------------------------------------- /images/BitPay-Accepted-Card-Alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/BitPay-Accepted-Card-Alt.svg -------------------------------------------------------------------------------- /images/BitPay-Accepted-Card-DarkMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/BitPay-Accepted-Card-DarkMode.svg -------------------------------------------------------------------------------- /images/BitPay-Accepted-Card-GrayScale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/BitPay-Accepted-Card-GrayScale.svg -------------------------------------------------------------------------------- /images/BitPay-Accepted-Card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/BitPay-Accepted-Card.svg -------------------------------------------------------------------------------- /images/BitPay-Accepted-CardGroup-DarkMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/BitPay-Accepted-CardGroup-DarkMode.svg -------------------------------------------------------------------------------- /images/BitPay-Accepted-CardGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/BitPay-Accepted-CardGroup.svg -------------------------------------------------------------------------------- /images/Pay-with-BitPay-CardGroup-DarkMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/Pay-with-BitPay-CardGroup-DarkMode.svg -------------------------------------------------------------------------------- /images/Pay-with-BitPay-CardGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/Pay-with-BitPay-CardGroup.svg -------------------------------------------------------------------------------- /images/PayWith-BitPay-Card-Alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/PayWith-BitPay-Card-Alt.svg -------------------------------------------------------------------------------- /images/PayWith-BitPay-Card-DarkMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/PayWith-BitPay-Card-DarkMode.svg -------------------------------------------------------------------------------- /images/PayWith-BitPay-Card-GrayScale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/PayWith-BitPay-Card-GrayScale.svg -------------------------------------------------------------------------------- /images/PayWith-BitPay-Card2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/PayWith-BitPay-Card2x.svg -------------------------------------------------------------------------------- /images/bitpay-currency-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/images/bitpay-currency-group.svg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/index.php -------------------------------------------------------------------------------- /js/bitpay_payments_blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/js/bitpay_payments_blocks.js -------------------------------------------------------------------------------- /js/wc_gateway_bitpay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/js/wc_gateway_bitpay.js -------------------------------------------------------------------------------- /php-scoper.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/php-scoper.phar -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/readme.txt -------------------------------------------------------------------------------- /scoper.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/scoper.inc.php -------------------------------------------------------------------------------- /tests/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/.env.dist -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .phpunit.result.cache 3 | EndToEnd/_output/* -------------------------------------------------------------------------------- /tests/EndToEnd.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/EndToEnd.suite.yml -------------------------------------------------------------------------------- /tests/EndToEnd/BitPayAdminSettingsCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/EndToEnd/BitPayAdminSettingsCest.php -------------------------------------------------------------------------------- /tests/EndToEnd/CreateOrderWithBitPayCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/EndToEnd/CreateOrderWithBitPayCest.php -------------------------------------------------------------------------------- /tests/EndToEnd/Support/Data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/EndToEnd/Support/EndToEndTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/EndToEnd/Support/EndToEndTester.php -------------------------------------------------------------------------------- /tests/EndToEnd/Support/_generated/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/EndToEnd/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/EndToEnd/_bootstrap.php -------------------------------------------------------------------------------- /tests/Unit/.gitignore: -------------------------------------------------------------------------------- 1 | wp-config.php -------------------------------------------------------------------------------- /tests/Unit/BitPayLib/json/bitpay_completed_ipn_webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/BitPayLib/json/bitpay_completed_ipn_webhook.json -------------------------------------------------------------------------------- /tests/Unit/BitPayLib/json/bitpay_confirmed_ipn_webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/BitPayLib/json/bitpay_confirmed_ipn_webhook.json -------------------------------------------------------------------------------- /tests/Unit/BitPayLib/json/bitpay_declined_ipn_webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/BitPayLib/json/bitpay_declined_ipn_webhook.json -------------------------------------------------------------------------------- /tests/Unit/BitPayLib/json/bitpay_expired_ipn_webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/BitPayLib/json/bitpay_expired_ipn_webhook.json -------------------------------------------------------------------------------- /tests/Unit/BitPayLib/json/bitpay_invalid_ipn_webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/BitPayLib/json/bitpay_invalid_ipn_webhook.json -------------------------------------------------------------------------------- /tests/Unit/BitPayLib/json/bitpay_paid_ipn_webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/BitPayLib/json/bitpay_paid_ipn_webhook.json -------------------------------------------------------------------------------- /tests/Unit/BitPayLib/json/bitpay_refunded_ipn_webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/BitPayLib/json/bitpay_refunded_ipn_webhook.json -------------------------------------------------------------------------------- /tests/Unit/BitPayLib/test-bitpayipnprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/BitPayLib/test-bitpayipnprocess.php -------------------------------------------------------------------------------- /tests/Unit/BitPayLib/test-bitpaywebhookverifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/BitPayLib/test-bitpaywebhookverifier.php -------------------------------------------------------------------------------- /tests/Unit/BitPayLib/test-classbitpayinvoicefactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/BitPayLib/test-classbitpayinvoicefactory.php -------------------------------------------------------------------------------- /tests/Unit/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/bootstrap.php -------------------------------------------------------------------------------- /tests/Unit/index.tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/index.tests.php -------------------------------------------------------------------------------- /tests/Unit/wp-config.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitpay-checkout-for-woocommerce/HEAD/tests/Unit/wp-config.dist.php --------------------------------------------------------------------------------