Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davereid/redmine-php-sdk
PHP SDK for the Redmine API
https://github.com/davereid/redmine-php-sdk
Last synced: 26 days ago
JSON representation
PHP SDK for the Redmine API
- Host: GitHub
- URL: https://github.com/davereid/redmine-php-sdk
- Owner: davereid
- Created: 2012-05-18T21:00:47.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-12T14:40:52.000Z (over 12 years ago)
- Last Synced: 2024-10-18T23:30:09.636Z (3 months ago)
- Language: PHP
- Homepage: http://www.redmine.org/projects/redmine/wiki/Rest_api
- Size: 97.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Redmine PHP SDK #
Provides a re-usable PHP library for interacting with the Redmine system's API.
* Author: Dave Reid http://www.davereid.net/
* Website: http://davereid.github.com/redmine-php-sdk/
* License: GPLv2/MIT
* [![Build Status](https://secure.travis-ci.org/davereid/redmine-php-sdk.png?branch=master)](http://travis-ci.org/davereid/redmine-php-sdk)## Requirements ##
* PHP 5.3 or higher
* [cURL](http://us.php.net/manual/en/book.curl.php) extension
* [JSON](http://us.php.net/manual/en/book.json.php) extension
* [PHPUnit](http://www.phpunit.de/) (for unit testing)## Usage ##
```
subject = 'New subject for issue #1.';
$issue->save();
?>
```## License ##
The Redmine PHP SDK is dual licensed under the MIT and GPLv2 licenses.
## Unit Tests ##
To run the unit tests included with the SDK, you must have PHPUnit installed.
From the Redmine SDK directory, run `phpunit tests` to run all tests.