Skip to content

Commit

Permalink
6.5.0 - Add PixPayer in GetPixTransactionResponse (#8)
Browse files Browse the repository at this point in the history
Co-authored-by: Unknown <[email protected]>
  • Loading branch information
JefersonCAugusto and samuelleitemundipagg authored Mar 31, 2022
1 parent 4f5b1af commit 1370e22
Show file tree
Hide file tree
Showing 358 changed files with 5,761 additions and 6,295 deletions.
41 changes: 20 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ To run your project, right click on your PHP file inside your Test project and c

## Initialize the API Client

**_Note:_** Documentation for the client can be found [here.](/doc/client.md)
**_Note:_** Documentation for the client can be found [here.](doc/client.md)

The following parameters are configurable for the API Client:

Expand Down Expand Up @@ -137,30 +137,29 @@ Here is the list of errors that the API might throw.

| HTTP Status Code | Error Description | Exception Class |
| --- | --- | --- |
| 400 | Invalid request | [`ErrorException`](/doc/models/error-exception.md) |
| 401 | Invalid API key | [`ErrorException`](/doc/models/error-exception.md) |
| 404 | An informed resource was not found | [`ErrorException`](/doc/models/error-exception.md) |
| 412 | Business validation error | [`ErrorException`](/doc/models/error-exception.md) |
| 422 | Contract validation error | [`ErrorException`](/doc/models/error-exception.md) |
| 500 | Internal server error | [`ErrorException`](/doc/models/error-exception.md) |
| 400 | Invalid request | [`ErrorException`](doc/models/error-exception.md) |
| 401 | Invalid API key | [`ErrorException`](doc/models/error-exception.md) |
| 404 | An informed resource was not found | [`ErrorException`](doc/models/error-exception.md) |
| 412 | Business validation error | [`ErrorException`](doc/models/error-exception.md) |
| 422 | Contract validation error | [`ErrorException`](doc/models/error-exception.md) |
| 500 | Internal server error | [`ErrorException`](doc/models/error-exception.md) |

## List of APIs

* [Subscriptions](/doc/controllers/subscriptions.md)
* [Orders](/doc/controllers/orders.md)
* [Plans](/doc/controllers/plans.md)
* [Invoices](/doc/controllers/invoices.md)
* [Customers](/doc/controllers/customers.md)
* [Charges](/doc/controllers/charges.md)
* [Recipients](/doc/controllers/recipients.md)
* [Tokens](/doc/controllers/tokens.md)
* [Transactions](/doc/controllers/transactions.md)
* [Transfers](/doc/controllers/transfers.md)
* [Subscriptions](doc/controllers/subscriptions.md)
* [Orders](doc/controllers/orders.md)
* [Plans](doc/controllers/plans.md)
* [Invoices](doc/controllers/invoices.md)
* [Customers](doc/controllers/customers.md)
* [Charges](doc/controllers/charges.md)
* [Recipients](doc/controllers/recipients.md)
* [Tokens](doc/controllers/tokens.md)
* [Transactions](doc/controllers/transactions.md)
* [Transfers](doc/controllers/transfers.md)

## Classes Documentation

* [Utility Classes](/doc/utility-classes.md)
* [ApiException](/doc/api-exception.md)
* [HttpRequest](/doc/http-request.md)
* [HttpResponse](/doc/http-response.md)
* [ApiException](doc/api-exception.md)
* [HttpRequest](doc/http-request.md)
* [HttpResponse](doc/http-response.md)

6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
}
],
"require": {
"php": ">=7.2",
"php": ">=7.2 <8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"apimatic/unirest-php": "^2.1",
"apimatic/jsonmapper": "^2.0.2"
"apimatic/unirest-php": "^2.2.1",
"apimatic/jsonmapper": "^3.0.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
Expand Down
4 changes: 2 additions & 2 deletions doc/client.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ The gateway for the SDK. This class acts as a factory for the Controllers and al

| Name | Description |
| --- | --- |
| getOrdersController() | Gets OrdersController |
| getPlansController() | Gets PlansController |
| getSubscriptionsController() | Gets SubscriptionsController |
| getInvoicesController() | Gets InvoicesController |
| getOrdersController() | Gets OrdersController |
| getCustomersController() | Gets CustomersController |
| getRecipientsController() | Gets RecipientsController |
| getChargesController() | Gets ChargesController |
| getTransfersController() | Gets TransfersController |
| getTokensController() | Gets TokensController |
| getTransfersController() | Gets TransfersController |
| getTransactionsController() | Gets TransactionsController |

Loading

0 comments on commit 1370e22

Please sign in to comment.