softlancerin/image-cache
Composer 安装命令:
composer require softlancerin/image-cache
包简介
Caching extension for the Intervention Image Class
README 文档
README
⚙️ A modern maintained fork of the original Intervention Image Cache package. 🚧 The original package has been abandoned, so this version focuses on maintaining stability and compatibility with modern PHP and Laravel versions.
⚠️ Important Notes
⚠️ CAUTION: This package is currently unstable, as it still depends on the original
intervention/imagepackage for certain configurations (like the config path).
📦 Overview
Intervention Image Cache extends the core Intervention Image functionality by adding powerful caching capabilities for optimized image handling.
It integrates seamlessly with Illuminate/Cache — making it easy to use with the Laravel Framework. Depending on your cache configuration, it supports:
- 🗂️ Filesystem
- 🧠 Database
- ⚡ Memcached
- 🔥 Redis
💡 How it works: Each image manipulation is tracked and cached. If the same sequence of operations is requested again, the cached result is returned instead of processing the image again — saving time and resources.
🚀 Installation
Install the package via Composer:
composer require softlancerin/image-cache:dev-master
Once installed, make sure to include Composer’s autoload file if not already:
require 'vendor/autoload.php';
⚡ Laravel Integration
To use Intervention Image Cache with Laravel, register the Service Provider and Facade in your config/app.php file.
Add to the providers array:
'providers' => [ // ... Intervention\Image\ImageServiceProvider::class, ],
That’s it! 🎉
You can now use the Image facade for caching operations within your Laravel application.
🧩 Usage Example
Use the static method Image::cache() to perform image operations with automatic caching.
Basic Example
use Intervention\Image\Facades\Image; $img = Image::cache(function($image) { return $image->make('public/foo.jpg')->resize(300, 200)->greyscale(); });
With Cache Lifetime
You can define the cache lifetime (in minutes) and optionally return an Image object instead of a stream.
$img = Image::cache(function($image) { return $image->make('public/foo.jpg')->resize(300, 200)->greyscale(); }, 10, true);
🌐 Server Configuration (Nginx Example)
If you’re using Nginx and have static resource caching enabled, make sure to exclude your cache directory (defined in your config, e.g., /cache) from static caching:
# Exclude "cache" directory from static caching location ~* ^\/(?!cache).*\.(?:jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|mp4|ogg|ogv|webm|htc|webp|woff|woff2)$ { expires max; access_log off; add_header Cache-Control "public"; }
🛠️ Handled & Supported By
🧩 This modern fork is handled and actively supported by Softlancerin — empowering open-source PHP & Laravel development with modern solutions and community-driven updates.
📜 License
This project is licensed under the MIT License. Use it freely for both commercial and personal projects.
💡 Maintained By
Softlancerin Innovations — modernizing PHP packages for the developer community. ⭐ Feel free to star this repo if you find it helpful!
softlancerin/image-cache 适用场景与选型建议
softlancerin/image-cache 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 11 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「image」 「cache」 「gd」 「imagick」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 softlancerin/image-cache 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 softlancerin/image-cache 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 softlancerin/image-cache 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
repository php library
Yii2 LightBox image galary widget uses Lightbox v2.10.0 by Lokesh Dhakar
Stand-alone zoomify tile generator (format Zoomify) for use with OpenSeadragon, OpenLayers and various viewers.
The Yii2 extension uses jQuery jquery.carousel-1.1.min.js and makes image carousel from php array of structure defined.
Laravel 5 - Repositories to the database layer
Image manipulation library for Laravel 8 based on Imagine and inspired by Croppa for easy url based manipulation
统计信息
- 总下载量: 3
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-11-08