add: php composer management
This commit is contained in:
13
vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php
vendored
Normal file
13
vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Composer\Installers;
|
||||
|
||||
class CodeIgniterInstaller extends BaseInstaller
|
||||
{
|
||||
/** @var array<string, string> */
|
||||
protected $locations = array(
|
||||
'library' => 'application/libraries/{$name}/',
|
||||
'third-party' => 'application/third_party/{$name}/',
|
||||
'module' => 'application/modules/{$name}/',
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user