jmd/unoconv-bundle

This bundle allows you to convert files through unoconv (LibreOffice)

Installs: 5 327

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

Open Issues: 0

Type:symfony-bundle

v1.0.2 2016-05-17 10:37 UTC

This package is auto-updated.

Last update: 2024-03-29 03:31:41 UTC


README

This bundle provide gateway near php-unoconv/php-unoconv and symfony 2.

Installation

composer require jmd/unoconv-bundle
// app/AppKernel.php
$bundles = array(
            ...
            new JMD\UnoconvBundle\JMDUnoconvBundle(),
            ...
        );

Configuration

jmd_unoconv:
    config:
        timeout: 42
        binaries: /usr/bin/unoconv

Usage

$unoconv = $this->get('jmd_unoconv');
$unoconv->convert($inputFile, $format);
$unoconv->convert($inputFile, $format, $outputFile);

Console command:

php app/console jmd:unoconv:convert format /path/to/some/input_File -o /path/to/output/file