koolreport / core
An Open Source PHP Reporting Framework for easier and faster report delivery.
Installs: 297 688
Dependents: 7
Suggesters: 0
Security: 0
Stars: 161
Watchers: 16
Forks: 34
Open Issues: 4
Requires
- php: >=5.4
- dev-master
- 6.6.1
- 6.6.0
- 6.5.0
- 6.2.0
- 6.1.0
- 6.0.1
- 6.0.0
- 5.6.2
- 5.6.1
- 5.6.0
- 5.5.0
- 5.1.0
- 5.0.1
- 5.0.0
- 4.7.1
- 4.7.0
- 4.5.1
- 4.5.0
- 4.3.0
- 4.0.0
- 3.25.4
- 3.25.3
- 3.25.1
- 3.25.0
- 3.1.0
- 3.0.0
- 2.78.0
- 2.75.0
- 2.43.0
- 2.42.0
- 2.41.3
- 2.33.0
- 2.31.8
- 2.31.7
- 2.0.0
- 1.72.8
- 1.61.5
- 1.61.2
- 1.47.3
- 1.34.9
- dev-ver6.6.1
- dev-ver6.6.0
- dev-no_eval_csp
- dev-ver6.5.0
- dev-ver6.2.0
- dev-ver6.1.0
- dev-ver6.0.1
- dev-ver6.0.0
- dev-ver5.6.2
- dev-ver5.6.1
- dev-ver5.6.0
- dev-generator
- dev-filter_like_operator
- dev-ver5.5.0
- dev-ver5.1.0
- dev-ver5.0.1
- dev-ver5.0.0
- dev-ver4.7.1
- dev-ver4.7.0
- dev-ver4.5.1
- dev-ver4.3.0
- dev-ver4.0.0
- dev-ver3.25.4
- dev-ver3.25.3
- dev-ver3.25.1
- dev-ver3.25.0
- dev-ver3.1.0
- dev-ver3.0.0
- dev-ver2.78.0
- dev-ver2.75.0
- dev-ver2.43.0
- dev-ver2.42.0
- dev-ver2.41.3
- dev-ver2.33.0
- dev-ver2.31.8
- dev-ver2.31.7
- dev-ver2.0.0
- dev-ver1.72.8
- dev-ver1.61.5
- dev-ver1.61.2
- dev-ver1.47.3
- dev-releases
- dev-ver1.34.9
This package is auto-updated.
Last update: 2024-10-31 08:06:58 UTC
README
KoolReport is an intuitive and flexible Open-Source PHP Reporting Framework for faster and easier report delivery. It gives you full control of data process as well as data visualization. It is fast, simple and can be extended in many ways.
Features
- Various datasources including relational database MySQL, SQL Server, Oracle or NoSQL like MongoDB, CSV or Excel files.
- Various data processes: data transformation, join, group, filter and etc.
- Awesome visualization through widgets charts and tables.
- Extended packages can be found at KoolReport Extended Packages
Changelog
- Version 6.1.0 (Mar 31st, 2023)
- Version 6.0.1 (Oct 03rd, 2022)
- Version 6.0.0 (Sept 23rd, 2022)
- Version 5.5.0 (Nov 15th, 2021)
- Version 5.1.0 (July 7th, 2021)
- Version 5.0.1 (Jan 11st, 2021)
- Version 5.0.0 (Nov 11st, 2020)
- Version 4.7.1 (May 19th, 2020)
- Version 4.7.0 (May 15th, 2020)
- Version 4.5.1 (Feb 4th, 2020)
- Version 4.5.0 (Jan 21st, 2020)
- Version 4.3.0 (Oct 4th, 2019)
- Version 4.0.0 (Jun 6th, 2019)
- Version 3.25.4 (Feb 15th, 2019)
- Version 3.25.3 (Feb 14th, 2019)
- Version 3.25.1 (Feb 13rd, 2019)
- Version 3.25.0 (Feb 11st, 2019)
- Version 3.1.0 (Nov 17th, 2018)
- Version 3.0.0 (Nov 13rd, 2018)
- Version 2.78.0 (Jul 16th, 2018)
- Version 2.43.0 (Apr 20th, 2018)
- Version 2.42.0 (Mar 19th, 2018)
- Version 2.41.3 (Mar 02nd, 2018)
- Version 2.31.8 (Feb 05th, 2018)
- Version 2.31.7 (Jan 26th, 2018)
- Version 2.0.0 (Dec 23rd, 2017)
- Version 1.72.8 (Oct 30th, 2017)
- Version 1.61.5 (Sep 27th, 2017)
- Version 1.61.2 (Sep 21st, 2017)
- Version 1.47.3 (Aug 23rd, 2017)
- Version 1.34.9 (Jul 25th, 2017)
- Version 1.32.8 (Jul 5th, 2017)
- Version 1.27.6 (Jun 7th, 2017)
- Version 1.15.4 (May 22th, 2017)
- Version 1.11.4 (May 4th, 2017)
- Version 1.0.0 (April 3rd, 2017)
Get started
System Requirement
- PHP 5.4 or higher
Installation
By composer
If you use composer
, you can run following command to install the latest version
$ composer require koolreport/core
Manually Download
Please go to our Get Started page and following our guide to install.
What's included
koolreport/
├── core/
│ ├── src/
│ ├── tests/
│ └── autoload.php
Create your first report
Make two files SalesByCustomer.php
and SalesByCustomer.view.php
/
├── koolreport/
├── myreport/
│ ├── SalesByCustomer.php
│ ├── SalesByCustomer.view.php
│ └── index.php
index.php
<?php // index.php: Just a bootstrap file require_once "SalesByCustomer.php"; $salesByCustomer = new SalesByCustomer; $salesByCustomer->run()->render();
SalesByCustomer.php
<?php require_once "../koolreport/core/autoload.php"; //Specify some data processes that will be used to process use \koolreport\processes\Group; use \koolreport\processes\Sort; use \koolreport\processes\Limit; //Define the class class SalesByCustomer extends \koolreport\KoolReport { protected function settings() { //Define the "sales" data source which is the orders.csv return array( "dataSources"=>array( "sales"=>array( "class"=>'\koolreport\datasources\CSVDataSource', "filePath"=>"orders.csv", ), ) ); } protected function setup() { //Select the data source then pipe data through various process //until it reach the end which is the dataStore named "sales_by_customer". $this->src('sales') ->pipe(new Group(array( "by"=>"customerName", "sum"=>"dollar_sales" ))) ->pipe(new Sort(array( "dollar_sales"=>"desc" ))) ->pipe(new Limit(array(10))) ->pipe($this->dataStore('sales_by_customer')); } }
SalesByCustomer.view.php
<?php use \koolreport\widgets\koolphp\Table; use \koolreport\widgets\google\BarChart; ?> <div class="report-content"> <div class="text-center"> <h1>Sales By Customer</h1> <p class="lead">This report shows top 10 sales by customer</p> </div> <?php BarChart::create(array( "dataStore"=>$this->dataStore('sales_by_customer'), "width"=>"100%", "height"=>"500px", "columns"=>array( "customerName"=>array( "label"=>"Customer" ), "dollar_sales"=>array( "type"=>"number", "label"=>"Amount", "prefix"=>"$", "emphasis"=>true ) ), "options"=>array( "title"=>"Sales By Customer", ) )); ?> <?php Table::create(array( "dataStore"=>$this->dataStore('sales_by_customer'), "columns"=>array( "customerName"=>array( "label"=>"Customer" ), "dollar_sales"=>array( "type"=>"number", "label"=>"Amount", "prefix"=>"$", ) ), "cssClass"=>array( "table"=>"table table-hover table-bordered" ) )); ?> </div>
You may download the source code sale_report.zip. And the result of this report can be previewed in here.
More examples
.. and all examples.
Licenses
The KoolReport is licensed under MIT License.
Extended packages:
Many Free Packages
- PlatesPhp: Use PlatesPHP template engine [Free]
- Blade: Use Blade template engine [Free]
- Twig: Use Twig template engine [Free]
- Laravel: Make KoolReport work seamlessly in Laravel PHP Framework [Free]
- CodeIgniter: Make KoolReport work seamlessly in CodeIgniter Framework [Free]
- MongoDB: Build report from MongoDB [Free]
- CleanData: Solution for your missing data [Free]
- QueryBuilder: Build fast and error-free SQL Query for your report [Free]
- Instant: Create widget instantly without setting up a full report [Free]
- Cache: Drive the speed and responsiveness of your report to the max [Free]
- Statistics: Provide various statistical measures for your data [Free]
- Bootstrap3: Create beautiful report with Bootstrap 3 [Free]
- Bootstrap4: Create modern report with Bootstrap 4 [Free]
- CloudExport: Export your report to PDF, JPG, PNG and other formats using cloud services [Free]
Some with a little price
- Excel: Import and export data to Excel [$49]
- Cube: Turn your data into two dimensions cross-tab table [$29]
- Pivot: Build multi-dimenstional pivot table [$69]
- Export: Export your report to PDF, JPG, PNG and other formats [$49]
- Morris Chart: Use morris charts in your report [$19]
- Inputs: A simplest way to build dynamic reports [$49]
- BarCode: Generate BarCode and QRCode [$19]
- Sparklines: Create tiny charts [$19]
- DataGrid: Display data in table format, search, sort, group data and more.. [$29]
- DrillDown: Build awesome drill-down, drill-through report easily [$49]
- ChartJS: One of the most beautiful and powerful chart libraries for your report [$49]
- Amazing: Style your report with modern and beautiful theme [$49]
- D3: Beautiful D3 Chart Library for your great data visualization [$49]
KoolReport Pro
KoolReport Pro is the most advanced version of KoolReport. It includes latest KoolReport version plus all available advanced packages from KoolPHP Inc. It costs $199 for Developer License, $499 for Team License and $999 for Enterprise License. The licenses come with following benefits:
- Include all current package and future ones.
- Deploying on unlimited servers or projects.
- Royal free (no extra charged) when you delivered the KoolReport Pro with your commercial product.
- 1 year subscription to get free upgrades, bugs fixed and new released packages regardless price.
- 1 year priority support on forum. Your post will be marked with star and got fatest response by our expert.
- Enterprise License allows unlimited number of developers in organization.
- 50% discount on the next subscription.
If you have further inquiry on this special version, please go to our forum or email us at support@koolreport.com. We will get back to you in no time.
Some thoughts
KoolReport is the sum of our many years experience in making reports for our customers. We hope that it will help you to create powerful report with less effort. We love KoolReport very much and want it to be alive. We hope that you do too.
Being alive means that the source code continues to evolve, more features are added, and everything is back with professional support.
Please consider your purchase of extended packages or subscription as your donation. In exchange, we would like to send you gifts which are extensions or support services. By this way, we together contribute to the existence of KoolReport.
Our vision
"If you want to go fast, go alone. If you want to go far, go together" - African Proverb
We have learned above statement through years of software development. We choose open-source as software model for KoolReport because we understand that:
- Alone, we never keep up with all time-changing needs
- Alone, we never have enough man power to serve well.
That's why we designed KoolReport to be simple and extensible. Simple to use and extensible for change. We would like to grow it to be a solid framework supported by market of packages providing various datasources, data processes, visualization widgets and report templates where users can find solution right away.
KoolReport wants to be foundation or ecosystem connecting people who need reporting solution and those who can provide it. All are invited to join us on market to provide excellent solutions. We believe people willing to pay for a good solution. And we are happy to share market and profit.
Vision are big, we take the first step. Join us!
To-do-list
Below are the things we are going to do:
- Evolve the structure of KoolReport and its functionalities
- Build market to push
- Connection to various datasources
- Data processing focus on: data cleaning, data analytics, data mining techniques
- More widgets to visualize data
- Build GUI for non-technical users
- Build ecosystem to handle big-data
Author
- KoolPHP Inc - A vendor of PHP components