PHPackages                             filippo-toso/alleantia-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. filippo-toso/alleantia-sdk

ActiveLibrary

filippo-toso/alleantia-sdk
==========================

Alleantia IOT Server unofficial PHP SDK

v1.0.6(2y ago)022MITPHPPHP ^8.0 || ^9.0

Since Mar 23Pushed 2y ago1 watchersCompare

[ Source](https://github.com/filippotoso/alleantia-sdk)[ Packagist](https://packagist.org/packages/filippo-toso/alleantia-sdk)[ RSS](/packages/filippo-toso-alleantia-sdk/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (4)Versions (8)Used By (0)

Alleantia IOT Server unofficial PHP SDK
=======================================

[](#alleantia-iot-server-unofficial-php-sdk)

A simple SDK to access [Alleantia IOT Server Rest APIs](https://kb.alleantia.com/how-to-use-rest-api-with-alleantia-isc-software) (version 2.3).

Requirements
------------

[](#requirements)

- PHP 8.0+

Installing
----------

[](#installing)

Use Composer to install it:

```
composer require filippo-toso/alleantia-sdk

```

If you don't already have an implementation for psr/http-factory and psr/http-client, you should execute also:

```
composer require php-http/curl-client laminas/laminas-diactoros

```

Vanilla PHP usage
-----------------

[](#vanilla-php-usage)

Create the SDK instance and call the various endpoints.

```
use FilippoToso\Alleantia\Alleantia;
use FilippoToso\Alleantia\Options;

require(__DIR__ . '/../vendor/autoload.php');

$options = new Options([
    'base_url' => 'http://192.168.1.123:8081',
    'username' => 'admin',
    'password' => 'secret',
]);

$alleantia = new Alleantia($options);

$response = $alleantia->system()->info();

print_r($response->body());
```

Laravel usage
-------------

[](#laravel-usage)

In your config/services.php files add:

```
return [

    // ...

    'alleantia' => [
        'base_url' => env('ALLEANTIA_BASE_URL'),
        'username' => env('ALLEANTIA_USERNAME'),
        'password' => env('ALLEANTIA_PASSWORD'),
    ],
];
```

In your .env file, add the following variables:

```
ALLEANTIA_BASE_URL=http://192.168.1.123:8081
ALLEANTIA_USERNAME=admin
ALLEANTIA_PASSWORD=secret

```

In your Laravel code:

```
use FilippoToso\Alleantia\Laravel\Alleantia;

$response = Alleantia::system()->info();

dump($response->body());
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~30 days

Recently: every ~45 days

Total

7

Last Release

961d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/55d89f2d44fb12225de2119994028ee69e36770bcf33c2b1ddf0d6672d28151b?d=identicon)[filippo.toso](/maintainers/filippo.toso)

---

Top Contributors

[![filippotoso](https://avatars.githubusercontent.com/u/26958813?v=4)](https://github.com/filippotoso "filippotoso (7 commits)")

### Embed Badge

![Health badge](/badges/filippo-toso-alleantia-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/filippo-toso-alleantia-sdk/health.svg)](https://phpackages.com/packages/filippo-toso-alleantia-sdk)
```

###  Alternatives

[openai-php/client

OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API

5.8k22.6M232](/packages/openai-php-client)[mailgun/mailgun-php

The Mailgun SDK provides methods for all API functions.

1.1k28.9M168](/packages/mailgun-mailgun-php)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[m4tthumphrey/php-gitlab-api

GitLab API v4 client for PHP

9485.4M64](/packages/m4tthumphrey-php-gitlab-api)[theodo-group/llphant

LLPhant is a library to help you build Generative AI applications.

1.5k311.5k5](/packages/theodo-group-llphant)[auth0/auth0-php

PHP SDK for Auth0 Authentication and Management APIs.

40820.2M68](/packages/auth0-auth0-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
