Skip to content

Commit 829d30a

Browse files
committed
[TASK] Update 12.1.x branch
1 parent 99cb529 commit 829d30a

File tree

2 files changed

+36
-41
lines changed

2 files changed

+36
-41
lines changed

README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To start an interactive installation, you can do so by executing the following
1818
command and then follow the wizard:
1919

2020
```bash
21-
composer exec typo3cms install:setup
21+
composer exec typo3 setup
2222
```
2323

2424
### Setup unattended (optional)
@@ -28,17 +28,19 @@ To do this, you need to execute the following command and substitute the argumen
2828
with your own environment configuration.
2929

3030
```bash
31-
composer exec typo3cms install:setup \
31+
composer exec typo3 setup \
3232
--no-interaction \
33-
--database-user-name=typo3 \
34-
--database-user-password=typo3 \
35-
--database-host-name=127.0.0.1 \
36-
--database-port=3306 \
37-
--database-name=typo3 \
38-
--use-existing-database \
39-
--admin-user-name=admin \
40-
--admin-password=password \
41-
--site-setup-type=site
33+
--driver=mysqli \
34+
--username=typo3 \
35+
--password=typo3 \
36+
--host=127.0.0.1 \
37+
--port=3306 \
38+
--dbname=typo3 \
39+
--admin-username=admin \
40+
--admin-email="[email protected]" \
41+
--admin-user-password=password \
42+
--project-name="My TYPO3 Project" \
43+
--create-site="https://localhost/"
4244
```
4345

4446
### Development server

composer.json

Lines changed: 23 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -14,35 +14,28 @@
1414
"sort-packages": true
1515
},
1616
"require": {
17-
"typo3/cms-backend": "^12.0.0@dev",
18-
"typo3/cms-belog": "^12.0.0@dev",
19-
"typo3/cms-beuser": "^12.0.0@dev",
20-
"typo3/cms-core": "^12.0.0@dev",
21-
"typo3/cms-dashboard": "^12.0.0@dev",
22-
"typo3/cms-extbase": "^12.0.0@dev",
23-
"typo3/cms-extensionmanager": "^12.0.0@dev",
24-
"typo3/cms-felogin": "^12.0.0@dev",
25-
"typo3/cms-filelist": "^12.0.0@dev",
26-
"typo3/cms-fluid": "^12.0.0@dev",
27-
"typo3/cms-fluid-styled-content": "^12.0.0@dev",
28-
"typo3/cms-form": "^12.0.0@dev",
29-
"typo3/cms-frontend": "^12.0.0@dev",
30-
"typo3/cms-impexp": "^12.0.0@dev",
31-
"typo3/cms-info": "^12.0.0@dev",
32-
"typo3/cms-install": "^12.0.0@dev",
33-
"typo3/cms-rte-ckeditor": "^12.0.0@dev",
34-
"typo3/cms-seo": "^12.0.0@dev",
35-
"typo3/cms-setup": "^12.0.0@dev",
36-
"typo3/cms-sys-note": "^12.0.0@dev",
37-
"typo3/cms-t3editor": "^12.0.0@dev",
38-
"typo3/cms-tstemplate": "^12.0.0@dev",
39-
"typo3/cms-viewpage": "^12.0.0@dev"
40-
},
41-
"scripts":{
42-
"typo3-cms-scripts": [
43-
],
44-
"post-autoload-dump": [
45-
"@typo3-cms-scripts"
46-
]
17+
"typo3/cms-backend": "^12.1.0@dev",
18+
"typo3/cms-belog": "^12.1.0@dev",
19+
"typo3/cms-beuser": "^12.1.0@dev",
20+
"typo3/cms-core": "^12.1.0@dev",
21+
"typo3/cms-dashboard": "^12.1.0@dev",
22+
"typo3/cms-extbase": "^12.1.0@dev",
23+
"typo3/cms-extensionmanager": "^12.1.0@dev",
24+
"typo3/cms-felogin": "^12.1.0@dev",
25+
"typo3/cms-filelist": "^12.1.0@dev",
26+
"typo3/cms-fluid": "^12.1.0@dev",
27+
"typo3/cms-fluid-styled-content": "^12.1.0@dev",
28+
"typo3/cms-form": "^12.1.0@dev",
29+
"typo3/cms-frontend": "^12.1.0@dev",
30+
"typo3/cms-impexp": "^12.1.0@dev",
31+
"typo3/cms-info": "^12.1.0@dev",
32+
"typo3/cms-install": "^12.1.0@dev",
33+
"typo3/cms-rte-ckeditor": "^12.1.0@dev",
34+
"typo3/cms-seo": "^12.1.0@dev",
35+
"typo3/cms-setup": "^12.1.0@dev",
36+
"typo3/cms-sys-note": "^12.1.0@dev",
37+
"typo3/cms-t3editor": "^12.1.0@dev",
38+
"typo3/cms-tstemplate": "^12.1.0@dev",
39+
"typo3/cms-viewpage": "^12.1.0@dev"
4740
}
4841
}

0 commit comments

Comments
 (0)