An open API service indexing awesome lists of open source software.

https://github.com/irfaardy/app-license-server

Serial number Endpoint Server
https://github.com/irfaardy/app-license-server

endpoint endpoint-security license license-management security serial-number

Last synced: 4 days ago
JSON representation

Serial number Endpoint Server

Awesome Lists containing this project

README

        

# 🚀Lisensi aplikasi untuk server endpoint

[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/irfaardy/app-license-server/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/irfaardy/app-license-server/?branch=master) [![Build Status](https://scrutinizer-ci.com/g/irfaardy/app-license-server/badges/build.png?b=master)](https://scrutinizer-ci.com/g/irfaardy/app-license-server/build-status/master) [![Latest Stable Version](https://poser.pugx.org/irfa/app-license-server/v)](//packagist.org/packages/irfa/app-license-server) [![GitHub license](https://img.shields.io/github/license/irfaardy/encrypt-file-laravel?style=flat-square)](https://github.com/irfaardy/encrypt-file-laravel/blob/master/LICENSE)

[![Support me](https://img.shields.io/badge/Support-Buy%20me%20a%20coffee-yellow.svg?style=flat-square)](https://www.buymeacoffee.com/OBaAofN) [![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/S6S52P7SN)

This plugin functions to create a serial number that will be accessed using plugin Client side License


🛠️ Installation with Composer

composer require irfa/app-license-server

>You can get Composer [ here]( https://getcomposer.org/download/)

***

🛠️ Laravel Setup

Add to config/app.php

'providers' => [
....
Irfa\AppLicenseServer\AppLicenseServerServiceProvider::class,
];

Add to config/app.php

'aliases' => [
....
'ALS' => Irfa\AppLicenseServer\Facades\AppLicenseServer::class,

],

Publish Vendor

php artisan vendor:publish --tag=app-license-server

Run Migration

```
php artisan migrate
```

Config File

config/irfa/app_license_server.php

Inside Config File

```php
'/check/license',

'route_name' => 'check_license',

'char_type' => 'alphanumeric', //Type alphanumeric,numeric,or alphabet

'length' => 4,//default : 4

'segment' => 4,//default : 4

'striped' => true,//default : true

];



```


Register New Serial Number License

```php
"Lorem",
'domain'=>"example.com",
'phone_number'=>"08123123",
'address'=>"Bandung,Indonesia"],now()->addDays(30));
}
}
```

Check License

```php
serial)->check();
}

}
```

Disabled Serial number

```php
ALS::serial($request->serial)->disabled();
```

Enabled serial number

```php
ALS::serial($request->serial)->disabled();
```

##How to Contributing?

1. Fork it ()
2. Commit your changes (`git commit -m 'New Feature'`)
3. Push to the branch (`git push origin your-branch)
4. Create a new Pull Request ` your-branch -> master`

if you found bug or error, please post here https://github.com/irfaardy/app-license-server/issues so that they can be maintained together.

***

## Bagaimana cara berkontribusi?

1. Lakukan fork di ()
2. Commit perubahan yang anda lakukan (`git commit -m 'Fitur Baru'`)
3. Push ke branch master (`git push origin branch-kamu)
4. Buat Pull Request baru `branch-kamu -> master`

---

## Issue

If you found issues or bug please create new issues here https://github.com/irfaardy/app-license-server/issues/new

Jika anda menemukan bug atau error silahkan posting disini https://github.com/irfaardyapp-license-server/issues agar dapat diperbaiki bersama-sama.