File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 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+
77Provides 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
99Maileon'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
2121Additionally all requests use an SSL encrypted API endpoint.
2222To 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 ],
You can’t perform that action at this time.
0 commit comments