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

Abandoned → [troopers/taiga-bundle](/?search=troopers%2Ftaiga-bundle)Symfony-bundle[HTTP &amp; Networking](/categories/http)

appventus/taiga-bundle
======================

Taiga PHP SDK Symfony integration

0.1.3(8y ago)3161MITPHPPHP &gt;=5.5.9

Since Feb 3Pushed 8y ago3 watchersCompare

[ Source](https://github.com/AppVentus/TaigaBundle)[ Packagist](https://packagist.org/packages/appventus/taiga-bundle)[ RSS](/packages/appventus-taiga-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (5)Used By (0)

[![Troopers](https://cloud.githubusercontent.com/assets/618536/18787530/83cf424e-81a3-11e6-8f66-cde3ec5fa82a.png)](http://troopers.agency)

TaigaBundle
===========

[](#taigabundle)

TaigaBundle helps to use the [Taiga PHP SDK](https://github.com/Troopers/taiga-php-sdk) to work with [Taiga REST API](https://taigaio.github.io/taiga-doc/dist/api.html).

Installation with Composer
--------------------------

[](#installation-with-composer)

A composer.json file is available in the repository and it has been referenced on packagist.

Step 1 - Require it with Composer

```
php composer.phar require troopers/taiga-bundle:^0.1 --update-with-dependencies

```

Step 2 - Declare the bundle in your `AppKernel.php`

```
new TaigaBundle\TaigaBundle(),

```

Configuration
-------------

[](#configuration)

To authenticate requests, the taiga php-sdk expect a token. Follow these instructions to [generate your token](https://taigaio.github.io/taiga-doc/dist/api.html#auth-normal-login).

Then declare the config like below:

```
taiga:
  api_token: %taiga_api_token%
```

Some use examples
-----------------

[](#some-use-examples)

\###get Taiga API service

```
$taiga = $this->container->get('taiga.api');

```

\###get my projects

```
    $projects = $taiga->projects->getList([
        'member' => $taiga->users->getMe()->id
    ]);
```

\###get project's sprints (milestones)

```
    $sprints[$project->name] = $taiga->milestones->getList(
        ['project' => $project->id]
    );
```

\###get sprint's user stories

```
    $userStories = $taiga->userStories->getList(
        ['milestone' => $sprint->id]
    );
```

\###get projects stats

```
    foreach ($projects as $project) {
        $project->stats = $taiga->projects->getProjectIssueStats($project->id);
    }
```

License
-------

[](#license)

TaigaBundle and taiga/php-sdk are distributed under MIT license, see LICENSE file.

Contacts
--------

[](#contacts)

Report bugs or suggest features using [issue tracker at GitHub](https://github.com/Troopers/TaigaBundle/issues).

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity51

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

Total

4

Last Release

3205d ago

PHP version history (2 changes)0.1.0PHP ^5.5.9

0.1.2PHP &gt;=5.5.9

### Community

Maintainers

![](https://www.gravatar.com/avatar/7098ddf149da227cb3b05de081a24376838056f43162b6e836ac1afc10b26b83?d=identicon)[lenybernard](/maintainers/lenybernard)

---

Top Contributors

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

---

Tags

symfonysymfony-bundletaigatrooperssymfonysdkrestTaiga

### Embed Badge

![Health badge](/badges/appventus-taiga-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/appventus-taiga-bundle/health.svg)](https://phpackages.com/packages/appventus-taiga-bundle)
```

PHPackages © 2026

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