2012-02-19 20:07:30 +00:00
|
|
|
# composer.json
|
|
|
|
|
|
|
|
This chapter will explain all of the options available in `composer.json`.
|
|
|
|
|
|
|
|
## JSON schema
|
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
We have a [JSON schema](http://json-schema.org) that documents the format and
|
|
|
|
can also be used to validate your `composer.json`. In fact, it is used by the
|
2012-02-26 11:40:35 +00:00
|
|
|
`validate` command. You can find it at:
|
2012-02-20 22:58:13 +00:00
|
|
|
[`Resources/composer-schema.json`](https://github.com/composer/composer/blob/master/res/composer-schema.json).
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
## Package root
|
|
|
|
|
|
|
|
The root of the package definition is a JSON object.
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
## Properties
|
|
|
|
|
|
|
|
### name
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
The name of the package. It consists of vendor name and project name,
|
|
|
|
separated by `/`.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
* monolog/monolog
|
|
|
|
* igorw/event-source
|
|
|
|
|
|
|
|
Required for published packages (libraries).
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### description
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
A short description of the package. Usually this is just one line long.
|
|
|
|
|
|
|
|
Optional but recommended.
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### version
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
The version of the package.
|
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
This must follow the format of `X.Y.Z` with an optional suffix of `-dev`,
|
|
|
|
`alphaN`, `-betaN` or `-RCN`.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
1.0.0
|
|
|
|
1.0.2
|
|
|
|
1.1.0
|
|
|
|
0.2.5
|
|
|
|
1.0.0-dev
|
|
|
|
1.0.0-beta2
|
|
|
|
1.0.0-RC5
|
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
Optional if the package repository can infer the version from somewhere, such
|
|
|
|
as the VCS tag name in the VCS repository. In that case it is also recommended
|
|
|
|
to omit it.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### type
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
The type of the package. It defaults to `library`.
|
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
Package types are used for custom installation logic. If you have a package
|
|
|
|
that needs some special logic, you can define a custom type. This could be a
|
2012-02-26 11:40:35 +00:00
|
|
|
`symfony-bundle`, a `wordpress-plugin` or a `typo3-module`. These types will
|
|
|
|
all be specific to certain projects, and they will need to provide an
|
|
|
|
installer capable of installing packages of that type.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Out of the box, composer supports two types:
|
|
|
|
|
2012-03-24 17:20:27 +00:00
|
|
|
- **library:** This is the default. It will simply copy the files to `vendor`.
|
|
|
|
- **metapackage:** An empty package that contains requirements and will trigger
|
|
|
|
their installation, but contains no files and will not write anything to the
|
|
|
|
filesystem. As such, it does not require a dist or source key to be
|
|
|
|
installable.
|
|
|
|
- **composer-installer:** A package of type `composer-installer` provides an
|
|
|
|
installer for other packages that have a custom type. Symfony could supply a
|
|
|
|
`symfony/bundle-installer` package, which every bundle would depend on.
|
|
|
|
Whenever you install a bundle, it will fetch the installer and register it, in
|
|
|
|
order to be able to install the bundle.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
Only use a custom type if you need custom logic during installation. It is
|
|
|
|
recommended to omit this field and have it just default to `library`.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### keywords
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
An array of keywords that the package is related to. These can be used for
|
|
|
|
searching and filtering.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
logging
|
|
|
|
events
|
|
|
|
database
|
|
|
|
redis
|
|
|
|
templating
|
|
|
|
|
|
|
|
Optional.
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### homepage
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
An URL to the website of the project.
|
|
|
|
|
|
|
|
Optional.
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### time
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Release date of the version.
|
|
|
|
|
|
|
|
Must be in `YYYY-MM-DD` or `YYYY-MM-DD HH:MM:SS` format.
|
|
|
|
|
|
|
|
Optional.
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### license
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
The license of the package. This can be either a string or an array of strings.
|
|
|
|
|
|
|
|
The recommended notation for the most common licenses is:
|
|
|
|
|
|
|
|
MIT
|
|
|
|
BSD-2
|
|
|
|
BSD-3
|
|
|
|
BSD-4
|
|
|
|
GPLv2
|
|
|
|
GPLv3
|
|
|
|
LGPLv2
|
|
|
|
LGPLv3
|
|
|
|
Apache2
|
|
|
|
WTFPL
|
|
|
|
|
|
|
|
Optional, but it is highly recommended to supply this.
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### authors
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
The authors of the package. This is an array of objects.
|
|
|
|
|
|
|
|
Each author object can have following properties:
|
|
|
|
|
|
|
|
* **name:** The author's name. Usually his real name.
|
|
|
|
* **email:** The author's email address.
|
|
|
|
* **homepage:** An URL to the author's website.
|
|
|
|
|
|
|
|
An example:
|
|
|
|
|
2012-02-29 14:56:53 +00:00
|
|
|
{
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Nils Adermann",
|
|
|
|
"email": "naderman@naderman.de",
|
|
|
|
"homepage": "http://www.naderman.de"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Jordi Boggiano",
|
|
|
|
"email": "j.boggiano@seld.be",
|
|
|
|
"homepage": "http://seld.be"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Optional, but highly recommended.
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### Link types
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Each of these takes an object which maps package names to version constraints.
|
|
|
|
|
|
|
|
* **require:** Packages required by this package.
|
|
|
|
* **recommend:** Recommended packages, installed by default.
|
2012-02-20 10:08:18 +00:00
|
|
|
* **suggest:** Suggested packages. These are displayed after installation,
|
|
|
|
but not installed by default.
|
|
|
|
* **conflict:** Mark this version of this package as conflicting with other
|
|
|
|
packages.
|
|
|
|
* **replace:** Packages that can be replaced by this package. This is useful
|
|
|
|
for large repositories with subtree splits. It allows the main package to
|
|
|
|
replace all of it's child packages.
|
|
|
|
* **provide:** List of other packages that are provided by this package. This
|
|
|
|
is mostly useful for common interfaces. A package could depend on some virtual
|
|
|
|
`logger` package, any library that provides this logger, would simply list it
|
|
|
|
in `provide`.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2012-02-29 14:56:53 +00:00
|
|
|
{
|
|
|
|
"require": {
|
|
|
|
"monolog/monolog": "1.0.*"
|
|
|
|
}
|
2012-02-19 20:07:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Optional.
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### autoload
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Autoload mapping for a PHP autoloader.
|
|
|
|
|
2012-03-05 13:13:06 +00:00
|
|
|
Currently [PSR-0](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md)
|
2012-03-05 13:21:51 +00:00
|
|
|
autoloading and ClassMap generation are supported.
|
2012-03-05 13:13:06 +00:00
|
|
|
|
|
|
|
Under the `psr-0` key you define a mapping from namespaces to paths, relative to the
|
2012-02-20 10:08:18 +00:00
|
|
|
package root.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2012-02-29 14:56:53 +00:00
|
|
|
{
|
|
|
|
"autoload": {
|
|
|
|
"psr-0": { "Monolog": "src/" }
|
|
|
|
}
|
2012-02-19 20:07:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Optional, but it is highly recommended that you follow PSR-0 and use this.
|
2012-03-28 15:09:07 +00:00
|
|
|
If you need to search for a same namespace prefix in multiple directories,
|
|
|
|
you can specify them as an array as such:
|
|
|
|
|
|
|
|
{
|
|
|
|
"autoload": {
|
|
|
|
"psr-0": { "Monolog": ["src/", "lib/"] }
|
|
|
|
}
|
|
|
|
}
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-03-05 13:13:06 +00:00
|
|
|
You can use the classmap generation support to define autoloading for all libraries
|
|
|
|
that do not follow "PSR-0". To configure this you specify all directories
|
|
|
|
to search for classes.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
{
|
|
|
|
"autoload: {
|
|
|
|
"classmap": ["src/", "lib/"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-04 08:39:00 +00:00
|
|
|
### include-paths
|
|
|
|
|
|
|
|
A list of paths which should get appended to PHP's `include_path`.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
{
|
|
|
|
"include-paths": ["lib/"]
|
|
|
|
}
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### target-dir
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Defines the installation target.
|
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
In case the package root is below the namespace declaration you cannot
|
|
|
|
autoload properly. `target-dir` solves this problem.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
An example is Symfony. There are individual packages for the components. The
|
|
|
|
Yaml component is under `Symfony\Component\Yaml`. The package root is that
|
|
|
|
`Yaml` directory. To make autoloading possible, we need to make sure that it
|
|
|
|
is not installed into `vendor/symfony/yaml`, but instead into
|
|
|
|
`vendor/symfony/yaml/Symfony/Component/Yaml`, so that the autoloader can load
|
|
|
|
it from `vendor/symfony/yaml`.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
To do that, `autoload` and `target-dir` are defined as follows:
|
|
|
|
|
2012-02-29 14:56:53 +00:00
|
|
|
{
|
|
|
|
"autoload": {
|
|
|
|
"psr-0": { "Symfony\\Component\\Yaml": "" }
|
|
|
|
},
|
|
|
|
"target-dir": "Symfony/Component/Yaml"
|
|
|
|
}
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Optional.
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### repositories
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Custom package repositories to use.
|
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
By default composer just uses the packagist repository. By specifying
|
|
|
|
repositories you can get packages from elsewhere.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
Repositories are not resolved recursively. You can only add them to your main
|
|
|
|
`composer.json`. Repository declarations of dependencies' `composer.json`s are
|
|
|
|
ignored.
|
2012-02-19 21:31:04 +00:00
|
|
|
|
2012-02-26 11:40:35 +00:00
|
|
|
The following repository types are supported:
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
* **composer:** A composer repository is simply a `packages.json` file served
|
2012-02-26 11:40:35 +00:00
|
|
|
via HTTP, that contains a list of `composer.json` objects with additional
|
2012-02-20 10:08:18 +00:00
|
|
|
`dist` and/or `source` information.
|
|
|
|
* **vcs:** The version control system repository can fetch packages from git,
|
2012-02-26 11:40:35 +00:00
|
|
|
svn and hg repositories.
|
2012-02-20 10:08:18 +00:00
|
|
|
* **pear:** With this you can import any pear repository into your composer
|
|
|
|
project.
|
|
|
|
* **package:** If you depend on a project that does not have any support for
|
|
|
|
composer whatsoever you can define the package inline using a `package`
|
|
|
|
repository. You basically just inline the `composer.json` object.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-03-07 23:18:03 +00:00
|
|
|
For more information on any of these, see [Repositories](05-repositories.md).
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2012-02-29 14:56:53 +00:00
|
|
|
{
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "composer",
|
|
|
|
"url": "http://packages.example.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "vcs",
|
|
|
|
"url": "https://github.com/Seldaek/monolog"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "pear",
|
|
|
|
"url": "http://pear2.php.net"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "package",
|
|
|
|
"package": {
|
|
|
|
"name": "smarty/smarty",
|
|
|
|
"version": "3.1.7",
|
|
|
|
"dist": {
|
|
|
|
"url": "http://www.smarty.net/files/Smarty-3.1.7.zip",
|
|
|
|
"type": "zip"
|
|
|
|
},
|
|
|
|
"source": {
|
|
|
|
"url": "http://smarty-php.googlecode.com/svn/",
|
|
|
|
"type": "svn",
|
|
|
|
"reference": "tags/Smarty_3_1_7/distribution/"
|
|
|
|
}
|
2012-02-19 20:07:30 +00:00
|
|
|
}
|
|
|
|
}
|
2012-02-29 14:56:53 +00:00
|
|
|
]
|
|
|
|
}
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-03-15 00:13:10 +00:00
|
|
|
> **Note:** Order is significant here. When looking for a package, Composer
|
|
|
|
will look from the first to the last repository, and pick the first match.
|
|
|
|
By default Packagist is added last which means that custom repositories can
|
|
|
|
override packages from it.
|
2012-02-20 00:04:35 +00:00
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### config
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
A set of configuration options. It is only used for projects.
|
|
|
|
|
|
|
|
The following options are supported:
|
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
* **vendor-dir:** Defaults to `vendor`. You can install dependencies into a
|
|
|
|
different directory if you want to.
|
|
|
|
* **bin-dir:** Defaults to `vendor/bin`. If a project includes binaries, they
|
|
|
|
will be symlinked into this directory.
|
2012-02-27 10:35:26 +00:00
|
|
|
* **process-timeout:** Defaults to `300`. The duration processes like git clones
|
2012-02-27 08:32:59 +00:00
|
|
|
can run before Composer assumes they died out. You may need to make this
|
|
|
|
higher if you have a slow connection or huge vendors.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2012-02-29 14:56:53 +00:00
|
|
|
{
|
|
|
|
"config": {
|
|
|
|
"bin-dir": "bin"
|
|
|
|
}
|
2012-02-19 20:07:30 +00:00
|
|
|
}
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### scripts
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-02-26 11:40:35 +00:00
|
|
|
Composer allows you to hook into various parts of the installation process
|
|
|
|
through the use of scripts.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-03-26 22:59:08 +00:00
|
|
|
See [Scripts](articles/scripts.md) for events details and examples.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### extra
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Arbitrary extra data for consumption by `scripts`.
|
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
This can be virtually anything. To access it from within a script event
|
|
|
|
handler, you can do:
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-02-29 14:56:53 +00:00
|
|
|
$extra = $event->getComposer()->getPackage()->getExtra();
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Optional.
|
|
|
|
|
2012-03-18 10:49:06 +00:00
|
|
|
### bin
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
A set of files that should be treated as binaries and symlinked into the `bin-
|
|
|
|
dir` (from config).
|
2012-02-19 20:07:30 +00:00
|
|
|
|
2012-03-17 07:49:04 +00:00
|
|
|
See [Vendor Bins](articles/vendor-bins.md) for more details.
|
2012-02-19 20:07:30 +00:00
|
|
|
|
|
|
|
Optional.
|
2012-03-07 16:35:53 +00:00
|
|
|
|
2012-03-10 00:22:40 +00:00
|
|
|
← [Command-line interface](03-cli.md) | [Repositories](05-repositories.md) →
|