Install - 10quality/license-keys-php-client GitHub Wiki
Using composer
Run command:
composer require 10quality/license-keys-php-client
Without composer
Download the latest release of this package and store its content somewhere in your project.
Include the following php files:
require_once '[path-to-package-folder]/src/LicenseRequest.php';
require_once '[path-to-package-folder]/src/Client.php';
require_once '[path-to-package-folder]/src/Api.php';
Use statements
To call to any endpoint, add the following use
statements at the beginning of your file (after namespace):
use LicenseKeys\Utility\Api;
use LicenseKeys\Utility\Client;
use LicenseKeys\Utility\LicenseRequest;