evlz/php-exif-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Symfony bundle for miljar/php-exif package

v0.1.1 2015-03-05 21:14 UTC

This package is auto-updated.

Last update: 2019-06-06 07:20:19 UTC


README

Symfony bundle for PHPExif - A PHP Exif reader

Install

Add to composer

$ composer require evlz/php-exif-bundle:~0.1

Add to the kernel

<?php
# app/AppKernel.php

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            # your bundles
            new Evlz\PhpEXIFBundle\EvlzPhpEXIFBundle(),            
        );
    }
}

By default native exif reader is used but you can use ExitTool

add to app config these lines for this feature

Custom

#app/config/config.yml
evlz_php_exif:
    type: native # default value oexiftool

Notice: lib-exiftool is required