File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Omnipay is installed via [Composer](http://getcomposer.org/). To install, simply
15
15
to your ` composer.json ` file:
16
16
17
17
```
18
- composer require omnipay/braintree:"~2 .0@dev"
18
+ composer require omnipay/braintree:"~3 .0@dev"
19
19
```
20
20
21
21
## Basic Usage
@@ -62,7 +62,7 @@ $customer = $gateway->createCustomer([
62
62
```
63
63
You can find full list of options [ here] ( https://developers.braintreepayments.com/reference/request/customer/create/php ) .
64
64
65
- ###Find customer (By id )
65
+ ### Find customer (By ID )
66
66
67
67
``` php
68
68
$customer = $gateway->findCustomer(1)->send();
@@ -94,7 +94,7 @@ $method = $gateway->updatePaymentMethod([
94
94
```
95
95
You can find full list of options [ here] ( https://developers.braintreepayments.com/reference/request/payment-method/update/php ) .
96
96
97
- ###Create subscription
97
+ ### Create subscription
98
98
99
99
``` php
100
100
$subscription = $gateway->createSubscription([
@@ -107,14 +107,14 @@ $subscription = $gateway->createSubscription([
107
107
```
108
108
You can find full list of options [ here] ( https://developers.braintreepayments.com/reference/request/subscription/create/php )
109
109
110
- ###Cancel subscription
110
+ ### Cancel subscription
111
111
112
112
``` php
113
113
$subscription = $gateway->cancelSubscription('id')->send();
114
114
```
115
115
You can find full list of options [ here] ( https://developers.braintreepayments.com/reference/request/subscription/cancel/php )
116
116
117
- ###Parse webhook notification
117
+ ### Parse webhook notification
118
118
119
119
``` php
120
120
$notification = $gateway->parseNotification([
You can’t perform that action at this time.
0 commit comments