Skip to content

Commit

Permalink
[TASK] Update to latest v12 main branches
Browse files Browse the repository at this point in the history
  • Loading branch information
bmack committed Dec 6, 2022
1 parent 94a03b0 commit 382e8ad
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 41 deletions.
24 changes: 13 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To start an interactive installation, you can do so by executing the following
command and then follow the wizard:

```bash
composer exec typo3cms install:setup
composer exec typo3 setup
```

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

```bash
composer exec typo3cms install:setup \
composer exec typo3 setup \
--no-interaction \
--database-user-name=typo3 \
--database-user-password=typo3 \
--database-host-name=127.0.0.1 \
--database-port=3306 \
--database-name=typo3 \
--use-existing-database \
--admin-user-name=admin \
--admin-password=password \
--site-setup-type=site
--driver=mysqli \
--username=typo3 \
--password=typo3 \
--host=127.0.0.1 \
--port=3306 \
--dbname=typo3 \
--admin-username=admin \
--admin-email="[email protected]" \
--admin-user-password=password \
--project-name="My TYPO3 Project" \
--create-site="https://localhost/"
```

### Development server
Expand Down
53 changes: 23 additions & 30 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,35 +14,28 @@
"sort-packages": true
},
"require": {
"typo3/cms-backend": "dev-master",
"typo3/cms-belog": "dev-master",
"typo3/cms-beuser": "dev-master",
"typo3/cms-core": "dev-master",
"typo3/cms-dashboard": "dev-master",
"typo3/cms-extbase": "dev-master",
"typo3/cms-extensionmanager": "dev-master",
"typo3/cms-felogin": "dev-master",
"typo3/cms-filelist": "dev-master",
"typo3/cms-fluid": "dev-master",
"typo3/cms-fluid-styled-content": "dev-master",
"typo3/cms-form": "dev-master",
"typo3/cms-frontend": "dev-master",
"typo3/cms-impexp": "dev-master",
"typo3/cms-info": "dev-master",
"typo3/cms-install": "dev-master",
"typo3/cms-rte-ckeditor": "dev-master",
"typo3/cms-seo": "dev-master",
"typo3/cms-setup": "dev-master",
"typo3/cms-sys-note": "dev-master",
"typo3/cms-t3editor": "dev-master",
"typo3/cms-tstemplate": "dev-master",
"typo3/cms-viewpage": "dev-master"
},
"scripts":{
"typo3-cms-scripts": [
],
"post-autoload-dump": [
"@typo3-cms-scripts"
]
"typo3/cms-backend": "dev-main",
"typo3/cms-belog": "dev-main",
"typo3/cms-beuser": "dev-main",
"typo3/cms-core": "dev-main",
"typo3/cms-dashboard": "dev-main",
"typo3/cms-extbase": "dev-main",
"typo3/cms-extensionmanager": "dev-main",
"typo3/cms-felogin": "dev-main",
"typo3/cms-filelist": "dev-main",
"typo3/cms-fluid": "dev-main",
"typo3/cms-fluid-styled-content": "dev-main",
"typo3/cms-form": "dev-main",
"typo3/cms-frontend": "dev-main",
"typo3/cms-impexp": "dev-main",
"typo3/cms-info": "dev-main",
"typo3/cms-install": "dev-main",
"typo3/cms-rte-ckeditor": "dev-main",
"typo3/cms-seo": "dev-main",
"typo3/cms-setup": "dev-main",
"typo3/cms-sys-note": "dev-main",
"typo3/cms-t3editor": "dev-main",
"typo3/cms-tstemplate": "dev-main",
"typo3/cms-viewpage": "dev-main"
}
}

0 comments on commit 382e8ad

Please sign in to comment.