PHPackages                             arimac/sigfox - 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. arimac/sigfox

ActiveLibrary[API Development](/categories/api)

arimac/sigfox
=============

A highlevel up-to-date complete Sigfox API client

2.0.2(4y ago)5337[5 issues](https://github.com/arimacdev/php-sigfox-client/issues)MITPHPPHP &gt;=7.1

Since May 27Pushed 4y ago1 watchersCompare

[ Source](https://github.com/arimacdev/php-sigfox-client)[ Packagist](https://packagist.org/packages/arimac/sigfox)[ Docs](https://arimacdev.github.io/php-sigfox-client)[ RSS](/packages/arimac-sigfox/feed)WikiDiscussions main Synced 1mo ago

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

 [ ![](./resources/sigfox-logo.png) ](https://github.com/arimacdev/php-sigfox-client)

PHP Sigfox Client
=================

[](#php-sigfox-client)

 [ ![Travis:Status](https://camo.githubusercontent.com/784362b26e4b3546254f1893e778ba64616e362bd6ac791991d2c9e880a3a64e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d677265656e2e737667) ](https://opensource.org/licenses/MIT) [ ![PHP:Version](https://camo.githubusercontent.com/c64bb0926428a305a5ab5aab23c5a5124a1fe4749bc5c0ffe7fa9df4da255e33/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6172696d61632f736967666f78) ](https://packagist.org/packages/arimac/sigfox) [ ![Packagist:Version](https://camo.githubusercontent.com/e16a11229ee8f929a2a2dd3d9882347313d4b41fa20486c1c6355199efb84074/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6172696d61632f736967666f78) ](https://packagist.org/packages/arimac/sigfox) [ ![Actions:Main](https://github.com/arimacdev/php-sigfox-client/actions/workflows/main.yml/badge.svg) ](https://github.com/arimacdev/php-sigfox-client/actions)

---

A high level, up-to-date client library to access Sigfox APIs. This client library covered all the operations.

- [Documentation](https://arimacdev.github.io/php-sigfox-client)
- [CHANGELOG](https://github.com/arimacdev/php-sigfox-client/blob/main/CHANGELOG.md)
- [Contribution Guide](https://github.com/arimacdev/php-sigfox-client/blob/main/CONTRIBUTING.md)
- [Examples](https://github.com/arimacdev/php-sigfox-client/tree/main/examples)

Installation
------------

[](#installation)

```
$ composer require arimac/sigfox guzzlehttp/guzzle:7.*

```

If you are planning to use another HTTP client other than `guzzlehttp`, You do not want to install it.

Usage
-----

[](#usage)

See the documentation for a detailed description. This is some code snippets for you to get an idea about this library.

- Initializing the client

```
use Arimac\Sigfox\Sigfox;

$sigfox = new Sigfox("myapikey", "password");
```

- Fetch a device from the server

```
$device = $sigfox->devices()->find("AF01F")->get();
```

- Update a device

```
$sigfox->devices()->find("AF01F")->update(["deviceTypeId"=>"0f1bc092ef..."]);
```

- Create a device

```
$sigfox->devices()->create([
    "pac"=> "585CB3B42AC98BD4",
    "name"=> "Device 1",
    "deviceTypeId"=> "57309548171c857460043085",
    "id"=> "00FF"
]);

// Or you can use objects to pass data
$deviceId = $sigfox->devices()->create(
    (new DeviceCreationJob)
        ->setPac("585CB3B42AC98BD4")
        ->setId("00FF")
        ->setName("Device 1")
        ->setDeviceTypeId("57309548171c857460043085")
);
```

- Delete a device

```
$sigfox->devices()->find("AF01F")->delete();
```

Features
--------

[](#features)

- All operations implemented
- Ability to use user defined HTTP clients.
- Requests validation over validation rules in the API documentation.
- A developer friendly helper to handle pagination requests
- A developer friendly helper to handle async requests
- File downloads (kmz)

Versioning
----------

[](#versioning)

The initial version code is the `2.0.0`. The first number (`2`) belongs to the version number of the Sigfox API. Second number is changing with major versions. And the third number is changing with the minor versions.

Issues and Feature requests
---------------------------

[](#issues-and-feature-requests)

Do not hesitate to report if you faced any issue or a bug while using this library. We are little bit busy, but happy to help you.

We have added just a few basic features to this library to solve only the most frequently encountered tasks. If you have an idea about a new feature, feel free to let us know in the [issues](https://github.com/arimacdev/php-sigfox-client/issues)section.

Contributing
------------

[](#contributing)

If you like to contribute and you do not have an idea about where to contribute, go to the [issues](https://github.com/arimacdev/php-sigfox-client/issues)section and try to pick one.

Read the [Contribution Guide](https://github.com/arimacdev/php-sigfox-client/blob/main/CONTRIBUTING.md)if you new to contribute. And open a PR to the `master` branch with your contribution. Make sure all contributions are backward compatibility. Because we are not frequently releasing major versions of this library.

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 95.7% 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 ~2 days

Total

4

Last Release

1810d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3e309d9d7e68d4249749ac9ad779ea224ad83f23b90c52ab98dea5c72a2c97b1?d=identicon)[arimac](/maintainers/arimac)

---

Top Contributors

[![whizsid](https://avatars.githubusercontent.com/u/44908250?v=4)](https://github.com/whizsid "whizsid (44 commits)")[![ramesharimac](https://avatars.githubusercontent.com/u/75606098?v=4)](https://github.com/ramesharimac "ramesharimac (2 commits)")

---

Tags

api-client-phpiotsigfox-api

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Type Coverage Yes

### Embed Badge

![Health badge](/badges/arimac-sigfox/health.svg)

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

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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