Error on Artisan commands when updating Composer dependencies

后端 未结 5 1756
离开以前
离开以前 2021-02-13 17:09

I am developing a library for Laravel which contains a service provider. I have added this library to another project\'s composer.json file.

The compo

5条回答
  •  深忆病人
    2021-02-13 17:50

    When using composer install or composer update you can use --no-scripts option to skips execution of scripts defined in composer.json.

    e. g.: composer update --no-scripts.

    Source: https://getcomposer.org/doc/03-cli.md#install

提交回复
热议问题