Download the PHP package marceli-to/image-cache without Composer

On this page you can find all versions of the php package marceli-to/image-cache. 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 image-cache

Image Cache

A simple image caching package for Laravel using Intervention Image v3.

Installation

Prerequisites

Basic Installation

You can install the package via composer:

Post-Installation Setup

  1. Publish the configuration file:

This will create a config/image-cache.php file where you can configure:

  1. Configure your filesystem:

Ensure your Laravel filesystem is properly configured for storing cached images. By default, this package uses the public disk. Update your .env file and config/filesystems.php as needed:

Then create the symbolic link to make the storage publicly accessible:

  1. Service Provider Registration:

The package uses Laravel's auto-discovery feature to register the service provider and facade automatically. If you have disabled auto-discovery, add the following to your config/app.php:

  1. Create cache directory:

The package will attempt to create the cache directory automatically, but you may need to ensure proper permissions:

Intervention Image v3 Compatibility

This package is built for Intervention Image v3, which has a significantly different API compared to v2. If you're upgrading from a package that used Intervention Image v2, please note these key differences:

For more details on Intervention Image v3, please refer to the official documentation.

Configuration

Publish the configuration file:

This will create a config/image-cache.php file where you can configure:

Features

Modern PHP Type Declarations

The package uses modern PHP 7.4+ type declarations throughout the codebase for improved code quality and IDE support:

Robust Error Handling

The package includes comprehensive error handling:

Input Validation

All user inputs are thoroughly validated:

Usage

Basic Usage

In a Controller

In Views

The package automatically registers the necessary routes, so you can use it directly in your views:

The URL format for standard templates is:

The URL format for crop with maxSize is:

The URL format for crop with dimensions is:

Where:

Important notes about inputs:

Custom Controller

If you prefer to use your own controller, you can disable the automatic route registration in the config file:

Then create your own route and controller:

Programmatic Usage

You can also use the package programmatically:

Clearing the Cache

You can clear the cache using the provided Artisan command:

Or programmatically:

Custom Templates

You can create your own templates by:

  1. Creating a class that implements Intervention\Image\Interfaces\ModifierInterface
  2. Adding the template to your config file

Example template class:

Then add it to your config:

Error Handling

The package includes comprehensive error handling:

Exception Types

Logging

All errors and warnings are logged using Laravel's Log facade:

HTTP Responses

The package returns appropriate HTTP responses:

Security

The package includes several security features:

License

The MIT License (MIT). Please see License File for more information.


All versions of image-cache with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
intervention/image Version ^3.0
illuminate/support Version ^10.0|^11.0
illuminate/filesystem Version ^10.0|^11.0
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 marceli-to/image-cache contains the following files

Loading the files please wait ....