Find a file
Emili Castells 088a2d985b
Merge pull request #1201 from woocommerce/PCP-1456-wrong-redirect
Redirect to connection tab after manual credentials input
2023-02-21 12:39:23 +01:00
.ddev Use Composer 2 2022-11-09 16:00:42 +02:00
.github Use different WC versions in e2e tests 2022-11-09 17:10:29 +02:00
.psalm update stubs. 2022-12-12 17:43:46 +04:00
lib Fix PHP 8.1 deprecated error 2022-11-21 17:43:27 +04:00
modules Redirect to connection tab after manual credentials input 2023-02-21 10:38:11 +02:00
src Merge branch 'trunk' into pcp-918-php-72 2022-11-15 12:36:20 +02:00
tests Add tests 2023-02-07 15:30:59 +02:00
wordpress_org_assets Fix merge conflicts 2021-09-30 12:52:15 +02:00
.editorconfig Add GH Action for building package 2022-07-29 17:09:40 +03:00
.env.e2e.example Add tests using real WC 2022-06-17 09:40:00 +03:00
.gitattributes Add tests using real WC 2022-06-17 09:40:00 +03:00
.gitignore Add tests using real WC 2022-06-17 09:40:00 +03:00
bootstrap.php Add isolated container and dhii modularity deps 2022-11-09 10:13:03 +02:00
changelog.txt Update 2.0.2 release date 2023-01-31 20:36:28 -03:00
composer.json Merge branch 'trunk' into pcp-918-php-72 2022-11-15 12:36:20 +02:00
composer.lock Remove request id repo from uninstall module 2023-01-17 15:09:36 +01:00
LICENSE Initial commit 2020-03-19 16:47:08 +01:00
modules.php Include the uninstall module. 2022-12-07 16:52:30 +04:00
package.json Remove .gitignore and other files during package build in all subdirs 2023-01-13 17:14:43 +02:00
patchwork.json Move saved card payment logic into vaulting (WIP) 2022-08-11 14:22:12 +02:00
phpcs.xml.dist Update phpcs testVersion 2022-11-14 10:21:01 +02:00
phpunit.xml.dist delete some references to modules.locale 2020-09-01 14:53:03 +03:00
psalm-baseline.xml Add WC Subscriptions stubs 2022-03-23 10:17:58 +02:00
psalm.xml.dist Fix new psalm errors 2022-11-09 16:04:31 +02:00
README.md Update PHP version 2022-12-14 11:39:22 +01:00
readme.txt Update changelog 2023-01-23 17:12:39 +01:00
uninstall.php Require main plugin file. 2022-12-15 20:15:24 +04:00
woocommerce-paypal-payments.php Bump 2.0.2 version 2023-01-11 15:13:59 +01:00
yarn.lock Make js build parallel and add a sctipt for watching changes 2022-10-21 11:27:03 +03:00

WooCommerce PayPal Payments

PayPal's latest complete payments processing solution. Accept PayPal, Pay Later, credit/debit cards, alternative digital wallets local payment types and bank accounts. Turn on only PayPal options or process a full suite of payment methods. Enable global transaction with extensive currency and country coverage.

Dependencies

  • PHP >= 7.2
  • WordPress >=5.3
  • WooCommerce >=4.5

Development

Install dependencies & build

  • $ composer install
  • $ yarn install

Optionally, change the PAYPAL_INTEGRATION_DATE constant to gmdate( 'Y-m-d' ) to run the latest PayPal JavaScript SDK

Unit tests and code style

  1. $ composer install
  2. $ ./vendor/bin/phpunit
  3. $ ./vendor/bin/phpcs
  4. $ ./vendor/bin/psalm

Building a release package

If you want to build a release package (that can be used for deploying a new version on wordpress.org or manual installation on a WP website via ZIP uploading), follow these steps:

  1. Clone the repository and cd into it.
  2. Make sure you have the version in the plugin root file updated.
  3. Update the PayPal JavaScript SDK integration date by using the current date for the PAYPAL_INTEGRATION_DATE constant.
  4. The following command should get you a ZIP file ready to be used on a WordPress site:
$ yarn run build

or if using the DDEV setup:

$ yarn run ddev:build-package

Setup

You can install WooCommerce PayPal Payments locally using the dev environment of your preference, or you can use the DDEV setup provided in this repository which includes WP, WC and all developments tools.

To set up the DDEV environment, follow these steps:

  1. Install Docker and DDEV.
  2. Edit the configuration in the .ddev/config.yml file if needed.
  3. $ ddev start
  4. $ ddev orchestrate to install WP/WC.
  5. Open https://wc-pp.ddev.site

Use $ ddev orchestrate -f for reinstalattion (will destroy all site data). You may also need $ ddev restart to apply the config changes.

Running tests and other tasks in the DDEV environment

Tests and code style:

  • $ yarn ddev:test
  • $ yarn ddev:lint
  • $ yarn ddev:fix-lint - PHPCBF to fix basic code style issued

See package.json for other useful commands.

For debugging, see the DDEV docs. Enable xdebug via $ ddev xdebug, and press Start Listening for PHP Debug Connections in PHPStorm. After creating the server in the PHPStorm dialog, you need to set the local project path for the server plugin path. It should look like this.

Test account setup

You will need a PayPal sandbox merchant and customer accounts to configure the plugin and make test purchases with it.

For setting up test accounts follow these instructions.

Webhooks

For testing webhooks locally, follow these steps to set up ngrok:

  1. Install ngrok.

  • If using DDEV, run our wrapper Bash script which will start ddev share and replace the URLs in the WP database:

    $ .ddev/bin/share
    
  • For other environments, run

    $ ngrok http -host-header=rewrite wc-pp.myhost
    

    and in your environment variables (accessible to the web server) add NGROK_HOST with the host that you got from ngrok, like abcd1234.ngrok.io. ngrok will be used only for the webhook listening URL. The URLs displayed on the WordPress pages, used in redirects, etc. will still remain local.

  1. Complete onboarding or resubscribe webhooks on the Webhooks Status page.

License

GPL-2.0 License

Contributing

All feedback / bug reports / pull requests are welcome.