Install dependencies
composer install
sudo apt install php-curl
Start development server
php bin/console server:start
...or make public web
folder.
###Login The server baseUrl, user and password are requested.
Select the project to filter worklogs.
Filter by date the worklogs and show totals.
- The max issues to be retrieved are 1000.
- The max logs per issue are 20. This may affect the final result and obtain undesired behaviours.
- The credentials are stored in session, serialized.
- Issue with PHP v7.0.18, after composer install the following exception get's fired
Script Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache handling the symfony-scripts event terminated wit
[RuntimeException]
An error occurred when executing the "'cache:clear --no-warmup'" command:
PHP Fatal error: Uncaught Symfony\Component\Debug\Exception\ClassNotFoundException: Attempted to load class "DOMDocument"
The solution that worked out was the following:
sudo apt-get install php7.0-xml
Thanks to Stackoverflow
- Valentin Mari ([email protected])