标签: php composer-php
Composer是否设计为安装在本地计算机上的或网络服务器上?
答案 0 :(得分:6)
它专为两者而设计。
您可以在开发中使用它(您将经常使用composer update)并且可以在生产中使用它(您将使用composer install安装依赖项。)
composer update
composer install
在开发短语中,您可以定义项目的工作依赖项。在生产中,您确保安装了这些依赖项。