Composer (software): Difference between revisions
→Supported frameworks: Zend Framework is Laminas Tags: Mobile edit Mobile web edit Advanced mobile edit |
Supported frameworks - spelling Silverstripe changed |
||
(19 intermediate revisions by 17 users not shown) | |||
Line 9: | Line 9: | ||
| developer = Nils Adermann,<br />Jordi Boggiano |
| developer = Nils Adermann,<br />Jordi Boggiano |
||
| released = {{release date and age|2012|03|01}}<ref name='ird' /> |
| released = {{release date and age|2012|03|01}}<ref name='ird' /> |
||
| latest release version = |
| latest release version = {{wikidata|property|preferred|references|edit|P348|P548=Q2804309}} |
||
| latest release date = {{ |
| latest release date = {{Start date and age|{{wikidata|qualifier|preferred|single|P348|P548=Q2804309|P577}}|df=yes}} |
||
| latest preview version = |
| latest preview version = |
||
| latest preview date = |
| latest preview date = |
||
Line 19: | Line 19: | ||
| genre = [[Package manager]] |
| genre = [[Package manager]] |
||
| license = [[MIT License]] |
| license = [[MIT License]] |
||
| website = {{URL| |
| website = {{URL|https://getcomposer.org/}} |
||
}} |
}} |
||
'''Composer''' is an [[application-level package manager]] for the [[PHP]] [[programming language]] that provides a standard format for managing dependencies of PHP software and required [[Library (computing)|libraries]]. It was developed by Nils Adermann and Jordi Boggiano, who continue to manage the project. They began development in April 2011 and first released it on March 1, 2012.<ref name='ird'>[https://github.com/composer/composer/releases/tag/1.0.0-alpha1 Software release], github.com, Retrieved April 24, 2016.</ref> Composer is strongly inspired by [[Node.js|Node.js's]] "[[ |
'''Composer''' is an [[application-level package manager|application-level dependency manager]] for the [[PHP]] [[programming language]] that provides a standard format for managing dependencies of PHP software and required [[Library (computing)|libraries]]. It was developed by Nils Adermann and Jordi Boggiano, who continue to manage the project. They began development in April 2011 and first released it on March 1, 2012.<ref name='ird'>[https://github.com/composer/composer/releases/tag/1.0.0-alpha1 Software release], github.com, Retrieved April 24, 2016.</ref> Composer is strongly inspired by [[Node.js|Node.js's]] "[[npm]]" and [[Ruby (programming language)|Ruby's]] "[[Bundler (software)|bundler]]".<ref>[https://getcomposer.org/doc/00-intro.md#dependency-management Getting Started/Dependency management], getcomposer.org, Retrieved November 28, 2013.</ref> The project's dependency solving algorithm started out as a PHP-based port of openSUSE's [[ZYpp|libzypp]] [[SAT solver]].<ref>{{Cite web|url=https://github.com/composer/composer|title=composer/composer|date=Jun 23, 2020|accessdate=Jun 24, 2020|via=GitHub}}</ref> |
||
Composer runs from the [[command line]] and installs dependencies (e.g. libraries) for an application. It also allows users to install PHP applications that are available on "Packagist"<ref>See [https://packagist.org/ packagist.org]</ref> which is its main repository containing available packages. It also provides [[autoload]] capabilities for libraries that specify autoload information to ease usage of third-party code. |
Composer runs from the [[command line]] and installs dependencies (e.g. libraries) for an application. It also allows users to install PHP applications that are available on "Packagist"<ref>See [https://packagist.org/ packagist.org]</ref> which is its main repository containing available packages. It also provides [[autoload]] capabilities for libraries that specify autoload information to ease usage of third-party code. |
||
Line 29: | Line 29: | ||
=== Commands === |
=== Commands === |
||
Composer offers several parameters including :<ref>{{cite web|url=https://getcomposer.org/doc/03-cli.md|title=Command-line interface / Commands |website=getcomposer.org}}</ref> |
Composer offers several parameters including :<ref>{{cite web|url=https://getcomposer.org/doc/03-cli.md|title=Command-line interface / Commands |website=getcomposer.org}}</ref> |
||
* <code>require</code>: add the library in parameter to the file |
* <code>require</code>: add the library in parameter to the file composer.json, and install it. |
||
* <code>install</code>: install all libraries from composer.json. It's the command to use to download all PHP repository dependencies. |
* <code>install</code>: install all libraries from composer.json. It's the command to use to download all PHP repository dependencies. |
||
* <code>update</code>: update all libraries from composer.json, according to the allowed versions mentioned into it. |
* <code>update</code>: update all libraries from composer.json, according to the allowed versions mentioned into it. |
||
Line 54: | Line 54: | ||
| >= || allows to extend the number. Moreover, we can use: >, <, <=. || <code>"php": ">=5.5.9"</code> includes PHP 7. |
| >= || allows to extend the number. Moreover, we can use: >, <, <=. || <code>"php": ">=5.5.9"</code> includes PHP 7. |
||
|- |
|- |
||
| |
|!= || excludes a version. || |
||
|- |
|- |
||
| - || defines a range of versions. || |
| - || defines a range of versions. || |
||
|- |
|||
| ¦¦ || add possibles versions. || <code>"symfony/symfony": "2.8 ¦¦ 3.0"</code> regroups only these two versions. |
|||
|- |
|- |
||
| * || extends to all subversions. || <code>"symfony/symfony": "3.1.*"</code> includes the 3.1.1. |
| * || extends to all subversions. || <code>"symfony/symfony": "3.1.*"</code> includes the 3.1.1. |
||
Line 76: | Line 74: | ||
* [[Drupal]] version 8 and later |
* [[Drupal]] version 8 and later |
||
* [[TYPO3]] version 6.2 and later |
* [[TYPO3]] version 6.2 and later |
||
* [[ |
* [[Neos Flow]] version 2.0 and later |
||
* [[Silverstripe]] version 3.0 later |
|||
* [[Magento]] version 2.0 later |
* [[Magento]] version 2.0 later |
||
* [[OpenMage]] version 20.0.0 and later |
|||
* [[Yii]] version 1.1 and later |
* [[Yii]] version 1.1 and later |
||
* [[Laminas]] |
* [[Laminas]] |
||
* |
* Silex (web framework) |
||
* [[Lumen (web framework)]] |
* [[Lumen (web framework)]] |
||
*Adianti Framework version 1 and later |
|||
== See also == |
== See also == |
||
Line 105: | Line 106: | ||
[[Category:Free package management systems]] |
[[Category:Free package management systems]] |
||
[[Category:Free software programmed in PHP]] |
[[Category:Free software programmed in PHP]] |
||
[[Category: |
[[Category:Software using the MIT license]] |
Latest revision as of 15:54, 18 December 2024
Developer(s) | Nils Adermann, Jordi Boggiano |
---|---|
Initial release | March 1, 2012[1] |
Stable release | 2.8.4[2]
/ 11 December 2024 |
Repository | |
Written in | PHP |
Operating system | Cross-platform |
Type | Package manager |
License | MIT License |
Website | getcomposer |
Composer is an application-level dependency manager for the PHP programming language that provides a standard format for managing dependencies of PHP software and required libraries. It was developed by Nils Adermann and Jordi Boggiano, who continue to manage the project. They began development in April 2011 and first released it on March 1, 2012.[1] Composer is strongly inspired by Node.js's "npm" and Ruby's "bundler".[3] The project's dependency solving algorithm started out as a PHP-based port of openSUSE's libzypp SAT solver.[4]
Composer runs from the command line and installs dependencies (e.g. libraries) for an application. It also allows users to install PHP applications that are available on "Packagist"[5] which is its main repository containing available packages. It also provides autoload capabilities for libraries that specify autoload information to ease usage of third-party code.
Syntax
[edit]Commands
[edit]Composer offers several parameters including :[6]
require
: add the library in parameter to the file composer.json, and install it.install
: install all libraries from composer.json. It's the command to use to download all PHP repository dependencies.update
: update all libraries from composer.json, according to the allowed versions mentioned into it.remove
: uninstall a library and remove it from composer.json.
Libraries definition
[edit]Example of composer.json generated by the following command:
composer require monolog/monolog
{
"require": {
"monolog/monolog": "1.2.*"
}
}
Versions
[edit]The different authorized versions of the libraries are defined by:[7]
Symbol | Role (placed before a version number) | Example |
---|---|---|
>= | allows to extend the number. Moreover, we can use: >, <, <=. | "php": ">=5.5.9" includes PHP 7.
|
!= | excludes a version. | |
- | defines a range of versions. | |
* | extends to all subversions. | "symfony/symfony": "3.1.*" includes the 3.1.1.
|
~ | extends to the next versions of the same level. | "doctrine/orm": "~2.5" also concerns the 2.6, but neither the 2.4 nor the 3.0.
|
^ | same as tilde, only if there is a backward compatibility. |
Supported frameworks
[edit]- Symfony version 2 and later
- Laravel version 4 and later
- CodeIgniter version 3.0 and later
- CakePHP version 3.0 and later
- FuelPHP version 2.0 and later
- Drupal version 8 and later
- TYPO3 version 6.2 and later
- Neos Flow version 2.0 and later
- Silverstripe version 3.0 later
- Magento version 2.0 later
- OpenMage version 20.0.0 and later
- Yii version 1.1 and later
- Laminas
- Silex (web framework)
- Lumen (web framework)
- Adianti Framework version 1 and later
See also
[edit]References
[edit]- ^ a b Software release, github.com, Retrieved April 24, 2016.
- ^ "Release 2.8.4". 11 December 2024. Retrieved 22 December 2024.
- ^ Getting Started/Dependency management, getcomposer.org, Retrieved November 28, 2013.
- ^ "composer/composer". Jun 23, 2020. Retrieved Jun 24, 2020 – via GitHub.
- ^ See packagist.org
- ^ "Command-line interface / Commands". getcomposer.org.
- ^ "Versions and constraints - Composer". getcomposer.org.