digifactory/laravel-svg-fixer-middleware

Fixes your uploaded SVG files before validating through the Laravel validator
35,273 5
Install
composer require digifactory/laravel-svg-fixer-middleware
Latest Version:v5.0.1
PHP:^8.3
License:MIT
Last Updated:Apr 19, 2026
Links: GitHub  ·  Packagist
Maintainer: digifactory

Fix 'invalid' SVG files

Latest Version on Packagist MIT Licensed run-tests Quality Score StyleCI Total Downloads

The Laravel image validator doesn't validate an SVG if the file is missing the XML declaration on top. This middleware automatically fixes these incorrect SVG files by adding the XML declaration before it is validated.

Installation

You can install the package via composer:

composer require digifactory/laravel-svg-fixer-middleware

Usage

Simply register the SvgFixerMiddleware class in your middleware stack.

// app/Http/Kernel.php

class Kernel extends HttpKernel
{
    protected $middleware = [
        // ...
        \DigiFactory\SvgFixer\SvgFixerMiddleware::class,
    ];
    
    // ...
}

The middleware only runs for POST requests containing SVG files.

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email helpdesk@digifactory.nl instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Packages

benconstable/laravel-localize-middleware

Configurable localization middleware for your Laravel >=5.1 application

31,402 90
barryvdh/laravel-stack-middleware

Stack Middleware for Laravel 5

427,479 41
stevenmaguire/laravel-middleware-csp

Provides support for enforcing Content Security Policy with headers in Laravel r...

107,756 39
spatie/laravel-authorize

A middleware to check authorization

26,796 200