jbouzekri/phumbor-bundle

A Symfony Bundle to use the minimal Thumbor PHP client from webfactory/phumbor

Installs: 527 458

Dependents: 1

Suggesters: 1

Security: 0

Stars: 25

Watchers: 1

Forks: 9

Open Issues: 2

Type:symfony-bundle

3.1.0 2022-12-29 09:08 UTC

This package is auto-updated.

Last update: 2024-02-25 14:06:10 UTC


README

Tests

A Symfony Bundle to generate Thumbor image URLs, using the PHP client from webfactory.

Prerequisites

Of course, you must have a Thumbor server installed and operationnal. If not, you can follow the official installation documentation.

Installation

Add jbouzekri/phumbor-bundle as a dependency in composer.json.

"jbouzekri/phumbor-bundle": "^3.0"

Enable the bundle in your AppKernel :

$bundles = array(
    ...
    new Jb\Bundle\PhumborBundle\JbPhumborBundle()
);

In your config.yml, configure at least the url of your Thumbor server and the secret :

jb_phumbor:
    server:
        url: http://localhost
        secret: 123456789

Alternatively, you can also set the environment variables THUMBOR_URL and THUMBOR_SECURITY_KEY for these two settings, for example from your .env file or from inside your webserver configuration.

Quick use case

You need to resize the image of your article to fit in a square of 50x50. Define the following transformation in your config.yml :

jb_phumbor:
    transformations:
        article_list:
            fit_in: { width: 50, height: 50 }

Now you can use it in twig :

{{ thumbor(<the absolute url of your image>, 'article_list') }}

Documentation

License

MIT - see LICENSE