Skip to content

Commit e75d01a

Browse files
committed
update README
1 parent 491cd45 commit e75d01a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Paystack PHP SDK
2+
[SDK Demo](https://github.com/matscode/paystack-php-sdk-sandbox)
23

34
### Available resources
4-
- Transaction (Initialize, List, Verify)
5-
- Bank (List, Resolve account)
6-
5+
- Transaction (`Initialize`, `List`, `Verify`)
6+
- Bank (`List`, `Resolve account`)
77

88
### Resource roadmap
99
More resources would be added in time
@@ -13,7 +13,7 @@ More resources would be added in time
1313
- `Transfers`
1414
- `others...`
1515

16-
This SDK communicates with [Paystack API](https://paystack.com/)
16+
This SDK communicates with [Paystack API](https://paystack.com/). You need to have a paystack merchant account and paystack secret key to use this SDK.
1717

1818
Development is actively ongoing while releases are Stable.
1919
<br>
@@ -61,8 +61,8 @@ OR
6161
// Set data to post using this method
6262
$response = $Paystack->trasaction
6363
->setCallbackUrl('https://www.app.local/paystack/transaction/verify')
64-
->setEmail( 'matscode@gmail.com' )
65-
->setAmount( 75000 ) // amount is treated in Naira while using this setAmount() method
64+
->setEmail('customer.email@gmail.com')
65+
->setAmount(75000) // amount is treated in Naira while using this setAmount() method
6666
->initialize();
6767
```
6868
Now do a redirect to payment page (using authorization_url)

0 commit comments

Comments
 (0)