1
0
Fork 0
mirror of https://github.com/archtechx/laravel-seo.git synced 2026-05-06 17:54:03 +00:00

Intervention Image v3 support (#45)

* fix: type error to assign the drie for image manager class

* fix: update package names and handle Intervention Image versioning in favicon generation

* fix: update intervention/image version constraint in composer.json

* cleanup, run CI tests with both intervention v2 and v3

* ci: composer require --dev

* phpstan fixes

---------

Co-authored-by: Samuel Štancl <samuel@archte.ch>
This commit is contained in:
Al Amin Ahamed 2026-03-31 07:48:26 +06:00 committed by GitHub
parent f79d417145
commit 713ecea0d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 38 additions and 17 deletions

View file

@ -7,11 +7,12 @@ on:
jobs:
pest:
name: Tests (Pest) L${{ matrix.laravel }}
name: Tests (Pest) L${{ matrix.laravel }} I${{ matrix.intervention }}
runs-on: ubuntu-latest
strategy:
matrix:
laravel: [10, 11, 12, 13]
intervention: [2, 3]
steps:
- uses: actions/checkout@v2
@ -20,7 +21,9 @@ jobs:
with:
php-version: 8.3
- name: Install composer dependencies
run: composer require "laravel/framework:^${{matrix.laravel}}.0"
run: |
composer require --dev "laravel/framework:^${{matrix.laravel}}.0"
composer require --dev "intervention/image:^${{matrix.intervention}}.0"
- name: Run tests
run: vendor/bin/pest