2012-04-13 10:13:52 +00:00
|
|
|
<!--
|
|
|
|
tagline: Host your own composer repository
|
|
|
|
-->
|
2012-08-29 20:30:47 +00:00
|
|
|
|
2014-09-10 15:05:11 +00:00
|
|
|
# Handling private packages with Satis or Toran Proxy
|
2012-03-23 19:58:12 +00:00
|
|
|
|
2014-09-10 15:05:11 +00:00
|
|
|
# Toran Proxy
|
|
|
|
|
2015-02-24 12:49:14 +00:00
|
|
|
[Toran Proxy](https://toranproxy.com/) is a commercial alternative to Satis
|
|
|
|
offering professional support as well as a web UI to manage everything and a
|
|
|
|
better integration with Composer. It also provides proxying/mirroring for git
|
|
|
|
repos and package zip files which makes installs faster and independent from
|
|
|
|
third party systems.
|
2014-09-10 15:05:11 +00:00
|
|
|
|
2015-02-24 12:49:14 +00:00
|
|
|
Toran's revenue is also used to pay for Composer and Packagist development and
|
|
|
|
hosting so using it is a good way to support open source financially. You can
|
|
|
|
find more information about how to set it up and use it on the [Toran Proxy](https://toranproxy.com/) website.
|
2014-09-10 15:05:11 +00:00
|
|
|
|
|
|
|
# Satis
|
|
|
|
|
2014-09-10 15:51:02 +00:00
|
|
|
Satis on the other hand is open source but only a static `composer`
|
2014-09-10 15:05:11 +00:00
|
|
|
repository generator. It is a bit like an ultra-lightweight, static file-based
|
|
|
|
version of packagist and can be used to host the metadata of your company's
|
2015-05-04 17:37:57 +00:00
|
|
|
private packages, or your own. You can get it from [GitHub](https://github.com/composer/satis)
|
2014-09-10 15:05:11 +00:00
|
|
|
or install via CLI:
|
2014-05-07 15:45:37 +00:00
|
|
|
`php composer.phar create-project composer/satis --stability=dev --keep-vcs`.
|
2012-03-23 19:58:12 +00:00
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
|
|
|
For example let's assume you have a few packages you want to reuse across your
|
|
|
|
company but don't really want to open-source. You would first define a Satis
|
2015-03-27 18:01:16 +00:00
|
|
|
configuration: a json file with an arbitrary name that lists your curated
|
2013-02-22 14:48:43 +00:00
|
|
|
[repositories](../05-repositories.md).
|
2012-03-23 19:58:12 +00:00
|
|
|
|
|
|
|
Here is an example configuration, you see that it holds a few VCS repositories,
|
2012-04-19 17:55:56 +00:00
|
|
|
but those could be any types of [repositories](../05-repositories.md). Then it
|
|
|
|
uses `"require-all": true` which selects all versions of all packages in the
|
|
|
|
repositories you defined.
|
|
|
|
|
2013-03-13 09:59:02 +00:00
|
|
|
The default file Satis looks for is `satis.json` in the root of the repository.
|
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"name": "My Repository",
|
|
|
|
"homepage": "http://packages.example.org",
|
|
|
|
"repositories": [
|
2015-05-04 17:37:57 +00:00
|
|
|
{ "type": "vcs", "url": "https://github.com/mycompany/privaterepo" },
|
2014-05-19 10:17:07 +00:00
|
|
|
{ "type": "vcs", "url": "http://svn.example.org/private/repo" },
|
2015-05-04 17:37:57 +00:00
|
|
|
{ "type": "vcs", "url": "https://github.com/mycompany/privaterepo2" }
|
2014-05-19 10:17:07 +00:00
|
|
|
],
|
|
|
|
"require-all": true
|
|
|
|
}
|
|
|
|
```
|
2012-04-19 17:55:56 +00:00
|
|
|
|
|
|
|
If you want to cherry pick which packages you want, you can list all the packages
|
|
|
|
you want to have in your satis repository inside the classic composer `require` key,
|
|
|
|
using a `"*"` constraint to make sure all versions are selected, or another
|
|
|
|
constraint if you want really specific versions.
|
2012-03-23 19:58:12 +00:00
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"repositories": [
|
2015-05-04 17:37:57 +00:00
|
|
|
{ "type": "vcs", "url": "https://github.com/mycompany/privaterepo" },
|
2014-05-19 10:17:07 +00:00
|
|
|
{ "type": "vcs", "url": "http://svn.example.org/private/repo" },
|
2015-05-04 17:37:57 +00:00
|
|
|
{ "type": "vcs", "url": "https://github.com/mycompany/privaterepo2" }
|
2014-05-19 10:17:07 +00:00
|
|
|
],
|
|
|
|
"require": {
|
|
|
|
"company/package": "*",
|
|
|
|
"company/package2": "*",
|
|
|
|
"company/package3": "2.0.0"
|
2012-03-23 19:58:12 +00:00
|
|
|
}
|
2014-05-19 10:17:07 +00:00
|
|
|
}
|
|
|
|
```
|
2012-03-23 19:58:12 +00:00
|
|
|
|
2015-01-30 10:35:39 +00:00
|
|
|
Once you've done this, you just run `php bin/satis build <configuration file> <build dir>`.
|
2012-03-23 19:58:12 +00:00
|
|
|
For example `php bin/satis build config.json web/` would read the `config.json`
|
|
|
|
file and build a static repository inside the `web/` directory.
|
|
|
|
|
|
|
|
When you ironed out that process, what you would typically do is run this
|
|
|
|
command as a cron job on a server. It would then update all your package info
|
|
|
|
much like Packagist does.
|
|
|
|
|
|
|
|
Note that if your private packages are hosted on GitHub, your server should have
|
|
|
|
an ssh key that gives it access to those packages, and then you should add
|
|
|
|
the `--no-interaction` (or `-n`) flag to the command to make sure it falls back
|
|
|
|
to ssh key authentication instead of prompting for a password. This is also a
|
|
|
|
good trick for continuous integration servers.
|
|
|
|
|
|
|
|
Set up a virtual-host that points to that `web/` directory, let's say it is
|
2013-03-13 10:03:44 +00:00
|
|
|
`packages.example.org`. Alternatively, with PHP >= 5.4.0, you can use the built-in
|
|
|
|
CLI server `php -S localhost:port -t satis-output-dir/` for a temporary solution.
|
2012-03-23 19:58:12 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
In your projects all you need to add now is your own composer repository using
|
|
|
|
the `packages.example.org` as URL, then you can require your private packages and
|
|
|
|
everything should work smoothly. You don't need to copy all your repositories
|
|
|
|
in every project anymore. Only that one unique repository that will update
|
|
|
|
itself.
|
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"repositories": [ { "type": "composer", "url": "http://packages.example.org/" } ],
|
|
|
|
"require": {
|
|
|
|
"company/package": "1.2.0",
|
|
|
|
"company/package2": "1.5.2",
|
|
|
|
"company/package3": "dev-master"
|
2012-03-23 19:58:12 +00:00
|
|
|
}
|
2014-05-19 10:17:07 +00:00
|
|
|
}
|
|
|
|
```
|
2012-10-03 18:32:00 +00:00
|
|
|
|
|
|
|
### Security
|
|
|
|
|
|
|
|
To secure your private repository you can host it over SSH or SSL using a client
|
|
|
|
certificate. In your project you can use the `options` parameter to specify the
|
|
|
|
connection options for the server.
|
|
|
|
|
|
|
|
Example using a custom repository using SSH (requires the SSH2 PECL extension):
|
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "composer",
|
|
|
|
"url": "ssh2.sftp://example.org",
|
|
|
|
"options": {
|
|
|
|
"ssh2": {
|
|
|
|
"username": "composer",
|
|
|
|
"pubkey_file": "/home/composer/.ssh/id_rsa.pub",
|
|
|
|
"privkey_file": "/home/composer/.ssh/id_rsa"
|
2012-10-03 18:32:00 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-19 10:17:07 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
2012-10-03 18:32:00 +00:00
|
|
|
|
2015-05-04 17:37:57 +00:00
|
|
|
> **Tip:** See [ssh2 context options](https://www.php.net/manual/en/wrappers.ssh2.php#refsect1-wrappers.ssh2-options) for more information.
|
2013-04-13 16:24:03 +00:00
|
|
|
|
2012-10-03 18:32:00 +00:00
|
|
|
Example using HTTP over SSL using a client certificate:
|
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "composer",
|
|
|
|
"url": "https://example.org",
|
|
|
|
"options": {
|
|
|
|
"ssl": {
|
|
|
|
"local_cert": "/home/composer/.ssl/composer.pem"
|
2012-10-03 18:32:00 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-19 10:17:07 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
2013-03-30 20:21:14 +00:00
|
|
|
|
2015-05-04 17:37:57 +00:00
|
|
|
> **Tip:** See [ssl context options](https://www.php.net/manual/en/context.ssl.php) for more information.
|
2013-04-13 16:24:03 +00:00
|
|
|
|
2015-03-27 18:01:16 +00:00
|
|
|
Example using a custom HTTP Header field for token authentication:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "composer",
|
|
|
|
"url": "https://example.org",
|
|
|
|
"options": {
|
|
|
|
"http": {
|
|
|
|
"header": [
|
|
|
|
"API-TOKEN: YOUR-API-TOKEN"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
### Authentication
|
2014-08-21 09:17:08 +00:00
|
|
|
|
2015-04-15 01:21:44 +00:00
|
|
|
When your private repositories are password protected, you can store the authentication details permanently.
|
2015-03-27 18:01:16 +00:00
|
|
|
The first time Composer needs to authenticate against some domain it will prompt you for a username/password
|
|
|
|
and then you will be asked whether you want to store it.
|
2014-08-21 09:17:08 +00:00
|
|
|
|
2015-03-27 18:01:16 +00:00
|
|
|
The storage can be done either globally in the `COMPOSER_HOME/auth.json` file (`COMPOSER_HOME` defaults to
|
2014-08-21 09:17:08 +00:00
|
|
|
`~/.composer` or `%APPDATA%/Composer` on Windows) or also in the project directory directly sitting besides your
|
|
|
|
composer.json.
|
|
|
|
|
2015-03-27 18:01:16 +00:00
|
|
|
You can also configure these by hand using the config command if you need to configure a production machine
|
2014-08-21 09:17:08 +00:00
|
|
|
to be able to run non-interactive installs. For example to enter credentials for example.org one could type:
|
|
|
|
|
|
|
|
composer config http-basic.example.org username password
|
|
|
|
|
|
|
|
That will store it in the current directory's auth.json, but if you want it available globally you can use the
|
|
|
|
`--global` (`-g`) flag.
|
|
|
|
|
2013-03-30 20:21:14 +00:00
|
|
|
### Downloads
|
|
|
|
|
2013-03-30 20:48:18 +00:00
|
|
|
When GitHub or BitBucket repositories are mirrored on your local satis, the build process will include
|
2013-03-30 20:21:14 +00:00
|
|
|
the location of the downloads these platforms make available. This means that the repository and your setup depend
|
|
|
|
on the availability of these services.
|
|
|
|
|
|
|
|
At the same time, this implies that all code which is hosted somewhere else (on another service or for example in
|
|
|
|
Subversion) will not have downloads available and thus installations usually take a lot longer.
|
|
|
|
|
|
|
|
To enable your satis installation to create downloads for all (Git, Mercurial and Subversion) your packages, add the
|
|
|
|
following to your `satis.json`:
|
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"archive": {
|
|
|
|
"directory": "dist",
|
|
|
|
"format": "tar",
|
|
|
|
"prefix-url": "https://amazing.cdn.example.org",
|
|
|
|
"skip-dev": true
|
2013-03-30 20:21:14 +00:00
|
|
|
}
|
2014-05-19 10:17:07 +00:00
|
|
|
}
|
|
|
|
```
|
2013-03-30 20:21:14 +00:00
|
|
|
|
|
|
|
#### Options explained
|
|
|
|
|
|
|
|
* `directory`: the location of the dist files (inside the `output-dir`)
|
2013-03-30 20:48:18 +00:00
|
|
|
* `format`: optional, `zip` (default) or `tar`
|
|
|
|
* `prefix-url`: optional, location of the downloads, homepage (from `satis.json`) followed by `directory` by default
|
|
|
|
* `skip-dev`: optional, `false` by default, when enabled (`true`) satis will not create downloads for branches
|
2013-03-30 20:21:14 +00:00
|
|
|
|
2013-03-30 20:48:18 +00:00
|
|
|
Once enabled, all downloads (include those from GitHub and BitBucket) will be replaced with a _local_ version.
|
2013-03-30 20:21:14 +00:00
|
|
|
|
|
|
|
#### prefix-url
|
|
|
|
|
|
|
|
Prefixing the URL with another host is especially helpful if the downloads end up in a private Amazon S3
|
2013-03-30 20:48:18 +00:00
|
|
|
bucket or on a CDN host. A CDN would drastically improve download times and therefore package installation.
|
2013-03-30 20:21:14 +00:00
|
|
|
|
2015-05-04 17:37:57 +00:00
|
|
|
Example: A `prefix-url` of `https://my-bucket.s3.amazonaws.com` (and `directory` set to `dist`) creates download URLs
|
|
|
|
which look like the following: `https://my-bucket.s3.amazonaws.com/dist/vendor-package-version-ref.zip`.
|
2013-10-15 13:07:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
### Resolving dependencies
|
|
|
|
|
|
|
|
It is possible to make satis automatically resolve and add all dependencies for your projects. This can be used
|
|
|
|
with the Downloads functionality to have a complete local mirror of packages. Just add the following
|
|
|
|
to your `satis.json`:
|
|
|
|
|
2014-05-19 10:17:07 +00:00
|
|
|
```json
|
|
|
|
{
|
2014-05-23 08:05:00 +00:00
|
|
|
"require-dependencies": true,
|
|
|
|
"require-dev-dependencies": true
|
2014-05-19 10:17:07 +00:00
|
|
|
}
|
|
|
|
```
|
2013-10-15 13:07:05 +00:00
|
|
|
|
|
|
|
When searching for packages, satis will attempt to resolve all the required packages from the listed repositories.
|
|
|
|
Therefore, if you are requiring a package from Packagist, you will need to define it in your `satis.json`.
|
2014-05-23 08:05:00 +00:00
|
|
|
|
|
|
|
Dev dependencies are packaged only if the `require-dev-dependencies` parameter is set to true.
|