Blame view

vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php 354 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php
  namespace Composer\Installers;
  
  /**
   * Class DolibarrInstaller
   *
   * @package Composer\Installers
   * @author  Raphaƫl Doursenaud <rdoursenaud@gpcsolutions.fr>
   */
  class DolibarrInstaller extends BaseInstaller
  {
      //TODO: Add support for scripts and themes
      protected $locations = array(
          'module' => 'htdocs/custom/{$name}/',
      );
  }