New feature: get Project Components
edegaudenzi opened this issue · 4 comments
edegaudenzi commented
Functionality to retrieve Components defined in a Jira project is missing.
Something like:
$proj = new ProjectService();
$prjs = $proj->getAllProjects();
// Extract and show Project Components for every Jira Project
foreach ($prjs as $p) {
var_export($proj->getProjectComponents($p->id));
}
I'll try to create a pull request about this.
lesstif commented
Hi @edegaudenzi, I'm looking forward to your PR.
edegaudenzi commented
Hi @lesstif , you're more than welcome. I think PR's up.
lesstif commented
Hi @edegaudenzi , Thank you for your great PR.
Could you update README.md with sample code, please?
edegaudenzi commented
It should already be in the first commit. I've tried to follow existing code style and naming convention but will definitely need your review! ;)