PHPackages                             novatorgroup/service1c - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. novatorgroup/service1c

ActiveYii2-extension[HTTP &amp; Networking](/categories/http)

novatorgroup/service1c
======================

Component for executing requests to HTTP Services 1C

1.2.5(3w ago)02141MITPHPPHP &gt;=8.0

Since Nov 23Pushed 3w ago1 watchersCompare

[ Source](https://github.com/novatorgroup/service1c)[ Packagist](https://packagist.org/packages/novatorgroup/service1c)[ RSS](/packages/novatorgroup-service1c/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependencies (2)Versions (10)Used By (1)

HTTP Service 1C
===============

[](#http-service-1c)

Component for executing requests to HTTP Services 1C

### Installation

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/). Either run

```
php composer.phar require --prefer-dist novatorgroup/service1c "*"

```

or add

```
"novatorgroup/service1c": "*"

```

to the require section of your `composer.json` file.

### Usage

[](#usage)

```
    $service = new \novatorgroup\service1c\HttpService([
        'host' => 'http://host.com', //required
        'base' => 'base', //required
        'login' => 'login',
        'password' => 'password',
        'curlOptions' => [
            CURLOPT_CONNECTTIMEOUT_MS => 200,
            CURLOPT_TIMEOUT_MS => 1000,
        ]
    ]);

    // GET
    // Request to: // http://host.com/base/hs/command/param?key=value

    $response = $service->get('command', ['param', 'key' => 'value']);

    if ($response->isOk()) {
        echo $response->code;
        echo $response->error;
        echo $response->result;
        echo $response->getHeader('Content-Length');
    }

    // POST
    // the body will be sent in JSON format
    $response = $service->post('command', ['param' => 'value1', 'param2' => ['a', 'b']]);

    // JSON
    {
        "param": "value1",
        "param2": [
            "a",
            "b"
        ]
    }

```

###  Health Score

51

—

FairBetter than 96% of packages

Maintenance94

Actively maintained with recent releases

Popularity14

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity74

Established project with proven stability

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

Recently: every ~373 days

Total

9

Last Release

25d ago

PHP version history (4 changes)1.0.0PHP &gt;=7.0.0

1.1.1PHP &gt;=7.3.0

1.2.0PHP &gt;=7.2

1.2.1PHP &gt;=8.0

### Community

Maintainers

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

---

Tags

httpyii1c

### Embed Badge

![Health badge](/badges/novatorgroup-service1c/health.svg)

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

###  Alternatives

[morozovsk/yii2-websocket

simple php websocket server with examples and demo: simple chat (single daemon) - http://sharoid.ru/chat.html , pro chat (master + worker) - http://sharoid.ru/chat2.html , simple game - http://sharoid.ru/game.html

9414.8k](/packages/morozovsk-yii2-websocket)

PHPackages © 2026

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