webeith / redmine-bundle
Redmine api
dev-master
2014-09-05 10:42 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-10-26 17:50:47 UTC
README
A Symfony2 bundle for the Redmine class from http://tspycher.com/using-the-redmine-api-with-php/
INSTALLATION
Add the following entry to deps
the run php bin/vendors install
.
[RedmineBundle]
git=http://github.com/roderik/RedmineBundle.git
target=/bundles/RedmineBundle
Register namespace in app/autoload.php
$loader->registerNamespaces(array(
// ...
'Redmine' => __DIR__.'/../vendor/bundles/RedmineBundle/src',
));
USAGE
$redmine = new Redmine($config);
$overdueissues = $redmine->getIssues("?query_id=10");
More on: http://tspycher.com/using-the-redmine-api-with-php/