Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruflin/jirapi
https://github.com/ruflin/jirapi
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ruflin/jirapi
- Owner: ruflin
- License: apache-2.0
- Created: 2012-04-17T05:58:52.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-04-16T15:03:55.000Z (over 12 years ago)
- Last Synced: 2024-10-14T09:48:18.285Z (3 months ago)
- Homepage:
- Size: 72.3 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- Changelog: changes.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
Jirapi
==================================
Jirapi is a PHP library that aims to provide an easy access to the [JIRA REST API](http://docs.atlassian.com/jira/REST/latest/).Getting Started
---------------
To use Jirapi in your project you have to include it. Best way to do this is to use [PHP autoload](http://www.php.net/manual/en/language.oop5.autoload.php).
When you're ready just create a new `Client` with your access data and JIRA URL:$config = array(
'url' => 'https://jira.atlassian.com',
'username' => 'your username',
'password' => 'your password'
);
$client = new Client($config);Now you can easily access an issue using the following code:
$issue = $client->getIssue($issueId);
Have fun and explore!
Documentation
-------------
No documentation yet.