Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/commerce/payment/enable_paypal_payments.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ By using Payum to integrate PayPal into your application, you can offer your cus

Before you can proceed with integrating PayPal, you must [create a PayPal business account](https://www.paypal.com/bizsignup/#/singlePageSignup) and obtain API credentials.

Install the PayPal package:
Install the PayPal package and the required dependencies:

`composer require payum/paypal-express-checkout-nvp php-http/guzzle7-adapter`
```bash
composer require payum/paypal-express-checkout-nvp php-http/guzzle7-adapter php-http/message php-http/message-factory
```

Then, add the following configuration to your YAML configuration file (`payum.yaml` or similar):

Expand Down
8 changes: 5 additions & 3 deletions docs/commerce/payment/enable_stripe_payments.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ By using Payum to integrate Stripe into your application, you can securely proce

Before you can proceed with integrating Stripe, [sign up for a Stripe account](https://dashboard.stripe.com/register) and obtain the API keys required for integration.

Install the Stripe package:
Install the Stripe package and the required dependencies:

`composer require payum/stripe php-http/guzzle7-adapter`
```bash
composer require payum/stripe php-http/guzzle7-adapter php-http/message php-http/message-factory
```

Then, add the following configuration to your YAML configuration file (`payum.yaml` or similar):

Expand Down Expand Up @@ -42,4 +44,4 @@ ibexa:
strp_checkout:
name: "Translated Stripe Checkout name"

```
```
Loading