mirror of
https://github.com/archtechx/laravel-seo.git
synced 2026-05-06 09:44: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:
parent
f79d417145
commit
713ecea0d5
4 changed files with 38 additions and 17 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue