Skip to content

Commit 14a39ce

Browse files
authored
IBX-10275: Added missing packages to Stripe/PayPal intructions (#2815)
* IBX-10275: Added missing packages to Stripe/PayPal intructions * Add dependency mention
1 parent 4e3c8e7 commit 14a39ce

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

docs/commerce/payment/enable_paypal_payments.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ By using Payum to integrate PayPal into your application, you can offer your cus
99

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

12-
Install the PayPal package:
12+
Install the PayPal package and the required dependencies:
1313

14-
`composer require payum/paypal-express-checkout-nvp php-http/guzzle7-adapter`
14+
```bash
15+
composer require payum/paypal-express-checkout-nvp php-http/guzzle7-adapter php-http/message php-http/message-factory
16+
```
1517

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

docs/commerce/payment/enable_stripe_payments.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ By using Payum to integrate Stripe into your application, you can securely proce
1010

1111
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.
1212

13-
Install the Stripe package:
13+
Install the Stripe package and the required dependencies:
1414

15-
`composer require payum/stripe php-http/guzzle7-adapter`
15+
```bash
16+
composer require payum/stripe php-http/guzzle7-adapter php-http/message php-http/message-factory
17+
```
1618

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

@@ -42,4 +44,4 @@ ibexa:
4244
strp_checkout:
4345
name: "Translated Stripe Checkout name"
4446

45-
```
47+
```

0 commit comments

Comments
 (0)