diff --git a/liip/imagine-bundle/1.8/etc/packages/imagine.yaml b/liip/imagine-bundle/1.8/etc/packages/imagine.yaml new file mode 100644 index 000000000..3b28f78b9 --- /dev/null +++ b/liip/imagine-bundle/1.8/etc/packages/imagine.yaml @@ -0,0 +1,36 @@ +#liip_imagine: +# +# # valid drivers options include "gd" or "gmagick" or "imagick" +# driver: "gd" +# +# # define your filter sets under this option +# filter_sets: +# +# # an example thumbnail transformation definition +# # https://symfony.com/doc/current/bundles/LiipImagineBundle/basic-usage.html#create-thumbnails +# squared_thumbnail: +# +# # set your image quality defaults +# jpeg_quality: 85 +# png_compression_level: 8 +# +# # setup the filter steps to apply for this transformation +# filters: +# +# # auto rotate the image using EXIF metadata +# auto_rotate: ~ +# +# # strip the image of all metadata +# strip: ~ +# +# # scale and square the image to the given dimensions +# thumbnail: +# size: [253, 253] +# mode: outbound +# allow_upscale: true +# +# # create border by placing image on larger black background +# background: +# size: [256, 256] +# position: center +# color: '#fff' diff --git a/liip/imagine-bundle/1.8/etc/routing/imagine.yaml b/liip/imagine-bundle/1.8/etc/routing/imagine.yaml new file mode 100644 index 000000000..201cbd5d4 --- /dev/null +++ b/liip/imagine-bundle/1.8/etc/routing/imagine.yaml @@ -0,0 +1,2 @@ +_liip_imagine: + resource: "@LiipImagineBundle/Resources/config/routing.yaml" diff --git a/liip/imagine-bundle/1.8/manifest.json b/liip/imagine-bundle/1.8/manifest.json new file mode 100644 index 000000000..42b3af687 --- /dev/null +++ b/liip/imagine-bundle/1.8/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Liip\\ImagineBundle\\LiipImagineBundle": ["all"] + }, + "copy-from-recipe": { + "etc/": "%ETC_DIR%/" + } +} diff --git a/liip/imagine-bundle/1.8/post-install.txt b/liip/imagine-bundle/1.8/post-install.txt new file mode 100644 index 000000000..2f8404a41 --- /dev/null +++ b/liip/imagine-bundle/1.8/post-install.txt @@ -0,0 +1,6 @@ + Getting started using liip/imagine-bundle + + Configure your transformations: + 1. You MUST verify and uncomment the configuration in %ETC_DIR%/packages/imagine.yaml. + 2. You MAY configure your image transformation library (gmagick, imagick, or gd [default]). + 3. You MAY define custom transformation definitions under the filter_sets option.