Download the PHP package fireguard/report without Composer

On this page you can find all versions of the php package fireguard/report. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package report

Fireguard Report

Build Status Latest Stable Version Latest Unstable Version Total Downloads License Code Climate

SensioLabsInsight

Other languages for this documentation: PORTUGUÊS

The Fireguard Report is a report management package in PHP that aims to help you export information in a variety of formats, such as HTML, PDF and IMAGE, using a unique, integrated and simple interface.

Summary

  • Installation
    • Installing and Updating PhantomJs
  • How to use

    • Generating our first report
    • Header and Footer
    • Exporters
      • Methods available in all Exports
      • HtmlExporter
      • PdfExporter
      • ImageExporter
  • Laravel
    • Registering Service Provider
    • Publishing the configuration file
    • Examples of use with Laravel (Dependency Injection)
  • Other usage examples
    • Generating an HTML report
    • Generating an PDF report
    • Generating an IMAGE report
    • Sample ticket generated with this package

Installation

The FireGuard Report can be installed through the composer.

In order for the package to be automatically added to your composer.json file, run the following command:

Or if you prefer, add the following snippet manually:

Installing and Updating PhantomJs

To generate the PDF files and Images, this package is used by PhantomJs. For installation and update, we suggest two options:

1st Option: Add the lines below in the composer.json file, so the installation and update process will occur every time you execute the "composer install" or "composer update" commands.

2st Option: If you do not want to always keep the latest PhantomJS version, one possibility is to add a new script in composer.json as shown below:

And run whenever you want to update the version of the executable the following command composer run-script update-phantomjs

If you choose this option, you must run at least the first time for it to be installed.

How to use

Generating our first report

The use of this package is very simple, we will need two objects to generate a final file, the first one is Report, with it we define the effective content of the report, the second is the Exporter, which receives a Report and is responsible for handling the information and export to a final file.

Here is a simple example to generate a file:

So at the end of the execution, in the variable $file we will have the actual path to the generated file.

For header and footer HTML, two variables are available in exporters that use paging, such as PdfExporter, numPage, and totalPages, which contains the current page and the total pages of the page respectively. To access them, you must enclose them by "@{{ }}", so the contents of the content will be automatically updated. Below is a simple example that will use the header and footer;

With this example above we will find in the variable $file the path to the generated PDF file;

Exporters

As we saw in the previous examples, the export of the report requires an Exporter class. An Exporter is a specialized class that implements an ExporterInterface interface and is responsible for catching a Report object and transforming it into a finalized file.

At this point we have included in the package three Exporters, one for HTML, one for PDF and one for Images, it is possible that in future new Exporters will be available, we also encourage you to develop new Exporters and, if possible, contribute to the project.

Methods available in all Exports

getPath(): Returns the location where the generated file will be saved;

setPath($path, $mode = 0777): Sets the location where the file should be saved;

getFileName(): Returns the name of the file to save;

setFileName($fileName): Sets the name of the file to be saved;

getFullPath(): Returns the complete path with the name of the file to be generated;

compress($buffer): Returns a compressed string with no comments or line breaks;

configure(array $config): Sets the settings to apply to the current report;

generate(ReportInterface $report): Renders the report and returns a path to the generated file;

response(ReportInterface $report, $forceDownload): Renders the report and returns an instance of the Symfony\Component\HttpFoundation\Response;

Example of use with a fluent interface:

HtmlExport

For exporting files in HTML format, in addition to the standard methods, some others are available, below all are listed with a brief description of their function:

saveFile($content): Saves the HTML file and returns the full path to the generated file;

PdfExport

For exporting files in PDF format, in addition to the standard methods, some others are available, below all are listed with a brief description of their function:

getFormat(): Returns the defined paper size;

setFormat($format): Sets a paper size to be exported. (Valid Formats: 'A4', 'A3', 'Letter')

getOrientation(): Returns the orientation of the defined paper;

setOrientation($orientation): Sets the orientation of the paper to be exported. (Valid Orientations: 'landscape', 'portrait')

getMargin(): Returns the defined paper margin;

setMargin($margin): Sets the paper margin to be exported;

getBinaryPath(): Returns the path to the PhantomJS binary in the application;

setBinaryPath($binaryPath): Sets the path to the PhantomJS binary file in the application;

getCommandOptions(): Returns the parameters to be executed with the PhantomJS for export;

setCommandOptions(array $options): Sets the parameters to be executed with the PhantomJS for export;

addCommandOption($option, $value): Adds a new parameter to run with PhantomJS for export;

getHeaderHeight(): Returns the size of the header defined;

getFooterHeight(): Returns the size of the footer defined;

ImageExport

For exporting files in IMAGE format, in addition to the standard methods, some others are available, below all are listed with a brief description of their function:

getFormat(): Returns the defined paper size;

setFormat($format): Sets a paper size to be exported. (Valid Formats: 'A4', 'A3', 'Letter')

getOrientation(): Returns the orientation of the defined paper;

setOrientation($orientation): Sets the orientation of the paper to be exported. (Valid Orientations: 'landscape', 'portrait')

getMargin(): Returns the defined paper margin;

setMargin($margin): Sets the paper margin to be exported;

getBinaryPath(): Returns the path to the PhantomJS binary in the application;

setBinaryPath($binaryPath): Sets the path to the PhantomJS binary file in the application;

getCommandOptions(): Returns the parameters to be executed with the PhantomJS for export;

setCommandOptions(array $options): Sets the parameters to be executed with the PhantomJS for export;

addCommandOption($option, $value): Adds a new parameter to run with PhantomJS for export;

getHeaderHeight(): Returns the size of the header defined;

getFooterHeight(): Returns the size of the footer defined;

Laravel

The steps described below are optional and can only make it easier for those who want to use this package with Laravel 5.

Registering Service Provider

In the config\app.php configuration file, register above the providers of your application as follows:

Publishing the configuration file

To publish the configuration file you must use the following command:

Examples of use with Laravel (Dependency Injection)

With the registration of the service provider, you can now use the dependency injection of Laravel to solve the exporters, already bringing them ready and configured with the application configuration file.

For dependency injection four classes are available, one interface and three concrete, the default interface is solved for the concrete PdfExporter class, which can be changed in the default-exporter parameter of the configuration file report.php generated in the integration. See below some examples of use.

Exporter Interface

HtmlExporter Class

PdfExporter Class

ImageExporter Class

Other usage examples


Generating an HTML report
Generating an PDF report
Generating an IMAGE report
Sample ticket generated with this package



Created by Fireguard Sistemas http://fireguard.com.br


All versions of report with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
jakoch/phantomjs-installer Version 2.1.1-p06
symfony/process Version >=2.7
symfony/http-foundation Version >=2.7
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package fireguard/report contains the following files

Loading the files please wait ....