Skip to content

Installation

KwangSeob Jeong edited this page Jan 7, 2023 · 3 revisions

How to install

  1. Download and Install PHP Composer.

    curl -sS https://getcomposer.org/installer | php
  2. 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"
        }
    }
  3. Then run Composer's install or update commands to complete installation.

    php composer.phar install
  4. 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.

Clone this wiki locally