PHP Composer: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{TOCright}} | {{TOCright}} | ||
<code>Composer</code> is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. | <code>Composer</code> is a tool for dependency management in PHP. | ||
It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. | |||
<br>Composer is an application-level package manager for PHP. | |||
It is inspired by NodeJs's NPM and Ruby's Bundler, and is currently the recognized package manager by the community. | |||
<br>The Composer ecosystem consists of two parts: | |||
* the Composer, which is the command-line utility for installing packages, | |||
* the Packagist, the default package repository. | |||
Line 15: | Line 21: | ||
=== Tutorial === | === Tutorial === | ||
* [https://www.startutorial.com/articles/view/modern-php-developer-composer Star Tutorial], Modern PHP Developer Composer. | * [https://www.startutorial.com/articles/view/modern-php-developer-composer Star Tutorial], Modern PHP Developer Composer. <br>Creates the test composer project <code>fzaninotto/faker</code>. | ||
== Reference == | == Reference == |
Revision as of 12:26, 15 May 2020
Composer
is a tool for dependency management in PHP.
It allows you to declare the libraries your project depends on and it will manage (install/update) them for you.
Composer is an application-level package manager for PHP.
It is inspired by NodeJs's NPM and Ruby's Bundler, and is currently the recognized package manager by the community.
The Composer ecosystem consists of two parts:
- the Composer, which is the command-line utility for installing packages,
- the Packagist, the default package repository.
See also
Internal
External
- Get Composer, Home page.
- Composer Documentation, Composer Home page Documentation.
- Composer Packgist, Packagist is the main Composer Repository.
Tutorial
- Star Tutorial, Modern PHP Developer Composer.
Creates the test composer projectfzaninotto/faker
.