Download the PHP package progicharles/doc-template without Composer

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

Document Designer is a Laravel package allowing to generate documents from a template and filling it with some user data. The current version of PHPWord supports Microsoft Office Open XML (OOXML or OpenXML)

Document Designer is based on PHPWord. LibreOffce need to be installed on the server for PDF export.

Features

Installation

Package

LibreOffice

You can refer to the oficial documentation from LibreOffice for the installation on your server OS.

Getting Started

You just need to specify a template file, a out file name and the dataset to be used to parse and populate the template:

The $data should be an associative array containing all the variables and the corresponding data to be replaced.

Depending the extension (.docx or .pdf) given in the $outFile, the export format will be DOCX or PDF.

Variables

And in the template document, you need to declare the variables with the syntax : ${variableName}

Tables

Table keys in the associative array needs a t: prefix.

In the template document, you need to declare the variables with the syntax : ${variableName}

The first row of the all template document containing a variable with the the same name as the table key will be repeated and the content of the other variables will be replaced.

Images

Image keys in the associative array needs a i: prefix.

And in the template document, you need to declare the variables with the syntax : ${imgVariable:[width]:[height]:[ratio]}

Blocks

Block keys in the associative array needs a b: prefix and with capital letters.

In the template document, you need to declare the blocks start and end with flags :

${BLOCK_NAME}

Block content...

${/BLOCK_NAME}

The blocks behave recursively, witch means they can contain variables, tables and others block.

If a block contain a variable with a name in conflict with another variable in a parent block, the deeper block variables will be replaced in priority.

Exemple:

Php
Template.docx

This is a simple test template content with two variables ${var1} and ${var2}

With an image:

${img1:300:200}

With a table:

Table variable 1 Table variable 2
${tVar1} ${tVar2}

And a block:

${BLOCK}

This is a block content with two variables ${var1} and ${var2}

${/BLOCK}


All versions of doc-template with dependencies

PHP Build Version
Package Version
Requires php Version ~7.0
laravel/framework Version >=5.6
phpoffice/phpword Version ^0.16.0
phpoffice/phpspreadsheet Version ^1.9
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 progicharles/doc-template contains the following files

Loading the files please wait ....