You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ For [Paystack](https://paystack.com), ensure to set `paystack_secret_key` key in
70
70
71
71
> **Warning** <br />
72
72
> Ensure you have [TailwindCSS installed](https://tailwindcss.com/docs/installation), then add this package's views to the `content` key of your `tailwind.config.js` configuration file, like below:
@@ -82,21 +82,21 @@ For [Paystack](https://paystack.com), ensure to set `paystack_secret_key` key in
82
82
83
83
- Flutterwave: If you want to use Flutterwave, ensure to get your API details [from the dashboard](https://dashboard.flutterwave.com/dashboard/settings/apis), and use it to set the following variables in your `.env` file:
84
84
85
-
```
85
+
```env
86
86
FLW_PUBLIC_KEY=FLWPUBK-xxxxxxxxxxxxxxxxxxxxx-X
87
87
FLW_SECRET_KEY=FLWSECK-xxxxxxxxxxxxxxxxxxxxx-X
88
-
FLW_SECRET_HASH='My_lovelysite123'
88
+
FLW_SECRET_HASH=hash-123xxxxxxxxxxxxxxxxxxx-X
89
89
```
90
90
91
91
- Paystack: Paystack requires a secret key. Go to [the Paystack dashboard](https://dashboard.paystack.co/#/settings/developer) to obtain one, and use it to set the following variable:
92
92
93
-
```
93
+
```env
94
94
PAYSTACK_SECRET_KEY=sk_test_xxxxxxxxxxxxxxxxxxxxx
95
95
```
96
96
97
97
- Remita: Ensure to set the following environment variables:
98
98
99
-
```
99
+
```env
100
100
REMITA_MERCHANT_ID=xxxxxxxxxxxxxxxxxxxxx
101
101
REMITA_API_KEY=xxxxxxxxxxxxxxxxxxxxx
102
102
```
@@ -152,9 +152,9 @@ The metadata should be a valid JSON string containing key-value pairs that modif
152
152
153
153
If for any reason, your user/customer claims that the payment they made was successful but that your platform did not reflect such successful payment, this PCR feature enables you to resolve such claims by simply calling:
154
154
155
-
```
155
+
```php
156
156
/**
157
-
* @var bool //true if payment was successful, false otherwise
157
+
* @var bool $outcome // --> true if payment was successful, false otherwise
0 commit comments