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
To install the bindings via [Composer](https://getcomposer.org/), run the following command:
22
+
23
+
```bash
24
+
$ composer require invoicetronic/php-sdk
35
25
```
36
26
37
27
Then run `composer install`
38
28
39
29
### Manual Installation
40
30
41
-
Download the files and include `autoload.php`:
42
-
31
+
There are three options:
32
+
- Download the latest release of the PHP SDK [Phar Archive](https://github.com/invoicetronic/php-sdk/releases) and simply include it in your project.
43
33
```php
44
-
<?php
45
-
require_once('/path/to/PHP SDK for the Invoicetronic API/vendor/autoload.php');
34
+
require_once('./invoicetronic-sdk.phar');
35
+
```
36
+
- download our SDK using [PHP-download](https://php-download.com/package/invoicetronic/php-sdk) and simply include it in your project.
37
+
- create your own custom autoloader and download all the dependencies (transitive included) as explained [here](https://ehikioya.com/how-to-install-php-packages-without-composer/).
0 commit comments