2017 © Pedro Peláez
 

library laravel-image-optimizer

Images optimization for Google PageSpeed Insights

image

dmknvk/laravel-image-optimizer

Images optimization for Google PageSpeed Insights

  • Friday, December 1, 2017
  • by dmknvk
  • Repository
  • 1 Watchers
  • 8 Stars
  • 469 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 4 Versions
  • 8 % Grown

The README.md

Laravel Image Optimizer

Packagist License Latest Stable Version Total Downloads, (*1)

This is a package for Laravel 5 that optimize images for Google PageSpeed Insights requirements., (*2)

Requirements

This package uses the following tools in your system: - optipng (tested on v0.7.6) - jpegoptim (tested on v1.4.4), (*3)

Installation

Require this package with composer:, (*4)

composer require dmknvk/laravel-image-optimizer

After updating composer, add the ServiceProvider to the providers array in config/app.php, (*5)

DmKnvk\LaravelImageOptimizer\ServiceProvider::class,

Copy the package config to your local config with the publish command:, (*6)

php artisan vendor:publish --provider="DmKnvk\LaravelImageOptimizer\ServiceProvider"

Usage

Set your directories pathes that will be optimized in config/image-optimizer.php, (*7)

'dirs' => [
  public_path('media'),            // all png/jpeg images in folder public/media will be optimized recursively
  public_path('upload') => [
    'types'     => ['images/png'], // array of mime types, that will be optimized (now supported image/png and image/jpeg)
    'recursive' => false,          // search images only in root directory (public/upload)
  ],
],

Run artisan command (or add to cron) with root priveleges (to avoid problems with permissions), (*8)

sudo php artisan image-optimizer:run

All files in your directories will be optimized with max optimization levels (takes some time)., (*9)

The Versions

01/12 2017

dev-master

9999999-dev

Images optimization for Google PageSpeed Insights

  Sources   Download

MIT

The Requires

 

by Dmitry Konovalchuk

laravel images optimization pagespeed insights

01/12 2017

v0.1.2

0.1.2.0

Images optimization for Google PageSpeed Insights

  Sources   Download

MIT

The Requires

 

by Dmitry Konovalchuk

laravel images optimization pagespeed insights

06/03 2017

v0.1.1

0.1.1.0

Images optimization for Google PageSpeed Insights

  Sources   Download

MIT

The Requires

 

by Dmitry Konovalchuk

laravel images optimization pagespeed insights

15/11 2016

v0.1.0

0.1.0.0

Images optimization for Google PageSpeed Insights

  Sources   Download

MIT

The Requires

 

by Dmitry Konovalchuk

laravel images optimization pagespeed insights