Introduction to Composer» Composer is a dependency manager for PHP that makes it possible to define third-party code packages used by a project that can then be easily installed and updated. It leverages the built-in class autoloading features of PHP, repositories of PHP packages such as » Packagist, and common project layout and coding conventions.
For example, if a PHP application or website needs
to work with UUID values,
» Ben Ramsey's
Briefly, this is done by creating a 例1
{ "require": { "ramsey/uuid": "^4.7" } } |