Skip to content
This repository was archived by the owner on Aug 21, 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
18 changes: 16 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,14 @@ updates:
prefix: "github-actions (master)"

ignore:
- dependency-name: "mimmi20/ci"
- dependency-name: "mimmi20/ci/.github/workflows/validate.yml"
- dependency-name: "mimmi20/ci/.github/workflows/cleanup-cache.yml"
- dependency-name: "mimmi20/ci/.github/workflows/install.yml"
- dependency-name: "mimmi20/ci/.github/workflows/analytics.yml"
- dependency-name: "mimmi20/ci/.github/workflows/test.yml"
- dependency-name: "mimmi20/ci/.github/workflows/review-dependency.yml"
- dependency-name: "mimmi20/ci/.github/workflows/lint-actions.yml"
- dependency-name: "mimmi20/ci/.github/workflows/sync-labels.yml"
- dependency-name: "release-drafter/release-drafter"

# Disable rebasing for all pull requests
Expand Down Expand Up @@ -143,7 +150,14 @@ updates:
prefix: "github-actions (3.x)"

ignore:
- dependency-name: "mimmi20/ci"
- dependency-name: "mimmi20/ci/.github/workflows/validate.yml"
- dependency-name: "mimmi20/ci/.github/workflows/cleanup-cache.yml"
- dependency-name: "mimmi20/ci/.github/workflows/install.yml"
- dependency-name: "mimmi20/ci/.github/workflows/analytics.yml"
- dependency-name: "mimmi20/ci/.github/workflows/test.yml"
- dependency-name: "mimmi20/ci/.github/workflows/review-dependency.yml"
- dependency-name: "mimmi20/ci/.github/workflows/lint-actions.yml"
- dependency-name: "mimmi20/ci/.github/workflows/sync-labels.yml"
- dependency-name: "release-drafter/release-drafter"

# Disable rebasing for all pull requests
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
skip-eslint: true
skip-stylelint: true
skip-prettier: true
skip-libpng-install: true
phpcs-options: ""

tests:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint-workflow-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
with:
skip-nasm-install: false
skip-libimagequant-install: false
skip-libpng-install: true

# This is a meta job to avoid to have to constantly change the protection rules
# whenever we touch the matrix.
Expand Down
2 changes: 1 addition & 1 deletion .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
*
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion composer-dependency-analyser.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
*
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
*
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
*
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
*
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/View/Helper/ViteUrl.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
*
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down Expand Up @@ -75,7 +75,7 @@
}

if ($this->viteHost) {
return $this->viteHost . '/' . ltrim($name, '/');

Check warning on line 78 in src/View/Helper/ViteUrl.php

View workflow job for this annotation

GitHub Actions / UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest)

Escaped Mutant for Mutator "UnwrapLtrim": @@ @@ throw new RuntimeException('A Public Dir is required'); } if ($this->viteHost) { - return $this->viteHost . '/' . ltrim($name, '/'); + return $this->viteHost . '/' . $name; } $view = $this->getView(); if (!$view instanceof PhpRenderer) {

Check warning on line 78 in src/View/Helper/ViteUrl.php

View workflow job for this annotation

GitHub Actions / UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest)

Escaped Mutant for Mutator "UnwrapLtrim": @@ @@ throw new RuntimeException('A Public Dir is required'); } if ($this->viteHost) { - return $this->viteHost . '/' . ltrim($name, '/'); + return $this->viteHost . '/' . $name; } $view = $this->getView(); if (!$view instanceof PhpRenderer) {
}

$view = $this->getView();
Expand Down
2 changes: 1 addition & 1 deletion src/View/Helper/ViteUrlFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
*
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down Expand Up @@ -61,7 +61,7 @@

$viteHost = $config['vite-host'] ?? null;

if (!is_string($viteHost)) {

Check warning on line 64 in src/View/Helper/ViteUrlFactory.php

View workflow job for this annotation

GitHub Actions / UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest)

Escaped Mutant for Mutator "LogicalNot": @@ @@ $buildDir = null; } $viteHost = $config['vite-host'] ?? null; - if (!is_string($viteHost)) { + if (is_string($viteHost)) { $viteHost = null; } return new ViteUrl($publicDir, $buildDir, $viteHost); } }

Check warning on line 64 in src/View/Helper/ViteUrlFactory.php

View workflow job for this annotation

GitHub Actions / UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest)

Escaped Mutant for Mutator "LogicalNot": @@ @@ $buildDir = null; } $viteHost = $config['vite-host'] ?? null; - if (!is_string($viteHost)) { + if (is_string($viteHost)) { $viteHost = null; } return new ViteUrl($publicDir, $buildDir, $viteHost); } }
$viteHost = null;
}

Expand Down
2 changes: 1 addition & 1 deletion tests/ConfigProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
*
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/ModuleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
*
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/View/Helper/ViteUrlFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
*
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/View/Helper/ViteUrlTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
*
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
Loading