Skip to content

Commit 0825e97

Browse files
Corrected typos and altered format slightly
1 parent baf13a7 commit 0825e97

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# xqueue/maileon-api-client
2-
31
[![Latest Stable Version](https://poser.pugx.org/xqueue/maileon-api-client/v/stable.png)](https://packagist.org/packages/xqueue/maileon-api-client)
42
[![License](http://poser.pugx.org/xqueue/maileon-api-client/license)](https://mit-license.org/)
53
[![PHP Version Require](http://poser.pugx.org/xqueue/maileon-api-client/require/php)](https://www.php.net/releases/)
64

5+
# Maileon API Client
6+
77
Provides an API client to connect to XQueue Maileon's REST API and (de-)serializes all API functions and data for easier use in PHP projects.
88

99
Maileon's REST API documentation can be found [here](https://maileon.com/support/rest-api-1-0/).
@@ -16,7 +16,7 @@ Maileon's REST API documentation can be found [here](https://maileon.com/support
1616

1717
## Requirements
1818

19-
The API client requires `PHP >= 7.0`, `libxml` and `libcurl`.
19+
The API client requires `PHP >= 7.0` with `libxml` and `libcurl`.
2020

2121
Additionally all requests use an SSL encrypted API endpoint.
2222
To enable SSL support in CURL, please follow these steps:
@@ -258,15 +258,15 @@ $transaction->contact = new ContactReference([
258258

259259
$transaction->content = [
260260
'foo' => 'bar',
261-
"items" => [
261+
'items' => [
262262
[
263-
"name" => "foo",
264-
"quantity" => 2,
263+
'name' => 'foo',
264+
'quantity' => 2,
265265
'price' => 27.99
266266
],
267267
[
268-
"name" => "bar",
269-
"quantity" => 1,
268+
'name' => 'bar',
269+
'quantity' => 1,
270270
'price' => 16.49
271271
],
272272
],

0 commit comments

Comments
 (0)