Skip to content

Commit

Permalink
Installer for TAO extensions (#424)
Browse files Browse the repository at this point in the history
* Installer for TAO extensions
  • Loading branch information
alroniks authored and niksamokhvalov committed Aug 1, 2019
1 parent fca9227 commit 3a91638
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ is not needed to install packages with these frameworks:
| SMF | `smf-module`<br>`smf-theme`
| SyDES | `sydes-module`<br>`sydes-theme`
| symfony1 | **`symfony1-plugin`**
| TAO | `tao-extension`
| Tusk | `tusk-task`<br>`tusk-command`<br>`tusk-asset`
| TYPO3 Flow | `typo3-flow-package`<br>`typo3-flow-framework`<br>`typo3-flow-plugin`<br>`typo3-flow-site`<br>`typo3-flow-boilerplate`<br>`typo3-flow-build`
| TYPO3 CMS | `typo3-cms-extension` (Deprecated in this package, use the [TYPO3 CMS Installers](https://packagist.org/packages/typo3/cms-composer-installers) instead)
Expand Down
1 change: 1 addition & 0 deletions src/Composer/Installers/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ class Installer extends LibraryInstaller
'smf' => 'SMFInstaller',
'sydes' => 'SyDESInstaller',
'symfony1' => 'Symfony1Installer',
'tao' => 'TaoInstaller',
'thelia' => 'TheliaInstaller',
'tusk' => 'TuskInstaller',
'typo3-cms' => 'TYPO3CmsInstaller',
Expand Down
12 changes: 12 additions & 0 deletions src/Composer/Installers/TaoInstaller.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
namespace Composer\Installers;

/**
* An installer to handle TAO extensions.
*/
class TaoInstaller extends BaseInstaller
{
protected $locations = array(
'extension' => '{$name}'
);
}

0 comments on commit 3a91638

Please sign in to comment.