library redmine-bundle
Redmine api
webeith/redmine-bundle
Redmine api
- Friday, September 5, 2014
- by webeith
- Repository
- 1 Watchers
- 0 Stars
- 1 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 2 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
INSTALLATION
Add the following entry to deps the run php bin/vendors install., (*1)
[RedmineBundle]
git=http://github.com/roderik/RedmineBundle.git
target=/bundles/RedmineBundle
Register namespace in app/autoload.php, (*2)
$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/