2017-25 © Pedro Peláez
 

library php-reports

Helpers for building reports with excel

image

jacques/php-reports

Helpers for building reports with excel

  • Thursday, May 17, 2018
  • by jacques
  • Repository
  • 1 Watchers
  • 0 Stars
  • 393 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 141 % Grown

The README.md

Reports

Author Software License Scrutinizer Code Quality Maintainability Test Coverage, (*1)

Helpers for building reports with PHP (i.e. Excel Spreadsheets). Use the phpspreadsheet package to generate the Excel Spreadsheet., (*2)


Installation

$ composer require jacques/php-reports:dev-master
{
    "require": {
        "jacques/php-reports": "dev-master"
    }
}

Usage

<?php declare(strict_types=1);

require_once __DIR__ . '/../vendor/autoload.php';

$report = new \Jacques\Reports\Excel('Cover Sheet');
$report->setCellValue('B2', 'Report Name');
$report->setCellValue('B4', 'Description');

$report->createSheet('User');

$report->save(__DIR__.'/tmp/file.xlsx');

License

Report Helpers is licensed under the MPL v.2.0. This source code form is distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License., (*3)

The Versions

17/05 2018

dev-master

9999999-dev

Helpers for building reports with excel

  Sources   Download

proprietary

The Requires

 

The Development Requires