2012-04-13 10:13:52 +00:00
|
|
|
<!--
|
|
|
|
tagline: Host your own composer repository
|
|
|
|
-->
|
2012-08-29 20:30:47 +00:00
|
|
|
|
2012-03-23 19:58:12 +00:00
|
|
|
# Handling private packages with Satis
|
|
|
|
|
2013-03-13 09:59:02 +00:00
|
|
|
Satis is a static `composer` 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 private packages, or your own. It basically acts as
|
|
|
|
a micro-packagist. You can get it from
|
2012-04-19 17:55:56 +00:00
|
|
|
[GitHub](http://github.com/composer/satis) or install via CLI:
|
2013-01-22 16:35:20 +00:00
|
|
|
`composer.phar create-project composer/satis --stability=dev`.
|
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
|
2013-02-22 14:48:43 +00:00
|
|
|
configuration: a json file with an arbitrary name that lists your curated
|
|
|
|
[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.
|
|
|
|
|
2012-04-19 17:55:56 +00:00
|
|
|
{
|
2012-04-27 20:40:18 +00:00
|
|
|
"name": "My Repository",
|
|
|
|
"homepage": "http://packages.example.org",
|
2012-04-19 17:55:56 +00:00
|
|
|
"repositories": [
|
|
|
|
{ "type": "vcs", "url": "http://github.com/mycompany/privaterepo" },
|
|
|
|
{ "type": "vcs", "url": "http://svn.example.org/private/repo" },
|
|
|
|
{ "type": "vcs", "url": "http://github.com/mycompany/privaterepo2" }
|
|
|
|
],
|
|
|
|
"require-all": true
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
{
|
|
|
|
"repositories": [
|
|
|
|
{ "type": "vcs", "url": "http://github.com/mycompany/privaterepo" },
|
|
|
|
{ "type": "vcs", "url": "http://svn.example.org/private/repo" },
|
|
|
|
{ "type": "vcs", "url": "http://github.com/mycompany/privaterepo2" }
|
|
|
|
],
|
|
|
|
"require": {
|
|
|
|
"company/package": "*",
|
|
|
|
"company/package2": "*",
|
2012-04-19 17:55:56 +00:00
|
|
|
"company/package3": "2.0.0"
|
2012-03-23 19:58:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Once you did this, you just run `php bin/satis build <configuration file> <build dir>`.
|
|
|
|
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.
|
|
|
|
|
|
|
|
{
|
|
|
|
"repositories": [ { "type": "composer", "url": "http://packages.example.org/" } ],
|
|
|
|
"require": {
|
|
|
|
"company/package": "1.2.0",
|
|
|
|
"company/package2": "1.5.2",
|
|
|
|
"company/package3": "dev-master"
|
|
|
|
}
|
|
|
|
}
|
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):
|
|
|
|
|
|
|
|
{
|
|
|
|
"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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
Example using HTTP over SSL using a client certificate:
|
|
|
|
|
|
|
|
{
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "composer",
|
|
|
|
"url": "https://example.org",
|
|
|
|
"options": {
|
|
|
|
"ssl": {
|
|
|
|
"cert_file": "/home/composer/.ssl/composer.pem",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|