mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-10-12 01:42:59 +00:00
11 lines
254 B
PHP
11 lines
254 B
PHP
<?php
|
|
namespace Composer\Installers;
|
|
|
|
class ZendInstaller extends BaseInstaller
|
|
{
|
|
protected $locations = array(
|
|
'library' => 'library/{$name}/',
|
|
'extra' => 'extras/library/{$name}/',
|
|
'module' => 'module/{$name}/',
|
|
);
|
|
}
|