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
- Host: GitHub
- URL: https://github.com/irfaardy/app-license-server
- Owner: irfaardy
- License: mit
- Created: 2020-11-23T11:07:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-18T06:03:14.000Z (over 4 years ago)
- Last Synced: 2024-10-12T11:46:48.174Z (7 months ago)
- Topics: endpoint, endpoint-security, license, license-management, security, serial-number
- Language: PHP
- Homepage:
- Size: 26.4 KB
- Stars: 4
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# 🚀Lisensi aplikasi untuk server endpoint
[](https://scrutinizer-ci.com/g/irfaardy/app-license-server/?branch=master) [](https://scrutinizer-ci.com/g/irfaardy/app-license-server/build-status/master) [](//packagist.org/packages/irfa/app-license-server) [](https://github.com/irfaardy/encrypt-file-laravel/blob/master/LICENSE)
[](https://www.buymeacoffee.com/OBaAofN) [](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.