PHPackages                             combodo/itop-client-bundle - 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. combodo/itop-client-bundle

ActiveSymfony-bundle[API Development](/categories/api)

combodo/itop-client-bundle
==========================

iTop rest client bundle for symfony

2.1.0(4y ago)311[3 PRs](https://github.com/Combodo/iTopClientBundle/pulls)AGPL-3.0-onlyPHPPHP ^7.1|^8

Since Nov 30Pushed 2y ago4 watchersCompare

[ Source](https://github.com/Combodo/iTopClientBundle)[ Packagist](https://packagist.org/packages/combodo/itop-client-bundle)[ RSS](/packages/combodo-itop-client-bundle/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (6)Versions (9)Used By (0)

iTopClientBundle
================

[](#itopclientbundle)

iTop rest client bundle for symfony

This bundle help you consume iTop rest webservices

Installation
============

[](#installation)

### Step 1: Download the Bundle

[](#step-1-download-the-bundle)

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

```
$ composer require combodo/itop-client-bundle
```

This command requires you to have Composer installed globally, as explained in the [installation chapter](https://getcomposer.org/doc/00-intro.md)of the Composer documentation.

### Step 2: configure itop serveur

[](#step-2-configure-itop-serveur)

```
# app/config/config.yml
combodo_itop_client:
    servers:
        itop_server_foo:
            base_url:  "%it_combodo.base_url%"
            auth_user: "%it_combodo.auth_user%"
            auth_pwd:  "%it_combodo.auth_pwd%"
            extra_headers: "%it_combodo.extra_headers%"
```

This bundle will create a service named `itop_client.rest_client.itop_server_foo` that you can then uses in your code.

### Step 3: Start using it

[](#step-3-start-using-it)

each operation follow the structure available in otop documentation: follow this struc: [https://www.itophub.io/wiki/page?id=latest%3Aadvancedtopics%3Arest\_json#operationcore\_create](https://www.itophub.io/wiki/page?id=latest%3Aadvancedtopics%3Arest_json#operationcore_create)

you can use the service container or uses service injection by adding a `Combodo\ItopClientBundle\RestClient\RestClient $foo` in your service constructor.

```
use Combodo\ItopClientBundle\RestClient\RequestOperation\Core\RequestOperationCoreCreate;
use Combodo\ItopClientBundle\RestClient\RestClient;

class Foo
{
    /**
     * @var RestClient
     */
    private $client;
    public function __construct(RestClient $client)
    {
        $this->client = $client;
    }

    public function bar()
    {
        $operation = new RequestOperationCoreCreate(
            'Class',
            'id',
            'my comment',
            [
                'title'             => 'foo',
                'description'       => 'bar',
                'caller_email'      => 'boris.vian@example.com',
            ]
        );

        $this->client->executeOperation($operation);
    }
}
```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 87.5% 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 ~11 days

Total

4

Last Release

1455d ago

### Community

Maintainers

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

---

Top Contributors

[![bruno-ds](https://avatars.githubusercontent.com/u/22890131?v=4)](https://github.com/bruno-ds "bruno-ds (7 commits)")[![odain-cbd](https://avatars.githubusercontent.com/u/56586767?v=4)](https://github.com/odain-cbd "odain-cbd (1 commits)")

---

Tags

itop-hubsymfony-bundle

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/combodo-itop-client-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/combodo-itop-client-bundle/health.svg)](https://phpackages.com/packages/combodo-itop-client-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M648](/packages/sylius-sylius)[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)
