goldenline / imgix-bundle
Integration of the imgix library into Symfony
Installs: 26 106
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 5
Forks: 3
Open Issues: 2
Type:symfony-bundle
Requires
- imgix/imgix-php: ~1.0
- symfony/framework-bundle: ~2.3
This package is not auto-updated.
Last update: 2024-11-05 04:35:31 UTC
README
Integration of the imgix library into Symfony.
Installation
The best way to install this bundle is by using Composer. Simply run:
$ php composer.phar require goldenline/imgix-bundle dev-master
Then, enable the bundle:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new GoldenLine\ImgixBundle\GoldenlineImgixBundle(), ); }
Finally add your sources:
goldenline_imgix: default_source: folder sources: folder: domains: [ acme.imgix.net ] proxy: domains: [ acme-proxy.imgix.net ] sign_key: abcd1234
Usage
In your Twig template just do:
<!-- Absolute URL with a web proxy source --> <img src="{{ imgix('https://assets-cdn.github.com/images/modules/logos_page/Octocat.png', source='proxy', width=200, height=166) }}" width="200" height="166"/> <!-- Absolute path with a web folder source --> <img src="{{ imgix('images/modules/logos_page/Octocat.png', width=200, height=166) }}" width="200" height="166"/>
License
This bundle is released under the MIT license. See the complete license in the bundle:
Resources/meta/LICENSE