Skip to content
This repository was archived by the owner on Dec 10, 2021. It is now read-only.

Commit ac8b56a

Browse files
committed
Set TYPO3_CONTEXT to development when .env is used
1 parent 7d6990a commit ac8b56a

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

src/Composer/InstallerScript/SetupTypo3.php

+16-5
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@
3636

3737
class SetupTypo3 implements InstallerScript
3838
{
39+
/**
40+
* @var bool
41+
*/
42+
private $isDotEnvEnabled;
43+
3944
private static $envVarArgumentMapping = [
4045
'databaseUserName' => 'TYPO3_INSTALL_DB_USER',
4146
'databaseUserPassword' => 'TYPO3_INSTALL_DB_PASSWORD',
@@ -55,9 +60,10 @@ class SetupTypo3 implements InstallerScript
5560
*/
5661
private $installedFile;
5762

58-
public function __construct()
63+
public function __construct(bool $isDotEnvEnabled = null)
5964
{
60-
if (class_exists(Dotenv::class)) {
65+
$this->isDotEnvEnabled = $isDotEnvEnabled ?? class_exists(Dotenv::class);
66+
if ($this->isDotEnvEnabled) {
6167
$this->installedFile = getenv('TYPO3_PATH_COMPOSER_ROOT') . '/.env';
6268
} else {
6369
$this->installedFile = getenv('TYPO3_PATH_COMPOSER_ROOT') . '/.installed';
@@ -100,7 +106,12 @@ public function run(ScriptEvent $event): bool
100106
);
101107
$setup->setup($consoleIO->isInteractive(), $this->populateCommandArgumentsFromEnvironment());
102108
putenv('TYPO3_IS_SET_UP=1');
103-
file_put_contents($this->installedFile, '');
109+
110+
$installedFileContent = '';
111+
if ($this->isDotEnvEnabled) {
112+
$installedFileContent .= 'TYPO3_CONTEXT=Development' . chr(10);
113+
}
114+
file_put_contents($this->installedFile, $installedFileContent);
104115

105116
return true;
106117
}
@@ -112,7 +123,7 @@ protected function populateCommandArgumentsFromEnvironment(): array
112123
{
113124
$arguments = [];
114125
$envValues = [];
115-
if (class_exists(Dotenv::class) && file_exists($envInstallFile = getenv('TYPO3_PATH_COMPOSER_ROOT') . '/.env.install')) {
126+
if ($this->isDotEnvEnabled && file_exists($envInstallFile = getenv('TYPO3_PATH_COMPOSER_ROOT') . '/.env.install')) {
116127
$envValues = (new Dotenv())->parse(file_get_contents($envInstallFile), $envInstallFile);
117128
}
118129

@@ -130,7 +141,7 @@ protected function populateCommandArgumentsFromEnvironment(): array
130141
/**
131142
* @return bool
132143
*/
133-
private function hasTypo3Booted()
144+
private function hasTypo3Booted(): bool
134145
{
135146
// Since this code is executed in composer runtime,
136147
// we can safely assume that TYPO3 has not been bootstrapped

0 commit comments

Comments
 (0)