PHP code example of gai871013 / bzh-license

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

    

gai871013 / bzh-license example snippets



['providers' => [
    // ...
    Gai871013\License\ServiceProvider::class,
],
'aliases' => [
    // ...
    'License' => Gai871013\License\Facades\License::class,
],
];


use Gai871013\License\Facades\License;

// ...
dump(app('License')->getLicense('LICENSE_CODE', 'PUBLIC_PEM_CODE'));
dd(License::getLicense('LICENSE_CODE', 'PUBLIC_PEM_CODE'));
[
    "appid" => "domain.test",
    "issuedTime" => "2024-05-14 16:30:00",
    "notBefore" => "2024-05-01 00:00:00",
    "notAfter" => "2025-04-30 23:59:59",
    "customerInfo" => "XXX公司",
    "projectName" => "XXX项目名称",
    "valid" => true
];
// ...