nasyrov/laravel-imgix

Laravel package for generating URLs with Imgix.
47,523 14
Install
composer require nasyrov/laravel-imgix
Latest Version:1.1.0
PHP:>=7.2
License:MIT
Last Updated:Jun 21, 2020
Links: GitHub  ·  Packagist
Maintainer: nasyrov

Laravel Imgix

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

Laravel package for generating URLs with Imgix.

Requirements

Make sure all dependencies have been installed before moving on:

Install

First, pull the package via Composer:

$ composer require nasyrov/laravel-imgix

Next, register the service provider in config/app.php:

'providers' => [
    ...
    Nasyrov\Laravel\Imgix\ImgixServiceProvider::class,
    ...
]

Optionally register the facade in config/app.php:

'aliases' => [
    ...
    'Imgix' =>  Nasyrov\Laravel\Imgix\Facades\Imgix::class,
    ...
]

Finally, publish and update the config config/imgix.php:

php artisan vendor:publish --tag=imgix

Usage

Facade

Imgix::createUrl(string $path, array $params = []) : string

$path The path to the image

$params The image parameters

echo Imgix::createUrl('test.jpg', ['w' => 100, 'h' => 100]);

// Prints out:
// http://test.imgix.net/test.jpg?w=100&h=100

Helper

imgix(string $path, array $params = []) : string

$path The path to the image

$params The image parameters

echo imgix('test.jpg', ['w' => 100, 'h' => 100]);

// Prints out:
// http://test.imgix.net/test.jpg?w=100&h=100

Testing

$ composer lint
$ composer test

Security

If you discover any security related issues, please email inasyrov@ya.ru instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Packages

vlsoprun/laravel-imgix

Support for laravel imgix client library for generating URLS with imgix.

352 2
spekkionu/assetcachebuster

Prefixes asset urls with a unique hash which will allow invalidation of asset fi...

43,423 32
tappleby/laravel-asset-manifest

Laravel 4 package for re-mapping assets paths, useful for asset revving using to...

940 4
vinelab/cdn

Content Delivery Network (CDN) Package for Laravel

244,525 217
publiux/laravelcdn

Content Delivery Network (CDN) Package for Laravel

235,697 155