-
Notifications
You must be signed in to change notification settings - Fork 37
Installation
KwangSeob Jeong edited this page Jan 7, 2023
·
3 revisions
-
Download and Install PHP Composer.
curl -sS https://getcomposer.org/installer | php
-
Next, run the Composer command to install the latest version of php jira rest client.
php composer.phar require lesstif/jira-cloud-restapi:^1.0
or add the following to your composer.json file.
{ "require": { "lesstif/jira-cloud-restapi": "^1.0" } }
-
Then run Composer's install or update commands to complete installation.
php composer.phar install
-
After installing, you need to require Composer's autoloader:
require 'vendor/autoload.php';
Laravel: Once installed, if you are not using automatic package discovery, then you need to register the JiraCloud\JiraCloudServiceProvider
service provider in your config/app.php
.
Anything unclear or inaccurate? Please let us know at [email protected] or raise the issue