dev-master
9999999-devPHP Jira REST API client
The Requires
- php ^7.0
- ext-curl *
- illuminate/support ^5.1
- guzzlehttp/guzzle ~5.0
- nesbot/carbon 1.*
- illuminate/contracts ^5.1
The Development Requires
PHP Jira REST API client
PHP Jira Rest API client for Laravel 5.1, 5.2 that includes wrapper on both Jira Cloud and Jira Software API`s., (*2)
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,
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)
Please check WIKI pages for different use cases and examples, (*10)
PHP Jira REST API client