Download the PHP package toolreport/core without Composer

On this page you can find all versions of the php package toolreport/core. 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 core

ToolReport Core

English docs below

PDF Designer for Laravel — template management, visual layout engine, and TCPDF composite PDF rendering.

Requirements

Installation

Publish configuration and run migrations:

Or publish manually:

PDF Designer

The visual designer is a Vue 3 application included in the package. After installing the PHP package, build and configure the frontend:

Setup

Vite Configuration

Add the designer entry point and @ alias to your vite.config.ts:

Install Dependencies

Tailwind v4

Tell Tailwind to scan the designer source files. Add this line to your resources/css/app.css:

Build

Access

Navigate to http://your-app.com/pdf-designer

Customizing the View

Publish the Blade view to customize it:

This publishes resources/views/vendor/pdf-designer/pdf-designer.blade.php to your app.

Configuration

After publishing, edit config/pdf-designer.php:

Usage

Programmatic (Facade)

API Routes

Routes are auto-loaded by the service provider under the configured prefix (default: api/pdf-designer).

Templates

Method Endpoint Description
GET /templates List all templates
POST /templates Create a template
GET /templates/{id} Show a template
PUT /templates/{id} Update a template
DELETE /templates/{id} Delete a template
POST /templates/{id}/duplicate Duplicate a template
POST /templates/{id}/generate Generate a PDF from template

Documents

Method Endpoint Description
GET /templates/{id}/documents List documents for a template
GET /documents/{id} Show a document
GET /documents/{id}/download Download a PDF document

Compositions (Multi-page reports)

Method Endpoint Description
GET /compositions List all compositions
POST /compositions Create a composition
GET /compositions/{id} Show a composition
PUT /compositions/{id} Update a composition
DELETE /compositions/{id} Delete a composition
POST /compositions/{id}/generate Generate a combined PDF

Template Variables

Method Endpoint Description
GET /templates/{id}/template-vars List variables
POST /templates/{id}/template-vars Create a variable
PUT /templates/{id}/template-vars/{varId} Update a variable
DELETE /templates/{id}/template-vars/{varId} Delete a variable

Datasource Testing

Method Endpoint Description
POST /templates/{id}/datasources/test Test a datasource connection

Health Check

Method Endpoint Description
GET /health API health check

Expression Functions

ToolReport includes 30+ built-in functions for dynamic content: math, text, date, logic, and formatting. Use them inside labels with {{ }} syntax.

📖 Referencia completa (Español)

PDF Engine

ToolReport Core uses the PDF Engine (TCPDF composite) — component-based PDF rendering via tecnickcom/tc-lib-pdf. The visual designer uses a band-based layout with a composite node tree for precise positioning.

Testing

License

MIT


All versions of core with dependencies

PHP Build Version
Package Version
Requires php Version ^8.3
barryvdh/laravel-dompdf Version ^3.0
tecnickcom/tc-lib-pdf Version ^8
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 toolreport/core contains the following files

Loading the files please wait ...