We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f686c commit 644710cCopy full SHA for 644710c
bin/composer-post-install-script.php
@@ -51,15 +51,9 @@ function getEnvironment(): string
51
],
52
];
53
54
-chdir(dirname(__DIR__));
55
-
56
-echo __DIR__ . DIRECTORY_SEPARATOR . \Laminas\DevelopmentMode\Status::DEVEL_CONFIG . PHP_EOL;
57
-echo __DIR__ . DIRECTORY_SEPARATOR . \Laminas\DevelopmentMode\Status::DEVEL_CONFIG . '.dist'. PHP_EOL;
58
59
-echo realpath(__DIR__ . DIRECTORY_SEPARATOR . \Laminas\DevelopmentMode\Status::DEVEL_CONFIG . '.dist');
60
61
echo "Using environment setting: " . getEnvironment() . PHP_EOL;
62
63
var_dump(file_exists(\Laminas\DevelopmentMode\Status::DEVEL_CONFIG));
+var_dump(file_exists(\Laminas\DevelopmentMode\Status::DEVEL_CONFIG . '.dist'));
64
65
array_walk($files, 'copyFile');
0 commit comments