PHP code example of detain / myadmin-softaculous-licensing
1. Go to this page and download the library: Download detain/myadmin-softaculous-licensing library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
detain / myadmin-softaculous-licensing example snippets
use Detain\MyAdminSoftaculous\SoftaculousNOC;
$noc = new SoftaculousNOC('your-username', 'your-password');
// Purchase a license
$result = $noc->buy('198.198.198.198', '1M', 1, '[email protected]', 1);
// List all licenses
$licenses = $noc->licenses();
// Cancel a license by key
$noc->cancel('88888-88888-88888-88888-88888');