1 | <?php |
||
2 | /** |
||
3 | * Composer plugin for config assembling |
||
4 | * |
||
5 | * @link https://github.com/hiqdev/composer-config-plugin |
||
6 | * @package composer-config-plugin |
||
7 | * @license BSD-3-Clause |
||
8 | * @copyright Copyright (c) 2016-2018, HiQDev (http://hiqdev.com/) |
||
9 | */ |
||
10 | |||
11 | namespace hiqdev\composer\config\readers; |
||
12 | |||
13 | use Dotenv\Dotenv; |
||
0 ignored issues
–
show
|
|||
14 | use hiqdev\composer\config\exceptions\UnsupportedFileTypeException; |
||
15 | |||
16 | /** |
||
17 | * EnvReader - reads `.env` files. |
||
18 | * |
||
19 | * @author Andrii Vasyliev <[email protected]> |
||
20 | */ |
||
21 | class EnvReader extends AbstractReader |
||
22 | { |
||
23 | public function readRaw($path) |
||
24 | { |
||
25 | if (!class_exists(Dotenv::class)) { |
||
26 | throw new UnsupportedFileTypeException('for .env support require `vlucas/phpdotenv` in your composer.json'); |
||
27 | } |
||
28 | $info = pathinfo($path); |
||
29 | $dotenv = $this->createDotenv($info['dirname'], $info['basename']); |
||
30 | $oldenvs = $_ENV; |
||
31 | $dotenv->load(); |
||
32 | $newenvs = $_ENV; |
||
33 | |||
34 | return array_diff_assoc($newenvs, $oldenvs); |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * Creates Dotenv object. |
||
39 | * Supports both 2 and 3 version of `phpdotenv` |
||
40 | * @param mixed $dir |
||
41 | * @param mixed $file |
||
42 | * @return Dotenv |
||
43 | */ |
||
44 | private function createDotenv($dir, $file) |
||
45 | { |
||
46 | if (method_exists(Dotenv::class, 'create')) { |
||
47 | return Dotenv::create($dir, $file); |
||
48 | } else { |
||
49 | return new Dotenv($dir, $file); |
||
50 | } |
||
51 | } |
||
52 | } |
||
53 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths