Setting the "config.fxp-asset.installer-paths" option in the composer

When I run composer update, I get the following warning before it continues with the update.

The "extra.asset-installer-paths" option is deprecated, use the "config.fxp-asset.installer-paths" option

Where / how can I change these settings?

+4
source share
1 answer

Replace the section extra.asset-installer-pathswith:

    "config": {
        "fxp-asset": {
            "installer-paths": {
                "npm-asset-library": "vendor/npm",
                "bower-asset-library": "vendor/bower"
            }
        },
    }

See Define a custom asset installation directory.

+5
source

Source: https://habr.com/ru/post/1680977/


All Articles