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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
declare(strict_types=1);
namespace Laminas\ComponentInstaller\ConfigDiscovery;
use function file_get_contents;
use function is_dir;
use function is_file;
use function preg_match;
use function sprintf;
abstract class AbstractDiscovery implements DiscoveryInterface
{
/**
* Configuration file to look for.
*
* Implementations MUST overwite this.
*
* @var string
*/
protected $configFile;
/**
* Expected pattern to match if the configuration file exists.
*
* Implementations MUST overwrite this.
*
* @var string
*/
protected $expected;
/**
* Constructor
*
* Optionally specify project directory; $configFile will be relative to
* this value.
*/
public function __construct(string $projectDirectory = '')
{
if ('' !== $projectDirectory && is_dir($projectDirectory)) {
$this->configFile = sprintf(
'%s/%s',
$projectDirectory,
$this->configFile
);
}
}
/**
* Determine if the configuration file exists and contains modules.
*
* @return bool
*/
public function locate()
{
if (! is_file($this->configFile)) {
return false;
}
$config = file_get_contents($this->configFile);
return 1 === preg_match($this->expected, $config);
}
}