Download the PHP package soliantconsulting/jira-issue-collector without Composer

On this page you can find all versions of the php package soliantconsulting/jira-issue-collector. 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 jira-issue-collector

Jira Issue Collector

Build Status Code Climate Test Coverage Latest Stable Version Latest Unstable Version Total Downloads License

Jira Issue Collector Module is a fast, convenient and free Zend Framework Module designed by Soliant Consulting, Inc. to dynamically add a Jira Issue Collector strictly through configuration.

Jira Issue Collector Module is a lightweight package that enables the Jira Issue Collector to be injected into the Zend\Mvc response body when the standard EVENT_FINISH is triggered.

Jira Issue Collector Module is Composer friendly, making it a snap to add to any existing Zend Framework MVC application.

Easy to Integrate

System Requirements

With minimum effort, it should theoretically work older versions of PHP and Zend Framework 2, however, backward compatibility is not verified or maintained. If you needed to go back older than PHP 5.4, then use of short array syntax will definitely block you unless you refactor that.

License

Jira Issue Collector Module is free for commercial and non-commercial use, licensed under the business-friendly standard MIT license.

Jira Issue Collector Module Documentation

Create Your Jira Issue Collector

See the Jira Issue Collector documentation for basic setup. Once you have it configured, you will need to copy the url from the code snipped Jira creates for the Issue Collector. The wording in the Jira UI is subject to change, but you will be given two options something like this:

In fact, they both use JavaScript, and it would be more explicit if they were labeled like this instead:

Don't worry about the details of the configs until we get to the next section, but here are the bare-bones details you need to be aware of while setting up your Jira Issue Collector.

On the assumption that Jquery may not be part of your project, the default and most basic configuration looks like this:

'soliant-jira-issue-collector' => [
    'enabled'       => true,
    'collector'     => [
        'url'       => "https://jira.myserver.com/really-long-url",
    ],
],

If you intend to use Jquery, and if you want to access the advanced options, you will need to enable Jquery support:

'soliant-jira-issue-collector' => [
    'enabled'       => true,
    'collector'     => [
        'useJquery' => true,
        'url'       => "https://jira.myserver.com/really-long-url",
    ],
],

NOTE: The url for every Issue Collector is unique and differs slightly between the two options, so be sure that if you change the setting in the Issue Collector, you also update it in your module config. You will need to copy the url out of the code snippet that Jira creates for you, as you won't need the rest of the code in your configuration.

Basic Install

The Jira Issue Collector Module installs like any standard Zend Framework module.

Composer

Install the module via composer by adding it to your composer.json or by running

composer require soliantconsulting/jira-issue-collector:~1.0

Add Module Namespace

Add the Soliant\JiraIssueCollector module to the module section of your config/application.config.php

Add Module Config

Copy config/soliant-jira-issue-collector.local.php.dist from this module into your project config/autoload/soliant-jira-issue-collector.local.php. Change any settings in it according to your needs.

Advanced Options

The comments in config/soliant-jira-issue-collector.local.php.dist provide details about the advanced settings the module provides. In short the module provides optional support for these features:


All versions of jira-issue-collector with dependencies

PHP Build Version
Package Version
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 soliantconsulting/jira-issue-collector contains the following files

Loading the files please wait ....