Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/detain/fantastico-licensing
Fantastico Licensing API Class
https://github.com/detain/fantastico-licensing
fantastico fantastico-licensing license
Last synced: about 5 hours ago
JSON representation
Fantastico Licensing API Class
- Host: GitHub
- URL: https://github.com/detain/fantastico-licensing
- Owner: detain
- Created: 2017-05-22T18:21:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-07-28T21:04:18.000Z (over 2 years ago)
- Last Synced: 2024-04-03T18:22:35.370Z (8 months ago)
- Topics: fantastico, fantastico-licensing, license
- Language: PHP
- Size: 53.7 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fantastico Licensing API
Class to itnerface with the Fantastico Licensing API to manage Fantastico Server and VPS License Types. More info at https://www.netenberg.com/fantastico.php
[![Latest Stable Version](https://poser.pugx.org/detain/fantastico-licensing/version)](https://packagist.org/packages/detain/fantastico-licensing)
[![Total Downloads](https://poser.pugx.org/detain/fantastico-licensing/downloads)](https://packagist.org/packages/detain/fantastico-licensing)
[![Latest Unstable Version](https://poser.pugx.org/detain/fantastico-licensing/v/unstable)](//packagist.org/packages/detain/fantastico-licensing)
[![License](https://poser.pugx.org/detain/fantastico-licensing/license)](https://packagist.org/packages/detain/fantastico-licensing)
[![Monthly Downloads](https://poser.pugx.org/detain/fantastico-licensing/d/monthly)](https://packagist.org/packages/detain/fantastico-licensing)
[![Daily Downloads](https://poser.pugx.org/detain/fantastico-licensing/d/daily)](https://packagist.org/packages/detain/fantastico-licensing)
[![Reference Status](https://www.versioneye.com/php/detain:fantastico-licensing/reference_badge.svg?style=flat)](https://www.versioneye.com/php/detain:fantastico-licensing/references)
[![Build Status](https://travis-ci.org/detain/fantastico-licensing.svg?branch=master)](https://travis-ci.org/detain/fantastico-licensing)
[![Code Climate](https://codeclimate.com/github/detain/fantastico-licensing/badges/gpa.svg)](https://codeclimate.com/github/detain/fantastico-licensing)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/detain/fantastico-licensing/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/detain/fantastico-licensing/?branch=master)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/226251fc068f4fd5b4b4ef9a40011d06)](https://www.codacy.com/app/detain/fantastico-licensing)## Installation
Install with composer like
```sh
composer require detain/fantastico
```## Basic Usage
### Initialization
Initialize passing the API credentials like
```php
use detain\Fantastico;$fantastico = new Fantastico('API Username', 'API Password');
```### List Licensed IPs
```php
$details = $fantastico->getIpListDetailed(Fantastico::ALL_TYPES);
```***Note*** Returns an array of license entries, each entry being an array like
```php
[
'ipAddress' => '194.116.187.120',
'addedOn' => '2009-05-05 19:39:32',
'isVPS' => 'No',
'status' => 'Active'
]
```### Create a new License
Add a license for a given IP.
***Note*** Type 1 = Server, Type 2 = VPS
```php
$result = $fantastico->addIp('66.45.228.200', 1);
```### Change The IP for a License
***Note*** In this example '192.168.1.1' is the original (old) ip and '192.168.1.2' is the updated (new) IP
```php
$result = $fantastico->editIp('192.168.1.1', '192.168.1.2')
```## License
Fantastico Licensing class is licensed under the LGPL-v2.1 license.