PHPackages                             r0bdiablo/laravel5-phumbor - 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. [Image &amp; Media](/categories/media)
4. /
5. r0bdiablo/laravel5-phumbor

Abandoned → [r0bdiabl0/php-thumbor](/?search=r0bdiabl0%2Fphp-thumbor)Library[Image &amp; Media](/categories/media)

r0bdiablo/laravel5-phumbor
==========================

Laravel 5+ package adding support for the Phumbor PHP library for Thumbor.

1.0.6(1y ago)750.4k↓28%6MITPHPPHP &gt;=5.5.0

Since Sep 21Pushed 4mo ago3 watchersCompare

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

READMEChangelog (2)Dependencies (3)Versions (10)Used By (0)

DEPRECATED - Use r0bdiabl0/php-thumbor instead
==============================================

[](#deprecated---use-r0bdiabl0php-thumbor-instead)

> **This package has been replaced by [`r0bdiabl0/php-thumbor`](https://github.com/r0bdiabl0/php-thumbor).**
>
> The new package offers:
>
> - Zero dependencies (no longer requires 99designs/phumbor)
> - Works standalone OR with Laravel (Laravel is optional)
> - Modern PHP 8.2+ with strict types
> - Full Thumbor 7.7.7 support (AVIF, WebP, HEIC formats)
> - Laravel 10, 11, 12, and 13 support

Migration
---------

[](#migration)

```
# Remove old package
composer remove r0bdiablo/laravel5-phumbor

# Install new package
composer require r0bdiabl0/php-thumbor
```

### Update your code:

[](#update-your-code)

```
// Old
use R0bdiabl0\Laravel5Phumbor\Facades\Phumbor;

// New
use R0bdiabl0\Thumbor\Laravel\Facades\Thumbor;
```

### Update config:

[](#update-config)

- Old config file: `config/laravel5-phumbor.php`
- New config file: `config/thumbor.php`

Run `php artisan vendor:publish --tag=thumbor-config` after installing.

### Update .env:

[](#update-env)

```
THUMBOR_SERVER=https://your-thumbor-server.com
THUMBOR_KEY=your-secret-key
```

The API methods (`url()`, `fitIn()`, `addFilter()`, etc.) remain the same.

---

Original README (Legacy)
========================

[](#original-readme-legacy)

This Laravel package adds support for [the 99designs PHP interface](https://github.com/99designs/phumbor) to the [globocom Thumbor thumbnail service](https://github.com/globocom/thumbor).

It is compatible with Laravel 5+.

Requires PHP 7.1+.

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

[](#installation)

Simply run this command in your project root:

```
composer require r0bdiablo/laravel5-phumbor

```

or require the package in your `composer.json` file:

```
"r0bdiablo/laravel5-phumbor": "^1.0"

```

Run `composer install` to download the package and have the autoloader updated.

Once installed, register the service provider with your Laravel application. Update the `providers` section of `config/app.php`:

```
'providers' = array(
	// existing providers
	R0bdiabl0\Laravel5Phumbor\Laravel5PhumborServiceProvider::class,
);

```

and register the facade in the `aliases` section:

```
'aliases' => array(
	// existing aliases
	'Phumbor'   => R0bdiabl0\Laravel5Phumbor\Facades\Phumbor::class,
);

```

Now, publish the package's config file:

```
php artisan vendor:publish

```

which will publish the default configuration file to `config/laravel5-phumbor.php`.

You should modify this file to reflect your Thumbor installation's URL and secret key.

Usage
-----

[](#usage)

The `Phumbor` facade exposes the API from [the 99designs PHP interface](https://github.com/99designs/phumbor).

For example:

```
Phumbor::url('http://images.example.com/llamas.jpg')
    ->fitIn(640, 480)
	->addFilter('fill', 'green');

```

License
-------

[](#license)

Licensed under the MIT license. See

###  Health Score

47

—

FairBetter than 94% of packages

Maintenance58

Moderate activity, may be stable

Popularity36

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 75.8% 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 ~574 days

Recently: every ~428 days

Total

8

Last Release

601d ago

Major Versions

0.1.0 → 1.0.02019-09-13

PHP version history (2 changes)0.1.0PHP &gt;=5.3.0

1.0.5PHP &gt;=5.5.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/432557?v=4)[Robert](/maintainers/r0bdiabl0)[@r0bdiabl0](https://github.com/r0bdiabl0)

---

Top Contributors

[![r0bdiabl0](https://avatars.githubusercontent.com/u/432557?v=4)](https://github.com/r0bdiabl0 "r0bdiabl0 (25 commits)")[![ceejayoz](https://avatars.githubusercontent.com/u/2825?v=4)](https://github.com/ceejayoz "ceejayoz (7 commits)")[![berteltorp](https://avatars.githubusercontent.com/u/2384153?v=4)](https://github.com/berteltorp "berteltorp (1 commits)")

---

Tags

laravelthumborphumbor

### Embed Badge

![Health badge](/badges/r0bdiablo-laravel5-phumbor/health.svg)

```
[![Health](https://phpackages.com/badges/r0bdiablo-laravel5-phumbor/health.svg)](https://phpackages.com/packages/r0bdiablo-laravel5-phumbor)
```

###  Alternatives

[creativeorange/gravatar

A Laravel Gravatar package for retrieving gravatar image URLs or checking the existance of an image.

5467.5M54](/packages/creativeorange-gravatar)[intervention/image-laravel

Laravel Integration of Intervention Image

1536.5M102](/packages/intervention-image-laravel)[bkwld/croppa

Image thumbnail creation through specially formatted URLs for Laravel

510496.0k23](/packages/bkwld-croppa)[ralphjsmit/laravel-glide

Auto-magically generate responsive images from static image files.

4719.6k5](/packages/ralphjsmit-laravel-glide)[spatie/laravel-og-image

Generate OG images for your Laravel app

305.2k](/packages/spatie-laravel-og-image)[nikkanetiya/laravel-color-palette

Laravel Wrapper for `ksubileau/color-thief-php`. Grabs the dominant color or a representative color palette from an image. Uses PHP and GD or Imagick.

3312.6k](/packages/nikkanetiya-laravel-color-palette)

PHPackages © 2026

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