You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This way is preferable only if you are using shared hosting and do not have a possibility to use Composer. You will need to download [this archive](http://bit.ly/ml-php-sdk-0_1_10), extract it and place its contents in root folder of your project. The next step is the same as using Composer, you will need to require `vendor/autoload.php` file in your index.php and lets dive in!
25
+
This way is preferable only if you are using shared hosting and do not have a possibility to use Composer. You will need to download [this archive](https://bit.ly/ml-php-sdk-0_1_10), extract it and place its contents in root folder of your project. The next step is the same as using Composer, you will need to require `vendor/autoload.php` file in your index.php and lets dive in!
MailerLite SDK uses cURL as default HTTP client but it is easy to use your preferred client. It is achieved by using [HTTPlug](http://httplug.io) which is PSR-7 compliant HTTP client abstraction.
69
+
MailerLite SDK uses cURL as default HTTP client but it is easy to use your preferred client. It is achieved by using [HTTPlug](https://httplug.io) which is PSR-7 compliant HTTP client abstraction.
70
70
71
-
Here is an example how to use [Guzzle](http://docs.guzzlephp.org/) instead of cURL:
71
+
Here is an example how to use [Guzzle](https://docs.guzzlephp.org/) instead of cURL:
72
72
73
73
```php
74
74
$guzzle = new \GuzzleHttp\Client();
@@ -85,4 +85,4 @@ You are welcome to create SDK for any other programming language.
85
85
86
86
If you have any troubles using our API or SDK free to contact our support by email [[email protected]](mailto:info@mailerlite)
87
87
88
-
Official documentation is at [http://developers.mailerlite.com](http://developers.mailerlite.com)
88
+
Official documentation is at [https://developers.mailerlite.com](https://developers.mailerlite.com)
0 commit comments