2012-02-18 17:11:00 +00:00
|
|
|
# Basic usage
|
|
|
|
|
2015-06-22 14:24:59 +00:00
|
|
|
## Introduction
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2015-06-22 20:01:20 +00:00
|
|
|
For our basic usage introduction, we will be installing `monolog/monolog`,
|
2015-07-21 13:46:38 +00:00
|
|
|
a logging library. If you have not yet installed Composer, refer to the
|
2015-06-22 20:01:20 +00:00
|
|
|
[Intro](00-intro.md) chapter.
|
|
|
|
|
|
|
|
> **Note:** for the sake of simplicity, this introduction will assume you
|
|
|
|
> have performed a [local](00-intro.md#locally) install of Composer.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2012-03-14 03:07:22 +00:00
|
|
|
## `composer.json`: Project Setup
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2012-03-15 12:53:34 +00:00
|
|
|
To start using Composer in your project, all you need is a `composer.json`
|
2012-02-20 10:08:18 +00:00
|
|
|
file. This file describes the dependencies of your project and may contain
|
2012-02-18 17:11:00 +00:00
|
|
|
other metadata as well.
|
|
|
|
|
2012-03-14 03:07:22 +00:00
|
|
|
### The `require` Key
|
|
|
|
|
2012-02-18 17:11:00 +00:00
|
|
|
The first (and often only) thing you specify in `composer.json` is the
|
2015-07-21 13:46:38 +00:00
|
|
|
[`require`](04-schema.md#require) key. You're simply telling Composer which
|
2015-06-23 06:47:30 +00:00
|
|
|
packages your project depends on.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"require": {
|
|
|
|
"monolog/monolog": "1.0.*"
|
2012-02-18 17:11:00 +00:00
|
|
|
}
|
2014-05-19 10:17:07 +00:00
|
|
|
}
|
|
|
|
```
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2015-07-21 13:46:38 +00:00
|
|
|
As you can see, [`require`](04-schema.md#require) takes an object that maps
|
|
|
|
**package names** (e.g. `monolog/monolog`) to **version constraints** (e.g.
|
2015-06-23 06:47:30 +00:00
|
|
|
`1.0.*`).
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2017-01-20 01:04:24 +00:00
|
|
|
It uses this information to search for the right set of files in package
|
|
|
|
"repositories" that you register using the [`repositories`](04-schema.md#repositories)
|
|
|
|
key, or in Packagist, the default package respository. In the above example,
|
|
|
|
since no other repository is registered in the file, it is assumed that the
|
|
|
|
`monolog/monolog` package is registered on Packagist. (See more about Packagist
|
|
|
|
[below](#packagist), or read more about repositories [here](05-repositories.md).
|
|
|
|
|
2012-03-14 03:07:22 +00:00
|
|
|
### Package Names
|
2012-02-18 17:11:00 +00:00
|
|
|
|
|
|
|
The package name consists of a vendor name and the project's name. Often these
|
2017-01-20 01:04:24 +00:00
|
|
|
will be identical - the vendor name just exists to prevent naming clashes. For
|
|
|
|
example, it would allow two different people to create a library named `json`.
|
|
|
|
One might be named `igorw/json` while the other might be `seldaek/json`.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2017-01-20 01:04:24 +00:00
|
|
|
Read more about publishing packages and package naming [here](02-libraries.md)
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2012-03-14 03:07:22 +00:00
|
|
|
### Package Versions
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2015-06-22 14:24:59 +00:00
|
|
|
In the previous example we were requiring version
|
|
|
|
[`1.0.*`](http://semver.mwl.be/#?package=monolog%2Fmonolog&version=1.0.*) of
|
2015-06-23 06:47:30 +00:00
|
|
|
Monolog. This means any version in the `1.0` development branch. It is the
|
2015-06-22 14:24:59 +00:00
|
|
|
equivalent of saying versions that match `>=1.0 <1.1`.
|
|
|
|
|
2017-01-20 01:04:24 +00:00
|
|
|
Version constraints can be specified in several ways; please read
|
2015-06-22 14:24:59 +00:00
|
|
|
[versions](articles/versions.md) for more in-depth information on this topic.
|
2014-09-25 13:27:10 +00:00
|
|
|
|
2017-01-20 01:04:24 +00:00
|
|
|
> **How does Composer download the right files?** When you specify a dependency in
|
|
|
|
> `composer.json`, Composer, first takes the name of the package that you've requested
|
|
|
|
> and searches for it in any repositories that you've registered using the
|
|
|
|
> [`repositories`](04-schema.md#repositories) key. If you haven't registered
|
|
|
|
> any extra repositories, or it doesn't find a package with that name in the
|
|
|
|
> repositories you've specified, it falls back to Packagist (more [below](#packagist)).
|
|
|
|
>
|
|
|
|
> When it finds the right package, either in Packagist or in a repo you've specified,
|
|
|
|
> it then uses the versioning features of the package's VCS to attempt to find the
|
|
|
|
> best match for the version you've specified. Read more on package resolution
|
|
|
|
> [here](articles/versions.md).
|
|
|
|
|
|
|
|
> **Note:** If you're trying to require a package but Composer throws an error
|
|
|
|
> regarding package stability, the version you've specified may not meet the
|
|
|
|
> default minimum stability requirements that Composer establishes. By default
|
|
|
|
> only stable releases are taken into consideration when searching for package
|
|
|
|
> versions in your VCS.
|
|
|
|
>
|
|
|
|
> You might run into this if you're trying to require dev, alpha, beta, or RC
|
|
|
|
> versions of a package. Read more about stability flags and the `minimum-stability`
|
|
|
|
> key on the [schema page](04-schema.md).
|
2012-12-08 19:50:48 +00:00
|
|
|
|
2012-03-14 03:07:22 +00:00
|
|
|
## Installing Dependencies
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2015-06-22 14:24:59 +00:00
|
|
|
To install the defined dependencies for your project, just run the
|
2015-06-23 06:47:30 +00:00
|
|
|
[`install`](03-cli.md#install) command.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```sh
|
|
|
|
php composer.phar install
|
|
|
|
```
|
2012-02-18 17:11:00 +00:00
|
|
|
|
|
|
|
This will find the latest version of `monolog/monolog` that matches the
|
2012-04-16 09:48:12 +00:00
|
|
|
supplied version constraint and download it into the `vendor` directory.
|
2012-02-18 17:11:00 +00:00
|
|
|
It's a convention to put third party code into a directory named `vendor`.
|
2017-01-20 01:04:24 +00:00
|
|
|
In the case of Monolog it will put it into `vendor/monolog/monolog`.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2012-02-26 11:40:35 +00:00
|
|
|
> **Tip:** If you are using git for your project, you probably want to add
|
2015-06-22 14:24:59 +00:00
|
|
|
> `vendor` in your `.gitignore`. You really don't want to add all of that
|
2012-02-26 11:40:35 +00:00
|
|
|
> code to your repository.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2015-07-21 13:46:38 +00:00
|
|
|
You will notice the [`install`](03-cli.md#install) command also created a
|
2015-06-23 06:47:30 +00:00
|
|
|
`composer.lock` file.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2012-03-14 05:25:17 +00:00
|
|
|
## `composer.lock` - The Lock File
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2012-03-15 12:53:34 +00:00
|
|
|
After installing the dependencies, Composer writes the list of the exact
|
2012-02-18 17:11:00 +00:00
|
|
|
versions it installed into a `composer.lock` file. This locks the project
|
|
|
|
to those specific versions.
|
|
|
|
|
2015-06-22 14:24:59 +00:00
|
|
|
**Commit your application's `composer.lock` (along with `composer.json`)
|
|
|
|
into version control.**
|
2012-03-14 03:07:22 +00:00
|
|
|
|
2015-07-21 13:46:38 +00:00
|
|
|
This is important because the [`install`](03-cli.md#install) command checks
|
|
|
|
if a lock file is present, and if it is, it downloads the versions specified
|
2015-06-23 06:47:30 +00:00
|
|
|
there (regardless of what `composer.json` says).
|
2013-04-08 16:15:08 +00:00
|
|
|
|
2015-06-22 14:24:59 +00:00
|
|
|
This means that anyone who sets up the project will download the exact same
|
2017-01-20 01:04:24 +00:00
|
|
|
versions of the dependencies that you're using. Your CI server, production
|
|
|
|
machines, other developers in your team, everything and everyone runs on the
|
|
|
|
same dependencies, which mitigates the potential for bugs affecting only some
|
|
|
|
parts of the deployments. Even if you develop alone, in six months when
|
|
|
|
reinstalling the project you can feel confident the dependencies installed are
|
|
|
|
still working even if your dependencies released many new versions since then.
|
|
|
|
(See note below about using the `update` command.)
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2012-06-21 08:12:27 +00:00
|
|
|
If no `composer.lock` file exists, Composer will read the dependencies and
|
2017-01-20 01:04:24 +00:00
|
|
|
versions from `composer.json` and create the lock file after executing.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2015-06-22 14:24:59 +00:00
|
|
|
This means that if any of the dependencies get a new version, you won't get the
|
2015-07-21 13:46:38 +00:00
|
|
|
updates automatically. To update to the new version, use the
|
|
|
|
[`update`](03-cli.md#update) command. This will fetch the latest matching
|
|
|
|
versions (according to your `composer.json` file) and also update the lock file
|
2015-06-23 06:47:30 +00:00
|
|
|
with the new version.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```sh
|
|
|
|
php composer.phar update
|
|
|
|
```
|
2015-06-22 14:24:59 +00:00
|
|
|
> **Note:** Composer will display a Warning when executing an `install` command
|
|
|
|
> if `composer.lock` and `composer.json` are not synchronized.
|
|
|
|
|
2013-04-08 16:15:08 +00:00
|
|
|
If you only want to install or update one dependency, you can whitelist them:
|
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```sh
|
|
|
|
php composer.phar update monolog/monolog [...]
|
|
|
|
```
|
2013-04-08 16:15:08 +00:00
|
|
|
|
2015-06-23 06:47:30 +00:00
|
|
|
> **Note:** For libraries it is not necessary to commit the lock
|
2015-06-22 14:24:59 +00:00
|
|
|
> file, see also: [Libraries - Lock file](02-libraries.md#lock-file).
|
2012-03-27 20:49:35 +00:00
|
|
|
|
2012-02-18 17:15:57 +00:00
|
|
|
## Packagist
|
|
|
|
|
2012-11-08 14:08:02 +00:00
|
|
|
[Packagist](https://packagist.org/) is the main Composer repository. A Composer
|
2012-03-14 03:07:22 +00:00
|
|
|
repository is basically a package source: a place where you can get packages
|
2012-02-20 10:08:18 +00:00
|
|
|
from. Packagist aims to be the central repository that everybody uses. This
|
2017-01-20 01:04:24 +00:00
|
|
|
means that you can automatically `require` any package that is available there,
|
|
|
|
without further specifying where Composer should look for the package.
|
2012-02-18 17:15:57 +00:00
|
|
|
|
2015-06-23 06:47:30 +00:00
|
|
|
If you go to the [Packagist website](https://packagist.org/) (packagist.org),
|
2012-02-20 10:08:18 +00:00
|
|
|
you can browse and search for packages.
|
2012-02-18 17:15:57 +00:00
|
|
|
|
2015-07-21 13:46:38 +00:00
|
|
|
Any open source project using Composer is recommended to publish their packages
|
|
|
|
on Packagist. A library doesn't need to be on Packagist to be used by Composer,
|
2015-06-23 06:47:30 +00:00
|
|
|
but it enables discovery and adoption by other developers more quickly.
|
2012-02-18 17:15:57 +00:00
|
|
|
|
2012-02-18 17:11:00 +00:00
|
|
|
## Autoloading
|
|
|
|
|
2012-04-13 10:06:53 +00:00
|
|
|
For libraries that specify autoload information, Composer generates a
|
2015-06-22 14:24:59 +00:00
|
|
|
`vendor/autoload.php` file. You can simply include this file and you will get
|
|
|
|
autoloading for free.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```php
|
2015-07-21 13:46:38 +00:00
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
2014-05-19 10:17:07 +00:00
|
|
|
```
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2015-06-22 14:24:59 +00:00
|
|
|
This makes it really easy to use third party code. For example: If your project
|
2015-06-23 06:47:30 +00:00
|
|
|
depends on Monolog, you can just start using classes from it, and they will be
|
2015-06-22 14:24:59 +00:00
|
|
|
autoloaded.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```php
|
|
|
|
$log = new Monolog\Logger('name');
|
|
|
|
$log->pushHandler(new Monolog\Handler\StreamHandler('app.log', Monolog\Logger::WARNING));
|
|
|
|
$log->addWarning('Foo');
|
|
|
|
```
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2015-07-21 13:46:38 +00:00
|
|
|
You can even add your own code to the autoloader by adding an
|
2015-06-23 06:47:30 +00:00
|
|
|
[`autoload`](04-schema.md#autoload) field to `composer.json`.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {"Acme\\": "src/"}
|
2012-02-18 17:11:00 +00:00
|
|
|
}
|
2014-05-19 10:17:07 +00:00
|
|
|
}
|
|
|
|
```
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2014-01-03 15:46:56 +00:00
|
|
|
Composer will register a [PSR-4](http://www.php-fig.org/psr/psr-4/) autoloader
|
|
|
|
for the `Acme` namespace.
|
2012-04-13 10:06:53 +00:00
|
|
|
|
|
|
|
You define a mapping from namespaces to directories. The `src` directory would
|
2012-07-17 13:13:13 +00:00
|
|
|
be in your project root, on the same level as `vendor` directory is. An example
|
2014-01-03 15:46:56 +00:00
|
|
|
filename would be `src/Foo.php` containing an `Acme\Foo` class.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2015-07-21 13:46:38 +00:00
|
|
|
After adding the [`autoload`](04-schema.md#autoload) field, you have to re-run
|
|
|
|
[`dump-autoload`](03-cli.md#dump-autoload) to re-generate the
|
2015-06-23 06:47:30 +00:00
|
|
|
`vendor/autoload.php` file.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2012-02-26 11:40:35 +00:00
|
|
|
Including that file will also return the autoloader instance, so you can store
|
|
|
|
the return value of the include call in a variable and add more namespaces.
|
|
|
|
This can be useful for autoloading classes in a test suite, for example.
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```php
|
2015-07-21 13:46:38 +00:00
|
|
|
$loader = require __DIR__ . '/vendor/autoload.php';
|
2014-05-19 10:17:07 +00:00
|
|
|
$loader->add('Acme\\Test\\', __DIR__);
|
|
|
|
```
|
2012-02-18 17:11:00 +00:00
|
|
|
|
2015-07-21 13:46:38 +00:00
|
|
|
In addition to PSR-4 autoloading, Composer also supports PSR-0, classmap and
|
|
|
|
files autoloading. See the [`autoload`](04-schema.md#autoload) reference for
|
2015-06-23 06:47:30 +00:00
|
|
|
more information.
|
2012-04-13 10:06:53 +00:00
|
|
|
|
2015-06-22 14:24:59 +00:00
|
|
|
> **Note:** Composer provides its own autoloader. If you don't want to use that
|
|
|
|
> one, you can just include `vendor/composer/autoload_*.php` files, which return
|
|
|
|
> associative arrays allowing you to configure your own autoloader.
|
2012-03-07 16:35:53 +00:00
|
|
|
|
2012-03-08 05:41:29 +00:00
|
|
|
← [Intro](00-intro.md) | [Libraries](02-libraries.md) →
|