Installation
Requirements #
KoolReport Dashboard has a few requirements that you need to know before installing:
- PHP >= 7.0
- KoolReport Pro >= 4.9.0
Browser Support #
KoolReport Dashboard supports reasonably recent versions of the following browsers:
- Google Chrome
- Apple Safari
- Microsoft Edge
- Mozilla Firefox
Install via manual download #
- Download zip file from My Licenses
- Unzip
- Copy the folder
dashboard
intokoolreport
folder, it will look like below:
koolreport
├── pro
├── dashboard
Install via Composer #
If you have purchased the package then you can follow these steps to install
- Login to koolreport.com
- Go to My Licenses
- Click Get Token For Composer button
- Copy the text and save to file
auth.json
next tocomposer.json
- Add the repositories to
composer.json
like below - Run
composer update
to install package
composer.json
{
"repositories":[
{"type":"composer","url":"https://repo.koolreport.com"}
],
"require":{
"koolreport/pro":"*",
"koolreport/dashboard":"*",
...
}
}
Your auth.json
will look like this:
{
"http-basic": {
"repo.koolreport.com": {
"username": "your@email.com",
"password": "your-secret-token"
}
}
}
Note: Please add your auth.json
to .gitignore
as it contains your secret login information.
Code distribution #
KoolReport Dashboard's license does not allow the public distribution of its source code. So, you may not build an application using Dashboard and distribute that application public via open source repository hosting platforms or any other code distribution platform.
If you would like to develop a third party package that augments KoolReport Dashboard's functionality, you are free to do so. However, you may not distribute the Dashboard source code along with your package.
Get started with KoolReport
KoolReport will help you to construct good php data report by gathering your data from multiple sources, transforming them into valuable insights, and finally visualizing them in stunning charts and graphs.