HTMLMin / Laravel-HTMLMin

A simple HTML minifier for Laravel 5, 6, 7, 8 & 9.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Package container-interop/container-interop is abandoned, you should avoid using it. Use psr/container instead.

muriloelias opened this issue · comments

Hi everyone, this package requires "mrclay/minify": "^2.2|^3.0" which in turn requires mrclay/props-dic and which finally uses the abandoned and deprecated package container-interop/container-interop

https:/ /github.com/container-interop/container-interop

When I install via composer the following message appears
Package container-interop/container-interop is abandoned, you should avoid using it. Use psr/container instead.

Is it possible to find a solution for this warning?

Thanks.

For now, we've forked the dependency and updated it to remove this warning. In your root composer.json, before the require section, add the following:

    [...]
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/Androidacy/Props",
            "branch": "patch-1"
        }
    ],
    [...]