Home > Backend Development > PHP Tutorial > Does composer need to manually process files when installing unit?

Does composer need to manually process files when installing unit?

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2023-03-01 19:18:02
Original
1271 people have browsed it

Composer will download a bunch of files when installing unit. Do I need to manually process them after downloading them?

Does composer need to manually process files when installing unit?Does composer need to manually process files when installing unit?

Reply content:

Composer will download a bunch of files when installing unit. Do I need to manually process them after downloading them?

Does composer need to manually process files when installing unit?Does composer need to manually process files when installing unit?

No manual processing is required. If you develop locally and need to use unit testing, just do it directly

<code>composer install
</code>
Copy after login

will install all dependencies and dependencies in the require-dev command. If you do not need these unit test-related packages in an online environment, you can add the --no-dev option so that unit tests will not be downloaded. Relevant dependencies.

<code>composer install --no-dev --prefer-dist --optimize-autoloader </code>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Why thinkphp has better performance than laravel?
From 1970-01-01 08:00:00
0
0
0
ThinkPHP Why use composer?
From 1970-01-01 08:00:00
0
0
0
thinkphp versions supported by php6
From 1970-01-01 08:00:00
0
0
0
thinkphp upload files
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template