Download the PHP package deselbi/php-jira-rest-client without Composer

On this page you can find all versions of the php package deselbi/php-jira-rest-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package php-jira-rest-client

PHP JIRA Rest Client

Latest Stable Version Latest Unstable Version License Total Downloads Monthly Downloads Daily Downloads

Requirements

Installation

  1. Download and Install PHP Composer.

  2. Next, run the Composer command to install the latest version of php jira rest client.

    or add the following to your composer.json file.

    Note: If you are using laravel 5.0 or 5.1(this version dependent on phpdotenv 1.x), then use "1.5.*" version instead.

  3. Then run Composer's install or update commands to complete installation.

  4. After installing, you need to require Composer's autoloader:

Configuration

you can choose loads environment variables either 'dotenv' or 'array'.

use dotenv

copy .env.example file to .env on your project root.

important-note: If you are using previous versions(a prior v1.2), you should move config.jira.json to .env and will edit it.

If you are developing with laravel framework(5.x), you must append above configuration to your application .env file.

use array

create Service class with ArrayConfiguration parameter.

Usage

Table of Contents

Project

Custom Field

Issue

IssueLink

User

Group

Get Project Info

Get All Project list

Get Project type

Get All Field List

Create Custom Field

Get Issue Info

Returns a full representation of the issue for the given issue key.

You can access the custom field associated with issue through $issue->fields->customFields array or through direct custom field id variables(Ex: $issue->fields->customfield_10300).

Create Issue

If you want to set custom field, you can call the addCustomField function with custom field id and value as parameters.

Currently, not tested for all custom field types.

Create Multiple Issue

Create Sub Task

Creating a sub-task is similar to creating a regular issue, with two important method calls:

for example ​

Add Attachment

Update issue

If you want to change the custom field type when updating an issue, you can call the addCustomField function just as you did for creating issue.

Change Assignee

Remove Issue

Add comment

Perform a transition on an issue

Perform an advanced search

Simple Query

JQL with pagination

Issue time tracking

Add worklog in issue

edit worklog in issue

Get issue worklog

Add watcher in Issue

Create Issue Link

The Link Issue Resource provides functionality to manage issue links.

Get Issue LinkType

Rest resource to retrieve a list of issue link types.

Get User Info

Returns a user.

Find Users

Returns a list of users that match the search string and/or property.

Find Assignable Users

Returns a list of users that match the search string.

Create Group

Create new group.

Get Users from group

returns a paginated list of users who are members of the specified group and its subgroups.

Add User to group

add user to given group.

License

Apache V2 License

JIRA Rest API Documents


All versions of php-jira-rest-client with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
netresearch/jsonmapper Version ~0.11|^1.0
monolog/monolog Version ~1.12
vlucas/phpdotenv Version ~2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package deselbi/php-jira-rest-client contains the following files

Loading the files please wait ....