PHPackages                             bluetea/jira-rest-api-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. bluetea/jira-rest-api-bundle

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

bluetea/jira-rest-api-bundle
============================

Atlassian JIRA REST API Symfony2 Bundle

28.7k4PHP

Since Feb 23Pushed 9y ago2 watchersCompare

[ Source](https://github.com/BlueTeaNL/JIRA-Rest-API-Bundle)[ Packagist](https://packagist.org/packages/bluetea/jira-rest-api-bundle)[ RSS](/packages/bluetea-jira-rest-api-bundle/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

JIRA Rest API for Symfony2
==========================

[](#jira-rest-api-for-symfony2)

This Symfony2 Bundle uses the [JIRA REST API PHP Library](https://github.com/BlueTeaNL/JIRA-Rest-API-PHP). This bundle adds configuration and initializes the endpoints with dependency injection and tagged services.

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

[](#installation)

Add this bundle to your composer.json

```
composer.phar require "bluetea/jira-rest-api-bundle" dev-master

```

Enable it in the AppKernel.php

```
new Bluetea\JiraRestApiBundle\BlueteaJiraRestApiBundle(),

```

Add the configuration to your config.yml

```
bluetea_jira_rest_api:
    api_client: guzzle
    api:
        jira: https://atlassian.domain.com/rest/api/2/
        crowd: https://atlassian.domain.com/crowd/rest/usermanagement/latest/
    authentication:
        jira:
            type: basic # or anonymous
            username: username # mandatory is basic authentication is chosen
            password: password # mandatory is basic authentication is chosen
        crowd:
            type: basic # or anonymous
            username: username # mandatory is basic authentication is chosen
            password: password # mandatory is basic authentication is chosen

```

Usage
=====

[](#usage)

```
