Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
734 B

# Composer
Composer is a fundamental tool in modern PHP development. It simplifies the management of project dependencies, allowing you to declare what you need and automatically installing those resources in your project. For example, if your PHP project requires a certain library, Composer will fetch the appropriate version and make sure it's available for your project. Here's an example of how to add a dependency using Composer:
```shell
composer require vendor/package
```
This command adds the `vendor/package` dependency to your project. The same goes for removing dependencies, updating them, and more.
Visit the following resources to learn more:
- [@official@Composer Official Website](https://getcomposer.org/doc/)