PHPackages                             eboost/unoconv - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. eboost/unoconv

AbandonedArchivedLibrary

eboost/unoconv
==============

Convert documents using unoconv.

1.0(9y ago)15966[2 issues](https://github.com/EBOOST/unoconv/issues)ProprietaryPHPPHP &gt;=7.0

Since Nov 1Pushed 8y ago2 watchersCompare

[ Source](https://github.com/EBOOST/unoconv)[ Packagist](https://packagist.org/packages/eboost/unoconv)[ Docs](https://bitbucket.eboost.nl/projects/EP/repos/unoconv)[ RSS](/packages/eboost-unoconv/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

Unoconv Laravel API
===================

[](#unoconv-laravel-api)

A Laravel wrapper for unoconv as a webservice. See [Convert](https://github.com/EBOOST/Convert) for more details.

Installation
------------

[](#installation)

Install this package through [Composer](https://getcomposer.org/).

Add this to your `composer.json` dependencies:

### Using Laravel 5.2+

[](#using-laravel-52)

```
"require": {
   "eboost/unoconv": "dev-master"
}
```

Run `composer install` to download the required files.

Next you need to add the service provider to `config/app.php`

```
'providers' => [
    ...
    Eboost\Unoconv\UnoconvServiceProvider::class
]
```

Set up the [facade](http://laravel.com/docs/facades). Add the reference in `config/app.php` to your aliases array.

```
'aliases'  => [
    ...
    'Unoconv' => Eboost\Unoconv\Facades\Unoconv::class,
]
```

Publish the config

```
php artisan vendor:publish --provider="Eboost\Unoconv\UnoconvServiceProvider" --tag="config"
```

Usage
-----

[](#usage)

### File conversion

[](#file-conversion)

```
# Convert the file to /file.pdf

Unoconv::file('/file.pptx')->to('pdf');
```

```
# Convert the file and save it in a different location /new/location/file.pdf

Unoconv::file('/file.pptx')->to('/new/location/file.pdf');
```

#### Chaining multiple conversions

[](#chaining-multiple-conversions)

```
# Convert the file to /file.pdf and /file.jpg

Unoconv::file('/file.pptx')->to(['pdf', 'jpg]);
```

```
# Convert the file to /file.pdf and /preview/file.jpg

Unoconv::file('/file.pptx')->to(['pdf', '/preview/file.jpg]);
```

### Non-blocking conversion using a queue

[](#non-blocking-conversion-using-a-queue)

To use queues you will need have set-up the default laravel queue listener.

```
Unoconv::file('/file.pptx')->queue('pdf');
```

```
# You can also specify the queue.

Unoconv::file('/file.pptx')->onQueue('image-converter', 'pdf');
```

### Dispatch new job after conversion is done

[](#dispatch-new-job-after-conversion-is-done)

```
Unoconv::file('/file.pptx')->after((new AfterConversionJob()))->to('pdf');
```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3476d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8f79b29e217f262bed05d2846413ea5189def4217a80daed867c3903d03ba4ca?d=identicon)[BertvanHoekelen](/maintainers/BertvanHoekelen)

---

Top Contributors

[![BertvanHoekelen](https://avatars.githubusercontent.com/u/7521173?v=4)](https://github.com/BertvanHoekelen "BertvanHoekelen (1 commits)")

---

Tags

converterunoconvdocumentseboost

### Embed Badge

![Health badge](/badges/eboost-unoconv/health.svg)

```
[![Health](https://phpackages.com/badges/eboost-unoconv/health.svg)](https://phpackages.com/packages/eboost-unoconv)
```

###  Alternatives

[spatie/laravel-export

Create a static site bundle from a Laravel app

646127.9k5](/packages/spatie-laravel-export)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[sbsaga/toon

🧠 TOON for Laravel — a compact, human-readable, and token-efficient data format for AI prompts &amp; LLM contexts. Perfect for ChatGPT, Gemini, Claude, Mistral, and OpenAI integrations (JSON ⇄ TOON).

6115.6k](/packages/sbsaga-toon)[laravel-shift/curl-converter

A command line tool to convert curl requests to Laravel HTTP requests.

935.3k](/packages/laravel-shift-curl-converter)[truckersmp/steam-socialite

Laravel Socialite provider for Steam OpenID.

1516.7k](/packages/truckersmp-steam-socialite)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
