2012-02-18 19:03:24 +00:00
|
|
|
# Libraries
|
|
|
|
|
2015-06-23 06:47:30 +00:00
|
|
|
This chapter will tell you how to make your library installable through
|
|
|
|
Composer.
|
2012-02-18 19:03:24 +00:00
|
|
|
|
|
|
|
## Every project is a package
|
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
As soon as you have a `composer.json` in a directory, that directory is a
|
2015-06-23 06:47:30 +00:00
|
|
|
package. When you add a [`require`](04-schema.md#require) to a project, you are
|
|
|
|
making a package that depends on other packages. The only difference between
|
|
|
|
your project and libraries is that your project is a package without a name.
|
2012-02-18 19:03:24 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
In order to make that package installable you need to give it a name. You do
|
2015-06-23 06:47:30 +00:00
|
|
|
this by adding the [`name`](04-schema.md#name) property in `composer.json`:
|
2012-02-18 19:03:24 +00:00
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"name": "acme/hello-world",
|
|
|
|
"require": {
|
|
|
|
"monolog/monolog": "1.0.*"
|
2012-02-18 19:03:24 +00:00
|
|
|
}
|
2014-05-19 10:17:07 +00:00
|
|
|
}
|
|
|
|
```
|
2012-02-18 19:03:24 +00:00
|
|
|
|
2015-06-23 06:47:30 +00:00
|
|
|
In this case the project name is `acme/hello-world`, where `acme` is the vendor
|
|
|
|
name. Supplying a vendor name is mandatory.
|
2012-02-18 19:03:24 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
> **Note:** If you don't know what to use as a vendor name, your GitHub
|
2015-06-23 06:47:30 +00:00
|
|
|
> username is usually a good bet. While package names are case insensitive, the
|
|
|
|
> convention is all lowercase and dashes for word separation.
|
2012-02-18 19:03:24 +00:00
|
|
|
|
2012-11-07 12:04:10 +00:00
|
|
|
## Platform packages
|
|
|
|
|
|
|
|
Composer has platform packages, which are virtual packages for things that are
|
2013-07-01 00:52:10 +00:00
|
|
|
installed on the system but are not actually installable by Composer. This
|
2012-11-07 12:04:10 +00:00
|
|
|
includes PHP itself, PHP extensions and some system libraries.
|
|
|
|
|
|
|
|
* `php` represents the PHP version of the user, allowing you to apply
|
2014-01-22 21:15:49 +00:00
|
|
|
constraints, e.g. `>=5.4.0`. To require a 64bit version of php, you can
|
|
|
|
require the `php-64bit` package.
|
|
|
|
|
|
|
|
* `hhvm` represents the version of the HHVM runtime (aka HipHop Virtual
|
|
|
|
Machine) and allows you to apply a constraint, e.g., '>=2.3.3'.
|
2012-11-07 12:04:10 +00:00
|
|
|
|
|
|
|
* `ext-<name>` allows you to require PHP extensions (includes core
|
|
|
|
extensions). Versioning can be quite inconsistent here, so it's often
|
|
|
|
a good idea to just set the constraint to `*`. An example of an extension
|
|
|
|
package name is `ext-gd`.
|
|
|
|
|
|
|
|
* `lib-<name>` allows constraints to be made on versions of libraries used by
|
2014-01-22 21:15:49 +00:00
|
|
|
PHP. The following are available: `curl`, `iconv`, `icu`, `libxml`,
|
|
|
|
`openssl`, `pcre`, `uuid`, `xsl`.
|
2012-11-07 12:04:10 +00:00
|
|
|
|
2015-06-23 06:47:30 +00:00
|
|
|
You can use [`show --platform`](03-cli.md#show) to get a list of your locally
|
|
|
|
available platform packages.
|
2012-11-07 12:04:10 +00:00
|
|
|
|
2012-02-18 19:03:24 +00:00
|
|
|
## Specifying the version
|
|
|
|
|
2015-06-23 06:47:30 +00:00
|
|
|
When you publish your package on Packagist, it is able to infer the version
|
2016-06-22 05:19:29 +00:00
|
|
|
from the VCS (git, svn, hg, fossil) information. This means you don't have to
|
2015-06-23 06:47:30 +00:00
|
|
|
explicitly declare it. Read [tags](#tags) and [branches](#branches) to see how
|
2012-06-14 13:08:38 +00:00
|
|
|
version numbers are extracted from these.
|
2012-02-18 19:03:24 +00:00
|
|
|
|
2012-06-14 13:08:38 +00:00
|
|
|
If you are creating packages by hand and really have to specify it explicitly,
|
|
|
|
you can just add a `version` field:
|
2012-02-18 19:03:24 +00:00
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"version": "1.0.0"
|
|
|
|
}
|
|
|
|
```
|
2012-02-18 19:03:24 +00:00
|
|
|
|
2013-03-07 02:40:20 +00:00
|
|
|
> **Note:** You should avoid specifying the version field explicitly, because
|
|
|
|
> for tags the value must match the tag name.
|
|
|
|
|
2012-02-18 19:03:24 +00:00
|
|
|
### Tags
|
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
For every tag that looks like a version, a package version of that tag will be
|
2015-06-23 06:47:30 +00:00
|
|
|
created. It should match 'X.Y.Z' or 'vX.Y.Z', with an optional suffix of
|
|
|
|
`-patch` (`-p`), `-alpha` (`-a`), `-beta` (`-b`) or `-RC`. The suffix can also
|
|
|
|
be followed by a number.
|
2012-02-18 19:03:24 +00:00
|
|
|
|
|
|
|
Here are a few examples of valid tag names:
|
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
- 1.0.0
|
|
|
|
- v1.0.0
|
|
|
|
- 1.10.5-RC1
|
2014-10-05 21:57:01 +00:00
|
|
|
- v4.4.4-beta2
|
2014-05-19 10:17:07 +00:00
|
|
|
- v2.0.0-alpha
|
|
|
|
- v2.0.4-p1
|
2012-02-18 19:03:24 +00:00
|
|
|
|
2015-06-23 06:47:30 +00:00
|
|
|
> **Note:** Even if your tag is prefixed with `v`, a
|
|
|
|
> [version constraint](01-basic-usage.md#package-versions) in a `require`
|
|
|
|
> statement has to be specified without prefix (e.g. tag `v1.0.0` will result
|
|
|
|
> in version `1.0.0`).
|
2013-12-20 12:41:08 +00:00
|
|
|
|
2012-02-18 19:03:24 +00:00
|
|
|
### Branches
|
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
For every branch, a package development version will be created. If the branch
|
2015-05-27 19:02:06 +00:00
|
|
|
name looks like a version, the version will be `{branchname}-dev`. For example,
|
2015-06-23 06:47:30 +00:00
|
|
|
the branch `2.0` will get the `2.0.x-dev` version (the `.x` is added for
|
|
|
|
technical reasons, to make sure it is recognized as a branch). The `2.0.x`
|
|
|
|
branch would also be valid and be turned into `2.0.x-dev` as well. If the
|
|
|
|
branch does not look like a version, it will be `dev-{branchname}`. `master`
|
|
|
|
results in a `dev-master` version.
|
2012-02-18 19:03:24 +00:00
|
|
|
|
|
|
|
Here are some examples of version branch names:
|
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
- 1.x
|
|
|
|
- 1.0 (equals 1.0.x)
|
|
|
|
- 1.1.x
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2013-08-27 13:21:57 +00:00
|
|
|
> **Note:** When you install a development version, it will be automatically
|
|
|
|
> pulled from its `source`. See the [`install`](03-cli.md#install) command
|
|
|
|
> for more details.
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2012-04-26 16:40:00 +00:00
|
|
|
### Aliases
|
|
|
|
|
2013-04-03 09:43:44 +00:00
|
|
|
It is possible to alias branch names to versions. For example, you could alias
|
2015-06-23 06:47:30 +00:00
|
|
|
`dev-master` to `1.0.x-dev`, which would allow you to require `1.0.x-dev` in
|
|
|
|
all the packages.
|
2012-04-26 16:40:00 +00:00
|
|
|
|
|
|
|
See [Aliases](articles/aliases.md) for more information.
|
|
|
|
|
2012-02-19 12:12:34 +00:00
|
|
|
## Lock file
|
|
|
|
|
2012-03-27 21:18:34 +00:00
|
|
|
For your library you may commit the `composer.lock` file if you want to. This
|
|
|
|
can help your team to always test against the same dependency versions.
|
|
|
|
However, this lock file will not have any effect on other projects that depend
|
|
|
|
on it. It only has an effect on the main project.
|
2012-02-19 12:12:34 +00:00
|
|
|
|
2012-03-27 21:18:34 +00:00
|
|
|
If you do not want to commit the lock file and you are using git, add it to
|
|
|
|
the `.gitignore`.
|
2012-02-19 12:12:34 +00:00
|
|
|
|
2012-02-18 22:43:23 +00:00
|
|
|
## Publishing to a VCS
|
|
|
|
|
2015-06-23 06:47:30 +00:00
|
|
|
Once you have a VCS repository (version control system, e.g. git) containing a
|
2012-02-20 10:08:18 +00:00
|
|
|
`composer.json` file, your library is already composer-installable. In this
|
|
|
|
example we will publish the `acme/hello-world` library on GitHub under
|
2013-04-24 08:49:19 +00:00
|
|
|
`github.com/username/hello-world`.
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2013-04-24 04:13:45 +00:00
|
|
|
Now, to test installing the `acme/hello-world` package, we create a new
|
2012-03-17 00:14:53 +00:00
|
|
|
project locally. We will call it `acme/blog`. This blog will depend on
|
|
|
|
`acme/hello-world`, which in turn depends on `monolog/monolog`. We can
|
|
|
|
accomplish this by creating a new `blog` directory somewhere, containing a
|
2012-02-20 10:08:18 +00:00
|
|
|
`composer.json`:
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"name": "acme/blog",
|
|
|
|
"require": {
|
|
|
|
"acme/hello-world": "dev-master"
|
2012-02-18 22:43:23 +00:00
|
|
|
}
|
2014-05-19 10:17:07 +00:00
|
|
|
}
|
|
|
|
```
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
The name is not needed in this case, since we don't want to publish the blog
|
|
|
|
as a library. It is added here to clarify which `composer.json` is being
|
|
|
|
described.
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
Now we need to tell the blog app where to find the `hello-world` dependency.
|
|
|
|
We do this by adding a package repository specification to the blog's
|
|
|
|
`composer.json`:
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"name": "acme/blog",
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "vcs",
|
|
|
|
"url": "https://github.com/username/hello-world"
|
2012-02-18 22:43:23 +00:00
|
|
|
}
|
2014-05-19 10:17:07 +00:00
|
|
|
],
|
|
|
|
"require": {
|
|
|
|
"acme/hello-world": "dev-master"
|
2012-02-18 22:43:23 +00:00
|
|
|
}
|
2014-05-19 10:17:07 +00:00
|
|
|
}
|
|
|
|
```
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
For more details on how package repositories work and what other types are
|
2012-03-07 23:18:03 +00:00
|
|
|
available, see [Repositories](05-repositories.md).
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2013-07-01 00:52:10 +00:00
|
|
|
That's all. You can now install the dependencies by running Composer's
|
2015-06-23 06:47:30 +00:00
|
|
|
[`install`](03-cli.md#install) command!
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2016-06-22 05:19:29 +00:00
|
|
|
**Recap:** Any git/svn/hg/fossil repository containing a `composer.json` can be
|
|
|
|
added to your project by specifying the package repository and declaring the
|
2015-06-23 06:47:30 +00:00
|
|
|
dependency in the [`require`](04-schema.md#require) field.
|
2012-02-18 22:43:23 +00:00
|
|
|
|
|
|
|
## Publishing to packagist
|
|
|
|
|
2015-06-22 12:10:54 +00:00
|
|
|
Alright, so now you can publish packages. But specifying the VCS repository
|
2012-02-20 10:08:18 +00:00
|
|
|
every time is cumbersome. You don't want to force all your users to do that.
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2012-02-20 10:08:18 +00:00
|
|
|
The other thing that you may have noticed is that we did not specify a package
|
2015-06-22 12:10:54 +00:00
|
|
|
repository for `monolog/monolog`. How did that work? The answer is Packagist.
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2012-11-08 14:08:02 +00:00
|
|
|
[Packagist](https://packagist.org/) is the main package repository for
|
2013-07-01 00:52:10 +00:00
|
|
|
Composer, and it is enabled by default. Anything that is published on
|
2015-06-23 06:47:30 +00:00
|
|
|
Packagist is available automatically through Composer. Since
|
|
|
|
[Monolog is on Packagist](https://packagist.org/packages/monolog/monolog), we
|
|
|
|
can depend on it without having to specify any additional repositories.
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2012-04-13 12:35:13 +00:00
|
|
|
If we wanted to share `hello-world` with the world, we would publish it on
|
2015-06-22 12:10:54 +00:00
|
|
|
Packagist as well. Doing so is really easy.
|
2012-02-18 22:43:23 +00:00
|
|
|
|
2016-05-19 18:23:38 +00:00
|
|
|
You simply visit [Packagist](https://packagist.org) and hit the "Submit"
|
|
|
|
button. This will prompt you to sign up if you haven't already, and then
|
|
|
|
allows you to submit the URL to your VCS repository, at which point Packagist
|
|
|
|
will start crawling it. Once it is done, your package will be available to
|
|
|
|
anyone!
|
2012-03-07 16:35:53 +00:00
|
|
|
|
2012-04-13 12:35:13 +00:00
|
|
|
← [Basic usage](01-basic-usage.md) | [Command-line interface](03-cli.md) →
|