fyllepo / jira-report-time-logged-by-user

Reporting time logged per user and not just by project
52 stars 38 forks source link

Unable to install dependencies #1

Closed jeyaganeshn closed 6 years ago

jeyaganeshn commented 7 years ago

Thanks for making this wonderful script. I am having some issues; I have listed it down.

fyllepo commented 7 years ago

Hi @jeyaganeshn, sorry for the slow reply.

I'll update the docs on how to get started with composer, but you'll first want to visit https://getcomposer.org and get it installed locally, it's a package manager for PHP, so you can easily manage what libraries a project uses.

Secondly, as long as you use JIRA Cloud (formerly On Demand) you'll be able to use the API. You can configure the variables at the top of index.php eg:

$cfg = [
  'jira_host_address'  => 'https://your-jira-cloud-domain.atlassian.net',
  'jira_user_email'    => 'your_jira_account_email@example.com',
  'jira_user_password' => 'password',    
  'max_results' => '500'
];

Let me know if you have anymore questions :)

jeyaganeshn commented 7 years ago

Thanks for the information. I will surely look into the composer part. :) I did add the details in the configuration. Once I fix the composer part; this issue should resolve I guess. I can run it on my local machine as well right? Using XMPP or AMPPS.

Is there a place where I can request couple of feature?