PHPackages                             angusm73/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. angusm73/unoconv

ActiveLibrary

angusm73/unoconv
================

Convert documents using unoconv inside a Laravel application.

v1.4(6y ago)0201MITPHPPHP &gt;=7.0

Since Nov 1Pushed 6y agoCompare

[ Source](https://github.com/angusm73/unoconv)[ Packagist](https://packagist.org/packages/angusm73/unoconv)[ Docs](https://github.com/angusm73/unoconv)[ RSS](/packages/angusm73-unoconv/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (6)Used By (0)

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

[](#unoconv-laravel-api)

A Laravel wrapper for unoconv.

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": {
   "angusm73/unoconv": "dev-master"
}
```

Run `composer install` to download the required files.

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

```
'providers' => [
    ...
    Angusm73\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' => Angusm73\Unoconv\Facades\Unoconv::class,
]
```

Publish the config

```
php artisan vendor:publish --provider="Angusm73\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

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 88.9% 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

Every ~237 days

Total

5

Last Release

2529d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/870b0cc126d7dc623c1d4e6045de8ce942236f5dcdebd425bddddaac62b53f90?d=identicon)[angusm73](/maintainers/angusm73)

---

Top Contributors

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

---

Tags

laravelconverterunoconvdocuments

### Embed Badge

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

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

###  Alternatives

[spatie/laravel-health

Monitor the health of a Laravel application

85810.0M82](/packages/spatie-laravel-health)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[tzsk/sms

A robust and unified SMS gateway integration package for Laravel, supporting multiple providers.

320244.3k6](/packages/tzsk-sms)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[laravel-shift/curl-converter

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

935.3k](/packages/laravel-shift-curl-converter)

PHPackages © 2026

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