2017 © Pedro Peláez
 

library jira

Easy to use wrapper for Jira REST api

image

edujugon/jira

Easy to use wrapper for Jira REST api

  • Monday, November 13, 2017
  • by edujugon
  • Repository
  • 1 Watchers
  • 0 Stars
  • 4 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

JIRA

Easy to use wrapper for Jira REST api, (*1)

Installation

Type in console:
composer require edujugon/jira

Usage samples

$jira = new Edujugon\JIRA\JIRA($username,$password,$url);

Set the project to interact with

You can set the project either by key or id. The available methods are:, (*2)

$jira->setProjectByKey('PI');

or, (*3)

$jira->setProjectById('162');

Set the issue type

You can set the issue type either by name or id. The available methods are:, (*4)

$jira->setIssueTypeByName('Task');

or, (*5)

$jira->setIssueTypeById('1');

Create an issue

$jira->setProjectByKey('PI')
    ->setIssueTypeByName('Task')
    ->setSummary('Issue title')
    ->setDescription('First line of the description')
    ->addDescriptionNewLine('Another line')
    ->addDescriptionNewLine('One line more :)')
    ->createIssue();

More options soon

Enjoy :), (*6)

The Versions

13/11 2017

dev-master

9999999-dev

Easy to use wrapper for Jira REST api

  Sources   Download

MIT

The Requires

 

The Development Requires

by edujugon [Eduardo Marcos]

api rest jira

13/11 2017

0.0.1

0.0.1.0

Easy to use wrapper for Jira REST api

  Sources   Download

MIT

The Requires

 

The Development Requires

by edujugon [Eduardo Marcos]

api rest jira