Skip to content
This repository was archived by the owner on Jul 17, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ 8.0, 8.1, 8.2, 8.3 ]
php: [ 8.2, 8.3, 8.4, 8.5 ]
stability: [ prefer-lowest, prefer-stable ]

name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
run: composer install --prefer-dist --no-progress

# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
# Docs: https://getcomposer.org/doc/articles/scripts.md
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.0] - 2026-05-27

- Add support for October CMS 4.1 and 4.2
- Bump `league/glide` to `^3.0` (Glide v3, intervention/image v3)
- Bump `league/glide-symfony` to `^2.1` (first stable release allowing Glide v3)
- Minimum required PHP version is now 8.2 (Glide v3 requirement)

## [4.0.0] - 2025-08-20

- Add support for October CMS 4.x
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ Glide leverages powerful libraries like Intervention Image (for image handling a

## Requirements

* PHP 8.0.2 or higher
* PHP 8.2 or higher
* PHP extensions:
* ext-exif
* October CMS 3.x or higher
* October CMS 3.x, 4.x, 4.1.x or 4.2.x

## Installation

Expand All @@ -36,7 +36,7 @@ GLIDE_SIGN_KEY="[YOUR SIGN KEY HERE]"

> We recommend using a 128 character (or larger) signing key to prevent trivial key attacks. Consider using a package like [CryptoKey](https://github.com/AndrewCarterUK/CryptoKey) to generate a secure key.

For more details about the security and why a sign key is used, check [glide.thephpleague.com](https://glide.thephpleague.com/2.0/config/security/).
For more details about the security and why a sign key is used, check [glide.thephpleague.com](https://glide.thephpleague.com/3.0/config/security/).

Add an url to your disk in the `config/filesystem.php` to display the images properly, for example:

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
}
],
"require": {
"php": "^8.0.2",
"php": "^8.2",
"ext-exif": "*",
"composer/installers": "^1.0 || ^2.0",
"league/glide": "^2.0",
"league/glide-symfony": "^2.0",
"october/rain": "^3.0 || ^4.0"
"league/glide": "^3.0",
"league/glide-symfony": "^2.1",
"october/rain": "^3.0 || ^4.0 || ^4.1 || ^4.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42"
Expand Down
1 change: 1 addition & 0 deletions updates/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ v3.0.1: Add missing CHANGELOG file
v3.1.0: Maintenance release
v3.2.0: Add support for October CMS 3.0
v4.0.0: See CHANGELOG.md for details
v5.0.0: See CHANGELOG.md for details
Loading