Download the PHP package quazardous/imagestack-bundle without Composer

On this page you can find all versions of the php package quazardous/imagestack-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package imagestack-bundle

ImageStack Bundle

A PHP image serving framework.

The main goal is to provide a robust framework to create an "on the fly" image thumbnailer generator similar to imagecache / image style in Drupal.

You can also use it to build a singlepoint multipurpose proxy server on top of a "complex" / legacy(ish) / not-yet-migrated images structure.

Here is a Symfony 4 bundle for ImageStack.

Installation

composer require quazardous/imagestack-bundle

Config

see Resources/doc/index.rst

Usage

The above config will let you have a ./images/ private folder hold original images and serves them from images/....

It defines some thumbnail rules and activates images optimizers.

Say you need to display ./images/foo/cool_image.jpg with thumbnail style.

Just hit images/style/thumb/foo/cool_image.jpg and voilà !

Behind the curtain, Imagestack we generate and optimize images/style/thumb/foo/cool_image.jpg, store it in ./public/images/style/thumb/foo/cool_image.jpg and serve it to your browser.

So next HTTP call will be statically serverd.

Advanced usage

With Imagestack you can stack components like bricks.

Say you need to serve images from your new CMS but also images from old stuff you have imported "as it" with heteroclite image sources...

You can build a stack with a sequential image backend wich will try to fetch given path from different backends including "legacy" HTTP Proxy backends.

You can of course internally rewrite the path with "kitchen rules" to fetch the legacy images.

Twig

Imagestack has a Twig filter and function imagestack.

Changelog


All versions of imagestack-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1.0
symfony/framework-bundle Version ^4.0
sensio/framework-extra-bundle Version ^5.2
quazardous/imagestack Version ^1.5.3
doctrine/doctrine-cache-bundle Version ^1.3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package quazardous/imagestack-bundle contains the following files

Loading the files please wait ....