Skip to content

Commit 227ffdc

Browse files
authored
Merge pull request #44 from tariq86/readme-cleanup
Update README.md
2 parents b191857 + 38d8989 commit 227ffdc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Omnipay is installed via [Composer](http://getcomposer.org/). To install, simply
1515
to your `composer.json` file:
1616

1717
```
18-
composer require omnipay/braintree:"~2.0@dev"
18+
composer require omnipay/braintree:"~3.0@dev"
1919
```
2020

2121
## Basic Usage
@@ -62,7 +62,7 @@ $customer = $gateway->createCustomer([
6262
```
6363
You can find full list of options [here](https://developers.braintreepayments.com/reference/request/customer/create/php).
6464

65-
###Find customer (By id)
65+
### Find customer (By ID)
6666

6767
```php
6868
$customer = $gateway->findCustomer(1)->send();
@@ -94,7 +94,7 @@ $method = $gateway->updatePaymentMethod([
9494
```
9595
You can find full list of options [here](https://developers.braintreepayments.com/reference/request/payment-method/update/php).
9696

97-
###Create subscription
97+
### Create subscription
9898

9999
```php
100100
$subscription = $gateway->createSubscription([
@@ -107,14 +107,14 @@ $subscription = $gateway->createSubscription([
107107
```
108108
You can find full list of options [here](https://developers.braintreepayments.com/reference/request/subscription/create/php)
109109

110-
###Cancel subscription
110+
### Cancel subscription
111111

112112
```php
113113
$subscription = $gateway->cancelSubscription('id')->send();
114114
```
115115
You can find full list of options [here](https://developers.braintreepayments.com/reference/request/subscription/cancel/php)
116116

117-
###Parse webhook notification
117+
### Parse webhook notification
118118

119119
```php
120120
$notification = $gateway->parseNotification([

0 commit comments

Comments
 (0)