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. [File &amp; Storage](/categories/file-storage)
4. /
5. angusm73/unoconv

ActiveLibrary[File &amp; Storage](/categories/file-storage)

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 2d 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

2534d 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

[aws/aws-sdk-php-laravel

A simple Laravel 9/10/11/12/13 service provider for including the AWS SDK for PHP.

1.7k35.6M75](/packages/aws-aws-sdk-php-laravel)[spatie/laravel-google-cloud-storage

Google Cloud Storage filesystem driver for Laravel

2408.9M13](/packages/spatie-laravel-google-cloud-storage)[dcblogdev/laravel-dropbox

A Laravel Dropbox v2 package

3263.0k](/packages/dcblogdev-laravel-dropbox)[codebar-ag/laravel-flysystem-cloudinary

Cloudinary Flysystem v1 integration with Laravel

1224.9k2](/packages/codebar-ag-laravel-flysystem-cloudinary)[quix-labs/laravel-supabase-flysystem

Supabase Adapter for Laravel Flysystem Storage

169.9k](/packages/quix-labs-laravel-supabase-flysystem)[unisharp/s3-presigned

An AWS S3 package for pre-signed upload purpose in Laravel and PHP.

151.8k](/packages/unisharp-s3-presigned)

PHPackages © 2026

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