├── .gitignore
├── .travis.yml
├── LICENSE
├── README.md
├── Tests
└── CustomInstallerTest.php
├── composer.json
├── phpcs.xml
├── phpunit.xml.dist
└── src
├── Configuration.php
├── ConfigurationAlpha1.php
├── CustomInstaller.php
└── CustomInstallerPlugin.php
/.gitignore:
--------------------------------------------------------------------------------
1 | composer.lock
2 | vendor/
3 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: php
2 | php:
3 | - "7.3"
4 |
5 | matrix:
6 | - COMPOSER_CHANNEL=1
7 | - COMPOSER_CHANNEL=2
8 |
9 | before_install:
10 | - composer self-update "--${COMPOSER_CHANNEL}"
11 |
12 | install:
13 | - composer install --no-interaction --prefer-source
14 |
15 | script:
16 | - ./vendor/bin/phpcs .
17 | - ./vendor/bin/phpunit
18 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "{}"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright {yyyy} {name of copyright owner}
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Composer Custom Type Installer
2 | ==============================
3 | [](https://travis-ci.org/davidbarratt/custom-installer)
4 |
5 | Adds a root-level custom [type](https://getcomposer.org/doc/04-schema.md#type) installer path to composer.json. Any custom type can be used to define a path the [type](https://getcomposer.org/doc/04-schema.md#type) should be installed in.
6 |
7 | ## Installation
8 | Simply require this library in your composer.json file. Typically this will be added as a dependency of the custom [type](https://getcomposer.org/doc/04-schema.md#type) to ensure that the library is loaded before the library that needs it. However, this can be added to the root composer.json, as long as it goes before any library that needs it.
9 | ```json
10 | {
11 | "require": {
12 | "davidbarratt/custom-installer": "1.0.*@dev"
13 | }
14 | }
15 | ```
16 |
17 | ## Usage
18 | The added parameter(s) are only allowed on the root to avoid conflicts between multiple libraries. This also prevents a project owner from having a directory accidentally wiped out by a library. Note: Each package will go in it’s respective folder in the order in which they are installed.
19 |
20 | The configuration has to be added in `custom-installer` of `composer.json`'s `extra` section. It is similar to [Composer installer's installation paths](https://github.com/composer/installers#custom-install-paths).
21 |
22 | ### Pattern syntax
23 |
24 | The key of the the configuration array is the path pattern. You can use some
25 | replacement tokens:
26 |
27 | - `{$name}`: The name of the package (e.g. `yaml` of `symfony/yaml`)
28 | - `{$vendor}`: The vendor of the package (e.g. `symfony` of `symfony/yaml`)
29 | - `{$type}`: for the composer package type (e.g. `library`, `drupal-module`)
30 |
31 | ### Package filters
32 |
33 | The value of the configuration array has to be an array. It holds the package
34 | filter for the given pattern. The pattern will be applied if any filter matches.
35 |
36 | #### Package type filter
37 |
38 | With `type:[package-type]` you can define a pattern per package type. You can use
39 | any custom package type and [are not limited to a predefined set](https://github.com/composer/installers#should-we-allow-dynamic-package-types-or-paths-no).
40 |
41 | Composer specific package types `metapackage` or `composer-plugin` will never be
42 | handled by _Custom Installer_.
43 |
44 | Example: `type:custom-library` for package type `custom-library`
45 |
46 | #### Package name filter
47 |
48 | You can specify a pattern per full package name (`[vendor]/[name]`).
49 |
50 | _Custom Installer_ will only handle a specific package if a configuration exists
51 | that also handles the package type in general.
52 |
53 | ### Examples
54 |
55 | ```json
56 | {
57 | "extra": {
58 | "custom-installer": {
59 | "web/": ["type:drupal-core"],
60 | "web/sites/{$name}/": ["type:drupal-site"],
61 | "custom/{$type}/{$vendor}/{$name}/": ["type:random-type"],
62 | "vendor/{$vendor}/{$name}/": ["type:library"],
63 | "web/sites/all/libraries/{$name}/": [
64 | "type:component",
65 | "ckeditor/ckeditor",
66 | "flesler/jquery.scrollto"
67 | ],
68 | "custom-folder-for-single-package": ["myvendorname/single-package"],
69 | }
70 | }
71 | }
72 | ```
73 |
74 | In the example we want to make sure _CKEditor_ and _Jquery ScrollTo_ will be
75 | placed in `web/sites/all/libraries`. Both packages are of of package type
76 | `library`. In order to change the path of those packages, we must declare a
77 | fallback for the package type `library`. It shall stay in the default vendor
78 | location (as `library` is the default composer package type). If you do not do
79 | that the custom installer cannot handle the single packages (`ckeditor` and
80 | `flesler/jquery.scrollto` ) due to [the way composer installer plugins work](https://github.com/composer/composer/pull/4059).
81 |
--------------------------------------------------------------------------------
/Tests/CustomInstallerTest.php:
--------------------------------------------------------------------------------
1 |
6 | * @copyright Copyright (c) 2014, David Barratt
7 | */
8 | namespace DavidBarratt\CustomInstaller\Tests;
9 |
10 | use DavidBarratt\CustomInstaller\CustomInstaller;
11 | use Composer\Config;
12 | use Composer\Composer;
13 | use Composer\Package\Package;
14 | use Composer\Package\RootPackage;
15 | use PHPUnit_Framework_TestCase;
16 |
17 | class CustomInstallerTest extends PHPUnit_Framework_TestCase
18 | {
19 |
20 | /**
21 | * Tests installation path for given package/spec combination.
22 | *
23 | * @param string $name Full package name (including vendor)
24 | * @param string $type Composer package type
25 | * @param array $spec Custom-Installer configuration
26 | * @param string $expected Expected path
27 | *
28 | * @dataProvider dataForInstallPath
29 | */
30 | public function testInstallPath($name, $type, $spec, $expected)
31 | {
32 |
33 | $composer = new Composer();
34 | $config = new Config(false, realpath('.'));
35 | $composer->setConfig($config);
36 |
37 | $repository = $this->getMock('Composer\Repository\InstalledRepositoryInterface');
38 | $io = $this->getMock('Composer\IO\IOInterface');
39 |
40 | $installer = new CustomInstaller($io, $composer);
41 | $package = new Package($name, '1.0.0', '1.0.0');
42 | $package->setType($type);
43 | $consumerPackage = new RootPackage('foo/bar', '1.0.0', '1.0.0');
44 | $composer->setPackage($consumerPackage);
45 | $consumerPackage->setExtra(array(
46 | 'custom-installer' => $spec,
47 | ));
48 | $result = $installer->getInstallPath($package);
49 | $this->assertEquals($expected, $result);
50 | }
51 |
52 | /**
53 | * Data provider for testing multiple install paths.
54 | *
55 | * @return array
56 | */
57 | public function dataForInstallPath()
58 | {
59 | return array(
60 | array(
61 | 'davidbarratt/davidwbarratt',
62 | 'drupal-site',
63 | array('drupal-site' => 'sites/{$name}/'),
64 | 'sites/davidwbarratt/',
65 | ),
66 | array(
67 | 'awesome/package',
68 | 'custom-type',
69 | array('custom-type' => 'custom/{$vendor}/{$name}/'),
70 | 'custom/awesome/package/',
71 | ),
72 | array(
73 | 'drupal/core',
74 | 'drupal-core',
75 | array('drupal-core' => 'web/'),
76 | 'web/',
77 | ),
78 | // Without spec.
79 | array(
80 | 'package/without-spec',
81 | 'library',
82 | array(),
83 | realpath('.') . '/vendor/package/without-spec',
84 | ),
85 | // New format
86 | array(
87 | 'config/with-new-format',
88 | 'custom-type',
89 | array(
90 | 'custom/{$type}/{$vendor}/{$name}/' => array('type:custom-type'),
91 | ),
92 | 'custom/custom-type/config/with-new-format/',
93 | ),
94 | // Per package
95 | array(
96 | 'config/per-package',
97 | 'custom-type',
98 | array(
99 | 'custom/{$vendor}/{$name}/' => array('config/per-package'),
100 | ),
101 | 'custom/config/per-package/',
102 | ),
103 | // Package over type
104 | array(
105 | 'config/package-over-type',
106 | 'custom-type',
107 | array(
108 | 'type-folder/{$vendor}/{$name}/' => array('type:custom-type'),
109 | 'package-folder/{$vendor}/{$name}/' => array('config/package-over-type'),
110 | ),
111 | 'package-folder/config/package-over-type/',
112 | ),
113 | );
114 | }
115 | }
116 |
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "davidbarratt/custom-installer",
3 | "description": "Install custom types into custom locations.",
4 | "type": "composer-plugin",
5 | "license": "Apache-2.0",
6 | "homepage": "https://github.com/davidbarratt/custom-installer",
7 | "autoload": {
8 | "psr-4": {
9 | "DavidBarratt\\CustomInstaller\\": "src"
10 | }
11 | },
12 | "extra": {
13 | "class": "DavidBarratt\\CustomInstaller\\CustomInstallerPlugin"
14 | },
15 | "require": {
16 | "composer-plugin-api": "~1 || ~2"
17 | },
18 | "require-dev": {
19 | "composer/composer": "~1.0@dev || ~2.0@dev",
20 | "phpunit/phpunit": "~4.1",
21 | "squizlabs/php_codesniffer": "~2.5"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/phpcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | The coding standard for Custom Installer.
4 | vendor/
5 |
6 |
7 |
--------------------------------------------------------------------------------
/phpunit.xml.dist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
11 | ./Tests/
12 |
13 |
14 |
15 |
16 |
17 | ./
18 |
19 | ./Tests
20 | ./vendor
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/src/Configuration.php:
--------------------------------------------------------------------------------
1 | convert($extra);
29 | }
30 |
31 | /**
32 | * Retrieve the pattern for the given package.
33 | *
34 | * @param \Composer\Package\PackageInterface $package
35 | *
36 | * @return string
37 | */
38 | public function getPattern(PackageInterface $package)
39 | {
40 | if (isset($this->packages[$package->getName()])) {
41 | return $this->packages[$package->getName()];
42 | } elseif (isset($this->packages[$package->getPrettyName()])) {
43 | return $this->packages[$package->getPrettyName()];
44 | } elseif (isset($this->types[$package->getType()])) {
45 | return $this->types[$package->getType()];
46 | }
47 | }
48 |
49 | /**
50 | * Checks if the given configuration will handle the package type.
51 | *
52 | * @param string $package_type
53 | *
54 | * @return bool
55 | */
56 | public function isPackageTypeSupported($packageType)
57 | {
58 | return isset($this->types[$packageType]);
59 | }
60 |
61 | /**
62 | * Converts the given extra data to relevant configuration values.
63 | */
64 | protected function convert($extra)
65 | {
66 | if (isset($extra['custom-installer'])) {
67 | foreach ($extra['custom-installer'] as $pattern => $specs) {
68 | foreach ($specs as $spec) {
69 | $match = array();
70 | // Type matching
71 | if (preg_match('/^type:(.*)$/', $spec, $match)) {
72 | $this->types[$match[1]] = $pattern;
73 | } // Else it must be the package name.
74 | else {
75 | $this->packages[$spec] = $pattern;
76 | }
77 | }
78 | }
79 | }
80 | }
81 | }
82 |
--------------------------------------------------------------------------------
/src/ConfigurationAlpha1.php:
--------------------------------------------------------------------------------
1 | types = $extra['custom-installer'];
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/src/CustomInstaller.php:
--------------------------------------------------------------------------------
1 |
6 | * @copyright Copyright (c) 2014, David Barratt
7 | */
8 | namespace DavidBarratt\CustomInstaller;
9 |
10 | use Composer\Installer\LibraryInstaller;
11 | use Composer\Package\PackageInterface;
12 |
13 | class CustomInstaller extends LibraryInstaller
14 | {
15 |
16 | /**
17 | * @var \DavidBarratt\CustomInstaller\Configuration
18 | */
19 | protected $configuration;
20 |
21 | /**
22 | * {@inheritDoc}
23 | */
24 | public function getInstallPath(PackageInterface $package)
25 | {
26 | $configuration = $this->getPluginConfiguration();
27 | $pattern = $configuration->getPattern($package);
28 | if ($pattern) {
29 | $basePath = $this->buildPath($pattern, $this->getPackageReplacementTokens($package));
30 | $targetDir = $package->getTargetDir();
31 | return $basePath . ($targetDir ? '/'.$targetDir : '');
32 | } else {
33 | return parent::getInstallPath($package);
34 | }
35 | }
36 |
37 | /**
38 | * {@inheritdoc}
39 | */
40 | public function supports($packageType)
41 | {
42 | // The installer may support any package type, but we allways skip some
43 | // composer specific types with special handling.
44 | if (in_array($packageType, array('metapackage', 'composer-plugin'))) {
45 | return false;
46 | }
47 |
48 | return $this->getPluginConfiguration()->isPackageTypeSupported($packageType);
49 | }
50 |
51 | /**
52 | * Retrieve replacement tokens for the given package.
53 | *
54 | * @param \Composer\Package\PackageInterface $package
55 | *
56 | * @return array
57 | */
58 | protected function getPackageReplacementTokens(PackageInterface $package)
59 | {
60 | $vars = array(
61 | '{$type}' => $package->getType(),
62 | );
63 |
64 | $prettyName = $package->getPrettyName();
65 | if (strpos($prettyName, '/') !== false) {
66 | $pieces = explode('/', $prettyName);
67 | $vars['{$vendor}'] = $pieces[0];
68 | $vars['{$name}'] = $pieces[1];
69 | } else {
70 | $vars['{$vendor}'] = '';
71 | $vars['{$name}'] = $prettyName;
72 | }
73 |
74 | return $vars;
75 | }
76 |
77 | /**
78 | * Replace path pattern with replacement tokens.
79 | *
80 | * @param string $pattern
81 | * @param array $tokens
82 | * @return string
83 | */
84 | protected function buildPath($pattern, array $tokens = array())
85 | {
86 | return strtr($pattern, $tokens);
87 | }
88 |
89 | /**
90 | * Retrieve plugin configuration object.
91 | *
92 | * @return \DavidBarratt\CustomInstaller\Configuration
93 | */
94 | protected function getPluginConfiguration()
95 | {
96 | if (!isset($this->configuration)) {
97 | $extra = $this->composer->getPackage()->getExtra();
98 |
99 | // We check if we need to support the legacy configuration.
100 | $legacy = false;
101 | if (isset($extra['custom-installer'])) {
102 | // Legacy
103 | $legacy = true;
104 | foreach ($extra['custom-installer'] as $key => $val) {
105 | if (is_array($val)) {
106 | $legacy = false;
107 | break;
108 | }
109 | }
110 | }
111 |
112 | if ($legacy) {
113 | $this->configuration = new ConfigurationAlpha1($extra);
114 | } else {
115 | $this->configuration = new Configuration($extra);
116 | }
117 | }
118 |
119 | return $this->configuration;
120 | }
121 | }
122 |
--------------------------------------------------------------------------------
/src/CustomInstallerPlugin.php:
--------------------------------------------------------------------------------
1 |
6 | * @copyright Copyright (c) 2014, David Barratt
7 | */
8 | namespace DavidBarratt\CustomInstaller;
9 |
10 | use Composer\Composer;
11 | use Composer\IO\IOInterface;
12 | use Composer\Plugin\PluginInterface;
13 |
14 | class CustomInstallerPlugin implements PluginInterface
15 | {
16 | public function activate(Composer $composer, IOInterface $io)
17 | {
18 | $installer = new CustomInstaller($io, $composer);
19 | $composer->getInstallationManager()->addInstaller($installer);
20 | }
21 |
22 | public function deactivate(Composer $composer, IOInterface $io)
23 | {
24 | }
25 |
26 | public function uninstall(Composer $composer, IOInterface $io)
27 | {
28 | }
29 | }
30 |
--------------------------------------------------------------------------------