2012-04-07 16:27:54 +00:00
|
|
|
# Custom installers
|
|
|
|
|
|
|
|
## Synopsis
|
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
At times it may be necessary for a package to require additional actions during
|
|
|
|
installation, such as installing packages outside of the default `vendor`
|
|
|
|
library.
|
2012-04-07 16:27:54 +00:00
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
In these cases you could consider creating a Custom Installer to handle your
|
|
|
|
specific logic.
|
2012-04-07 16:27:54 +00:00
|
|
|
|
|
|
|
## Calling a Custom Installer
|
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
Suppose that your project already has a Custom Installer for specific modules
|
|
|
|
then invoking that installer is a matter of defining the correct [type][1] in
|
|
|
|
your package file.
|
2012-04-07 16:27:54 +00:00
|
|
|
|
|
|
|
> _See the next chapter for an instruction how to create Custom Installers._
|
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
Every Custom Installer defines which [type][1] string it will recognize. Once
|
|
|
|
recognized it will completely override the default installer and only apply its
|
|
|
|
own logic.
|
2012-04-07 16:27:54 +00:00
|
|
|
|
|
|
|
An example use-case would be:
|
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
> phpDocumentor features Templates that need to be installed outside of the
|
|
|
|
> default /vendor folder structure. As such they have chosen to adopt the
|
|
|
|
> `phpdocumentor-template` [type][1] and create a Custom Installer to send
|
|
|
|
> these templates to the correct folder.
|
2012-04-07 16:27:54 +00:00
|
|
|
|
|
|
|
An example composer.json of such a template would be:
|
|
|
|
|
|
|
|
{
|
2012-04-07 16:46:58 +00:00
|
|
|
"name": "phpdocumentor/template-responsive",
|
2012-04-07 16:27:54 +00:00
|
|
|
"type": "phpdocumentor-template",
|
|
|
|
}
|
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
With the package definition shown in the example will any project that includes
|
|
|
|
this package try to find an appropriate installer and use that to execute this
|
|
|
|
[type][1].
|
2012-04-07 16:27:54 +00:00
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
> **IMPORTANT**: the host project will not recognize the [type][1] if the
|
|
|
|
> installer's package is not included. Thus a composer.json consuming a template
|
|
|
|
> package will always need to _require_ the template's installer as well.
|
2012-04-07 16:27:54 +00:00
|
|
|
|
|
|
|
## Creating an Installer
|
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
A Custom Installer is a defined as a class that implements the
|
|
|
|
[\Composer\Installer\InstallerInterface][3] and is contained in a Composer
|
|
|
|
package that has the [type][1] `composer-installer`.
|
2012-04-07 16:27:54 +00:00
|
|
|
|
|
|
|
A basic Installer would thus compose of two files:
|
|
|
|
|
|
|
|
1. the package file: composer.json
|
|
|
|
2. The Installer class, i.e.: \Composer\Installer\MyInstaller.php
|
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
> **NOTE**: _The namespace does not need to be \Composer\Installer, it may be
|
|
|
|
> anything that you would want._
|
2012-04-07 16:27:54 +00:00
|
|
|
|
|
|
|
### composer.json
|
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
The package file is the same as any other package file but with the following
|
|
|
|
requirements:
|
2012-04-07 16:27:54 +00:00
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
1. the [type][1] attribute must be `composer-installer`.
|
|
|
|
2. the [extra][2] attribute must contain an element `class` defining the
|
|
|
|
class name of the installer (including namespace).
|
2012-04-07 16:27:54 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
{
|
|
|
|
"name": "phpdocumentor/template-installer",
|
|
|
|
"type": "composer-installer",
|
|
|
|
"license": "MIT",
|
|
|
|
"autoload": {
|
|
|
|
"psr-0": {"phpDocumentor\\Composer": "src/"}
|
|
|
|
},
|
|
|
|
"extra": {"class": "\\phpDocumentor\\Composer\\TemplateInstaller"}
|
|
|
|
}
|
|
|
|
|
|
|
|
### The Custom Installer class
|
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
The class that executes the custom installation should implement the
|
|
|
|
[\Composer\Installer\InstallerInterface][3] (or extend another installer that
|
|
|
|
implements that interface).
|
2012-04-07 16:27:54 +00:00
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
The class may be placed in any location and have any name, as long as it
|
|
|
|
matches the `extra.class` element in the package definition.
|
|
|
|
It will also define the [type][1] string as it will be recognized by packages
|
|
|
|
that will use this installer in the `supports()` method.
|
2012-04-07 16:27:54 +00:00
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
> **NOTE**: _choose your [type][1] name carefully, it is recommended to follow
|
|
|
|
> the format: `vendor-type`_. For example: `phpdocumentor-template`.
|
2012-04-07 16:27:54 +00:00
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
The InstallerInterface class defines the following methods (please see the
|
|
|
|
source for the exact signature):
|
2012-04-07 16:27:54 +00:00
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
* **supports()**, here you test whether the passed [type][1] matches the name
|
|
|
|
that you declared for this installer (see the example).
|
2012-04-07 16:27:54 +00:00
|
|
|
* **isInstalled()**, determines whether a supported package is installed or not.
|
2012-04-07 16:46:58 +00:00
|
|
|
* **install()**, here you can determine the actions that need to be executed
|
|
|
|
upon installation.
|
|
|
|
* **update()**, here you define the behavior that is required when Composer is
|
|
|
|
invoked with the update argument.
|
|
|
|
* **uninstall()**, here you can determine the actions that need to be executed
|
|
|
|
when the package needs to be removed.
|
|
|
|
* **getInstallPath()**, this method should return the location where the
|
|
|
|
package is to be installed, _relative from the location of composer.json._
|
2012-04-07 16:27:54 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
namespace phpDocumentor\Composer;
|
|
|
|
|
|
|
|
use Composer\Package\PackageInterface;
|
|
|
|
|
|
|
|
class TemplateInstaller extends \Composer\Installer\LibraryInstaller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function getInstallPath(PackageInterface $package)
|
|
|
|
{
|
2012-04-07 16:46:58 +00:00
|
|
|
$prefix = substr($package->getPrettyName(), 0, 23);
|
|
|
|
if ('phpdocumentor/template-' != $prefix) {
|
2012-04-07 16:27:54 +00:00
|
|
|
throw new \InvalidArgumentException(
|
2012-04-07 16:46:58 +00:00
|
|
|
'Unable to install template, phpdocumentor templates '
|
|
|
|
.'should always start their package name with '
|
|
|
|
.'"phpdocumentor/template-"'
|
2012-04-07 16:27:54 +00:00
|
|
|
);
|
|
|
|
}
|
2012-04-07 16:46:58 +00:00
|
|
|
|
2012-04-07 16:27:54 +00:00
|
|
|
return 'data/templates/'.substr($package->getPrettyName(), 23);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function supports($packageType)
|
|
|
|
{
|
|
|
|
return (bool)('phpdocumentor-template' === $packageType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
The example demonstrates that it is quite simple to extend the
|
|
|
|
[\Composer\Installer\LibraryInstaller][4] class to strip a prefix
|
|
|
|
(`phpdocumentor/template-`) and use the remaining part to assemble a completely
|
|
|
|
different installation path.
|
2012-04-07 16:27:54 +00:00
|
|
|
|
2012-04-07 16:46:58 +00:00
|
|
|
> _Instead of installing to `/vendor` will any package installed using this
|
|
|
|
> Installer be put in the `/data/templates/<stripped name>` folder._
|
2012-04-07 16:27:54 +00:00
|
|
|
|
|
|
|
[1]: http://getcomposer.org/doc/04-schema.md#type
|
|
|
|
[2]: http://getcomposer.org/doc/04-schema.md#extra
|
|
|
|
[3]: https://github.com/composer/composer/blob/master/src/Composer/Installer/InstallerInterface.php
|
|
|
|
[4]: https://github.com/composer/composer/blob/master/src/Composer/Installer/LibraryInstaller.php
|