PHPackages                             ol-zamovshafu/devinotelecom-php - 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. ol-zamovshafu/devinotelecom-php

ActiveLibrary[API Development](/categories/api)

ol-zamovshafu/devinotelecom-php
===============================

A PHP client library for Devinotelecom REST API

1.3.0(7y ago)04011MITPHPPHP &gt;=7.0

Since Feb 16Pushed 7y agoCompare

[ Source](https://github.com/ol-zamovshafu/devinotelecom-php)[ Packagist](https://packagist.org/packages/ol-zamovshafu/devinotelecom-php)[ Docs](https://github.com/ol-zamovshafu/devinotelecom-laravel)[ RSS](/packages/ol-zamovshafu-devinotelecom-php/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (3)Versions (6)Used By (1)

PHP Devinotelecom REST API Client
=================================

[](#php-devinotelecom-rest-api-client)

[![Latest Version on Packagist](https://camo.githubusercontent.com/1e5fe9ee2783940df8ff9abe4125b92659117ffb173b124ca4fa18ffc70a2ab5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f6c2d7a616d6f7673686166752f646576696e6f74656c65636f6d2d7068702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ol-zamovshafu/devinotelecom-php)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)

This package provides an easy to use Devinotelecom SMS service which can be used with both XML and Http apis.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the Devinotelecom service](#setting-up-the-devinotelecom-service)
- [Usage](#usage)
    - [Available methods](#available-methods)
- [Changelog](#changelog)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

You can install this package via composer:

```
composer require ol-zamovshafu/devinotelecom-php
```

### Setting up the Devinotelecom service

[](#setting-up-the-devinotelecom-service)

You will need to register to devinotele.com to use this channel.

Usage
-----

[](#usage)

First, boot the Service with your desired client implementation.

- **HttpClient** (This is actually a Rest-Like client but the vendor names their API that way.)

```
require __DIR__ . '/../vendor/autoload.php';

use Zamovshafu\Devinotelecom\Service;
use Zamovshafu\Devinotelecom\ShortMessageFactory;
use Zamovshafu\Devinotelecom\Http\Clients\HttpClient;

$service = new Service(new HttpClient(
    new GuzzleHttp\Client(),
    'https://integrationapi.net/rest/',
    'username',
    'password',
    'outboxname'
), new ShortMessageFactory());
```

### Available methods

[](#available-methods)

After successfully booting your Service instance up; use one of the following methods to send SMS message(s).

#### One Message - Single or Multiple Recipients:

[](#one-message---single-or-multiple-recipients)

```
$response = $service->sendShortMessage(['5530000000', '5420000000'], 'This is a test message.');

if($response->isSuccessful()) {
    // storeGroupIdForLaterReference is not included in the package.
    storeGroupIdForLaterReference($response->groupId());
} else {
    var_dump($response->message());
    var_dump($response->statusCode());
    var_dump($response->status());
}
```

### Cross Reference

[](#cross-reference)

`$response->groupId()` will throw BadMethodCallException if the client is `HttpClient`.

change client implementation with caution.

Testing
-------

[](#testing)

```
$ composer test
```

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

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

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Oleg Lobanov](https://github.com/ol-zamovshafu)

License
-------

[](#license)

Copyright (c) Hilmi Erdem KEREN

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 88.9% 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 ~68 days

Total

5

Last Release

2734d ago

PHP version history (2 changes)1.0.0PHP &gt;=5.6.4

1.3.0PHP &gt;=7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/da0c30463bf0817b256e123563abb4dcabde3e33bc81301885ca5b8ca9bfb5ad?d=identicon)[Oleg Lobanov](/maintainers/Oleg%20Lobanov)

---

Top Contributors

[![erdemkeren](https://avatars.githubusercontent.com/u/1636960?v=4)](https://github.com/erdemkeren "erdemkeren (8 commits)")[![ol-zamovshafu](https://avatars.githubusercontent.com/u/44866464?v=4)](https://github.com/ol-zamovshafu "ol-zamovshafu (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/ol-zamovshafu-devinotelecom-php/health.svg)

```
[![Health](https://phpackages.com/badges/ol-zamovshafu-devinotelecom-php/health.svg)](https://phpackages.com/packages/ol-zamovshafu-devinotelecom-php)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

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