Config.php
757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
namespace Bamarni\Composer\Bin;
use Composer\Composer;
final class Config
{
private $config;
public function __construct(Composer $composer)
{
$extra = $composer->getPackage()->getExtra();
$this->config = array_merge(
array(
'bin-links' => true,
'target-directory' => 'vendor-bin',
),
isset($extra['bamarni-bin']) ? $extra['bamarni-bin'] : array()
);
}
/**
* @return bool
*/
public function binLinksAreEnabled()
{
return true === $this->config['bin-links'];
}
/**
* @return string
*/
public function getTargetDirectory()
{
return $this->config['target-directory'];
}
}