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)