├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── README_PT.md ├── composer.json ├── composer.lock ├── config └── report.php ├── docker-compose.yml ├── examples ├── report-boleto.pdf ├── report1-html.php ├── report1-image.php ├── report1-pdf.php └── report1.html ├── phpunit.xml ├── src └── Report │ ├── Contracts │ ├── ExporterInterface.php │ └── ReportInterface.php │ ├── Exporters │ ├── AbstractExporter.php │ ├── AbstractPhantomExporter.php │ ├── HtmlExporter.php │ ├── ImageExporter.php │ └── PdfExporter.php │ ├── Laravel │ └── ReportServiceProvider.php │ └── Report.php └── tests └── Report ├── Exporters ├── AbstractExporterTest.php ├── AbstractPhantomExporterTest.php ├── HtmlExporterTest.php ├── ImageExporterTest.php └── PdfExporterTest.php └── ReportTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /node_modules 3 | /docs 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/README.md -------------------------------------------------------------------------------- /README_PT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/README_PT.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/composer.lock -------------------------------------------------------------------------------- /config/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/config/report.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /examples/report-boleto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/examples/report-boleto.pdf -------------------------------------------------------------------------------- /examples/report1-html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/examples/report1-html.php -------------------------------------------------------------------------------- /examples/report1-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/examples/report1-image.php -------------------------------------------------------------------------------- /examples/report1-pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/examples/report1-pdf.php -------------------------------------------------------------------------------- /examples/report1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/examples/report1.html -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Report/Contracts/ExporterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/src/Report/Contracts/ExporterInterface.php -------------------------------------------------------------------------------- /src/Report/Contracts/ReportInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/src/Report/Contracts/ReportInterface.php -------------------------------------------------------------------------------- /src/Report/Exporters/AbstractExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/src/Report/Exporters/AbstractExporter.php -------------------------------------------------------------------------------- /src/Report/Exporters/AbstractPhantomExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/src/Report/Exporters/AbstractPhantomExporter.php -------------------------------------------------------------------------------- /src/Report/Exporters/HtmlExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/src/Report/Exporters/HtmlExporter.php -------------------------------------------------------------------------------- /src/Report/Exporters/ImageExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/src/Report/Exporters/ImageExporter.php -------------------------------------------------------------------------------- /src/Report/Exporters/PdfExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/src/Report/Exporters/PdfExporter.php -------------------------------------------------------------------------------- /src/Report/Laravel/ReportServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/src/Report/Laravel/ReportServiceProvider.php -------------------------------------------------------------------------------- /src/Report/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/src/Report/Report.php -------------------------------------------------------------------------------- /tests/Report/Exporters/AbstractExporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/tests/Report/Exporters/AbstractExporterTest.php -------------------------------------------------------------------------------- /tests/Report/Exporters/AbstractPhantomExporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/tests/Report/Exporters/AbstractPhantomExporterTest.php -------------------------------------------------------------------------------- /tests/Report/Exporters/HtmlExporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/tests/Report/Exporters/HtmlExporterTest.php -------------------------------------------------------------------------------- /tests/Report/Exporters/ImageExporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/tests/Report/Exporters/ImageExporterTest.php -------------------------------------------------------------------------------- /tests/Report/Exporters/PdfExporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/tests/Report/Exporters/PdfExporterTest.php -------------------------------------------------------------------------------- /tests/Report/ReportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireguard/report/HEAD/tests/Report/ReportTest.php --------------------------------------------------------------------------------