PHP code example of shumonpal / laravel-licence-client

1. Go to this page and download the library: Download shumonpal/laravel-licence-client 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/ */

    

shumonpal / laravel-licence-client example snippets





return [
    /**
     * The Url where licenced key  
     */
    'licence_key_api' => 'https://example.com/api/app-tracker/licence-key-verify',
    
    /**
     * The Url where user details stored if product use illegally
     */
    'store_user_api' => 'https://example.com/api/app-tracker/licence-users',

    /**
     * 
     * This is used to redirect after successfully licence key verified.
     *
     */
    'redirect_url' => '/',
];



namespace App\Http;

use Illuminate\Foundation\Http\Kernel as HttpKernel;

class Kernel extends HttpKernel
{
    /////

    /**
     * The application's middleware aliases.
     *
     * Aliases may be used instead of class names to conveniently assign middleware to routes and groups.
     *
     * @var array<string, class-string|string>
     */
    protected $middlewareAliases = [
        
        ///

        'verifylicence' => \Shumonpal\ProjectSecurity\Middleware\LicencedVirifiedMiddleware::class,
    ];
}

bash
php artisan vendor:publish --provider="Shumonpal\ProjectSecurity\ProjectSecurityServiceProvider" --tag="app-licence-config"