PHPackages                             fbarachino/kalliopepbx - 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. [API Development](/categories/api)
4. /
5. fbarachino/kalliopepbx

ActiveLibrary[API Development](/categories/api)

fbarachino/kalliopepbx
======================

Helper to consume Kalliope's RestAPI

1.0.1(1y ago)023MITPHP

Since Apr 14Pushed 1y ago1 watchersCompare

[ Source](https://github.com/fbarachino/kalliopepbx)[ Packagist](https://packagist.org/packages/fbarachino/kalliopepbx)[ RSS](/packages/fbarachino-kalliopepbx/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (2)Dependencies (1)Versions (4)Used By (0)

KalliopePbx
===========

[](#kalliopepbx)

Package per Laravel per utilizzare le RestAPI del Kalliope PBX

Usage
-----

[](#usage)

To use this package for laravel, follow the steps below:

1. Install the package via Composer:

    ```
    composer require fbarachino/kalliopepbx
    ```
2. Publish the config file:

    ```
    php artisan vendor:publish --tag=kalliopepbx-config
    ```

    and edit it with correct values.
3. Initialize and configure the library as needed (for example):

    ```
    ...
    use Illuminate\Support\Facades\Storage;
    use fbarachino\kalliopepbx\KalliopePbx;

    class RestApiCall {

        public static function getSerialNumber()
        {
            $kalliope = new KalliopePbx();
            $response = $kalliope->sendRequest('rest/dashboard/serialNumber','GET');
            return $response;
        }

       // remeber to execute 'php artisan storage:link'
        public static function backup($filename, $description)
        {
            $kalliope = new KalliopePbx();
            $firmware = $kalliope->sendRequest('/rest/dashboard/firmwareVersion','GET');
            $data =
            [
                'backup'=>
                [
                    'filename' => $filename,
                    'comment' => $description
                ],
            ];

            $response = json_decode($kalliope->sendRequest('rest/backup/create/'.$firmware,'POST',$data);
            return Storage::disk('local')->put('/public/backup/kalliope/'.$filename.'.bak', $response);
        }

    }
    ...
    ```
4. You can use the helper as:

    ```
    $kalliope->sendRequest($url,$method,$data);
    ```

    Where `$url` is the URL of the API request, `$method` is the method (GET,POST,PUT,PATCH,DELETE), and `$data` is the array of fields.

From version 1.0.1 you can also instantiate directly if you don't want to use the config/kalliopepbx.php file:

```
...
$kalliope = new KalliopePbx($address,$port,$protocol,$username,$password);
...
```

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance46

Moderate activity, may be stable

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 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 ~23 days

Total

2

Last Release

415d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b65e8a3c315ac3a88eff72d2fadf401703d2a0885a70b2f4c2a8ca8a04f81b46?d=identicon)[fbarachino](/maintainers/fbarachino)

---

Top Contributors

[![fbarachino](https://avatars.githubusercontent.com/u/3225879?v=4)](https://github.com/fbarachino "fbarachino (12 commits)")

### Embed Badge

![Health badge](/badges/fbarachino-kalliopepbx/health.svg)

```
[![Health](https://phpackages.com/badges/fbarachino-kalliopepbx/health.svg)](https://phpackages.com/packages/fbarachino-kalliopepbx)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.2M46](/packages/tencentcloud-tencentcloud-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k496.1k33](/packages/neuron-core-neuron-ai)[avalara/avataxclient

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

528.3M7](/packages/avalara-avataxclient)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

252.5k](/packages/eslazarev-wildberries-sdk)[files.com/files-php-sdk

Files.com PHP SDK

2478.1k](/packages/filescom-files-php-sdk)[aimeos/prisma

A powerful PHP package for integrating media related Large Language Models (LLMs) into your applications

1772.4k4](/packages/aimeos-prisma)

PHPackages © 2026

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