36
36
37
37
class SetupTypo3 implements InstallerScript
38
38
{
39
+ /**
40
+ * @var bool
41
+ */
42
+ private $ isDotEnvEnabled ;
43
+
39
44
private static $ envVarArgumentMapping = [
40
45
'databaseUserName ' => 'TYPO3_INSTALL_DB_USER ' ,
41
46
'databaseUserPassword ' => 'TYPO3_INSTALL_DB_PASSWORD ' ,
@@ -55,9 +60,10 @@ class SetupTypo3 implements InstallerScript
55
60
*/
56
61
private $ installedFile ;
57
62
58
- public function __construct ()
63
+ public function __construct (bool $ isDotEnvEnabled = null )
59
64
{
60
- if (class_exists (Dotenv::class)) {
65
+ $ this ->isDotEnvEnabled = $ isDotEnvEnabled ?? class_exists (Dotenv::class);
66
+ if ($ this ->isDotEnvEnabled ) {
61
67
$ this ->installedFile = getenv ('TYPO3_PATH_COMPOSER_ROOT ' ) . '/.env ' ;
62
68
} else {
63
69
$ this ->installedFile = getenv ('TYPO3_PATH_COMPOSER_ROOT ' ) . '/.installed ' ;
@@ -100,7 +106,12 @@ public function run(ScriptEvent $event): bool
100
106
);
101
107
$ setup ->setup ($ consoleIO ->isInteractive (), $ this ->populateCommandArgumentsFromEnvironment ());
102
108
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 );
104
115
105
116
return true ;
106
117
}
@@ -112,7 +123,7 @@ protected function populateCommandArgumentsFromEnvironment(): array
112
123
{
113
124
$ arguments = [];
114
125
$ 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 ' )) {
116
127
$ envValues = (new Dotenv ())->parse (file_get_contents ($ envInstallFile ), $ envInstallFile );
117
128
}
118
129
@@ -130,7 +141,7 @@ protected function populateCommandArgumentsFromEnvironment(): array
130
141
/**
131
142
* @return bool
132
143
*/
133
- private function hasTypo3Booted ()
144
+ private function hasTypo3Booted (): bool
134
145
{
135
146
// Since this code is executed in composer runtime,
136
147
// we can safely assume that TYPO3 has not been bootstrapped
0 commit comments