| 1 |
<?php |
| 2 |
namespace Composer\Installers; |
| 3 |
|
| 4 |
class WordPressInstaller extends BaseInstaller |
| 5 |
{ |
| 6 |
protected $locations = array( |
| 7 |
'plugin' => 'wp-content/plugins/{$name}/', |
| 8 |
'theme' => 'wp-content/themes/{$name}/', |
| 9 |
'muplugin' => 'wp-content/mu-plugins/{$name}/', |
| 10 |
'dropin' => 'wp-content/{$name}/', |
| 11 |
); |
| 12 |
} |
| 13 |
|