Skip to content

Commit

Permalink
Add descriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
bakura10 committed Aug 25, 2015
1 parent 8004b1f commit 38c6a8b
Show file tree
Hide file tree
Showing 4 changed files with 3,672 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 3.1.0

* [BC] Set default Stripe API to "2015-08-19". When using this new version, refunds are now get without specifying
a charge ID.

# 3.0.0

* [BC] For all descriptors, `closeDispute` and `updateDispute` now uses the new endpoints that do not require a charge ID but instead a dispute
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ $client = new StripeClient('my-api-key');
> You can change the API key for the client using the `setApiKey` method. This is useful if you are using Stripe
Connect and make both your own API calls and API calls on behalf of your users.

The currently latest supported version of the API is **2015-07-28**. You can (and should) also explicitly specify the version
The currently latest supported version of the API is **2015-08-19**. You can (and should) also explicitly specify the version
of the client using the second parameter:

```php
$client = new StripeClient('my-api-key', '2015-07-28');
$client = new StripeClient('my-api-key', '2015-08-19');
```

### Versioning
Expand All @@ -53,7 +53,7 @@ and set the default Stripe version as the latest one.
* If existing endpoints are updating by changing their URL, a major release of ZfrStripe is released as compatibility cannot be assured.

Currently, the following Stripe API versions are accepted by ZfrStripe: `2015-02-18`, `2015-03-24`, `2015-04-07`, `2015-06-15`, `2015-07-07`,
`2015-07-13`, `2015-07-28`. I will try to update the library as soon as new version are released.
`2015-07-13`, `2015-07-28`, `2015-08-07`, `2015-08-19`. I will try to update the library as soon as new version are released.

> If you need support for versions as old as 2014-03-28, please use branch v2 of ZfrStripe.
> If you need support for even older versions, please use branch v1 of ZfrStripe.
Expand Down
Loading

0 comments on commit 38c6a8b

Please sign in to comment.