PHP code example of ppm / license

1. Go to this page and download the library: Download ppm/license 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/ */

    

ppm / license example snippets



use Exception;
use PpMarket\License\PpmLicense;

. . . 

try {
    
    (new PpmLicense)->claim('ppmarket-product-license-key');
    
    // Claim success, and run your program logic to protect your package

} catch (Exception $err) {

    // Claim failed, and run your program logic to protect your package
    

}