Skip to content

Commit

Permalink
Make installer plural to be parallel with composer/installers
Browse files Browse the repository at this point in the history
  • Loading branch information
balbuf committed Jan 7, 2016
1 parent 5816785 commit efe02ce
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Composer Installer Extender
# Composer Installers Extender

The `composer-installer-extender` is a plugin for [Composer](https://getcomposer.org/) that allows
The `composer-installers-extender` is a plugin for [Composer](https://getcomposer.org/) that allows
any package to be installed to a directory other than the default `vendor/` directory within
the repo on a package-by-package basis. This plugin extends the [`composer/installers`](https://github.com/composer/installers)
plugin to allow any arbitrary package type to be handled by their custom installer and specified explicitly in the
Expand All @@ -12,9 +12,9 @@ allows additional package types to be handled by `composer/installers`, benefiti
mapping and token replacement of package properties.

## How to Use
Add `oomphinc/composer-installer-extender` as a dependency of your project.
Add `oomphinc/composer-installers-extender` as a dependency of your project.
```sh
composer require oomphinc/composer-installer-extender
composer require oomphinc/composer-installers-extender
```
`composer/installers` is a dependency of this plugin and will be automatically required as well.

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "oomphinc/composer-installer-extender",
"name": "oomphinc/composer-installers-extender",
"description": "Extend the composer/installers plugin to accept any arbitrary package type.",
"homepage": "http://www.oomphinc.com/",
"type": "composer-plugin",
Expand All @@ -12,13 +12,13 @@
}
],
"support": {
"issues": "https://github.com/oomphinc/composer-installer-extender/issues"
"issues": "https://github.com/oomphinc/composer-installers-extender/issues"
},
"autoload": {
"psr-4": {"OomphInc\\ComposerInstallerExtender\\": "src/"}
"psr-4": {"OomphInc\\ComposerInstallersExtender\\": "src/"}
},
"extra": {
"class": "OomphInc\\ComposerInstallerExtender\\Plugin"
"class": "OomphInc\\ComposerInstallersExtender\\Plugin"
},
"require": {
"composer-plugin-api": "1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Installer.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace OomphInc\ComposerInstallerExtender;
namespace OomphInc\ComposerInstallersExtender;

use Composer\Installer\LibraryInstaller;
use Composer\Installers\Installer as ComposerInstaller;
Expand Down
2 changes: 1 addition & 1 deletion src/InstallerHelper.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace OomphInc\ComposerInstallerExtender;
namespace OomphInc\ComposerInstallersExtender;

use Composer\Installers\BaseInstaller;

Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace OomphInc\ComposerInstallerExtender;
namespace OomphInc\ComposerInstallersExtender;

use Composer\Composer;
use Composer\IO\IOInterface;
Expand Down

0 comments on commit efe02ce

Please sign in to comment.