2017 © Pedro Peláez
 

library jirapi

PHP Jira REST API client

image

silwerclaw/jirapi

PHP Jira REST API client

  • Tuesday, August 9, 2016
  • by silwerclaw
  • Repository
  • 2 Watchers
  • 1 Stars
  • 4,537 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 10 % Grown

The README.md

Jirapi

Build Status, (*1)

PHP Jira Rest API client for Laravel 5.1, 5.2 that includes wrapper on both Jira Cloud and Jira Software API`s., (*2)

Installation

composer require silwerclaw/jirapi

After that register plugin Service Provider adding line to your app.php file to providers list:, (*3)

\Silwerclaw\Jirapi\JirapiServiceProvider::class, 

You can also register facade adding line to your app.php file to aliases list:, (*4)

'Jirapi' => \Silwerclaw\Jirapi\Facades\Jirapi::class,

Configuration

You can configure plugin in two ways:, (*5)

Add to your .env file variables with correct credentials, (*6)

JIRA_HOST=
JIRA_LOGIN=
JIRA_PASSWORD=

Alternatively you can publish plugin config file with, (*7)

php artisan vendor:publish --provider="Silwerclaw\Jirapi\JirapiServiceProvider"

After that go to your config folder and edit fields with host, login and password with your values, (*8)

Beware that for most of actions your account in Jira must be granted with appropriate access rights!, (*9)

Package usage

Please check WIKI pages for different use cases and examples, (*10)

The Versions

09/08 2016

dev-master

9999999-dev

PHP Jira REST API client

  Sources   Download

The Requires

 

The Development Requires