From 9bdbd8e8788facbeb5eb79486336b2c415048a94 Mon Sep 17 00:00:00 2001 From: Lina Wolf <48202465+linawolf@users.noreply.github.com> Date: Thu, 21 Nov 2024 18:48:09 +0100 Subject: [PATCH] [FEATURE] Facilitate Site package installation (#75) By providing folder "packages" by default and having it as repository in the composer.json Additionally link to getting started and site package tutorial from readme Releases: main, 13, 12 --- README.md | 5 +++++ composer.json | 8 +++++++- packages/.gitkeep | 0 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 packages/.gitkeep diff --git a/README.md b/README.md index 55ce973..f782857 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,11 @@ Apache 2 or Nginx, you can instantly run the project by using PHPs` built-in Please be aware that the built-in web server is single threaded and only meant to be used for development. +## Next steps + +* [Getting Started with TYPO3](https://docs.typo3.org/permalink/t3start:start) +* [Create a Site Package](https://docs.typo3.org/permalink/t3sitepackage:start) + ## License GPL-2.0 or later diff --git a/composer.json b/composer.json index a5c6ff6..e62206c 100644 --- a/composer.json +++ b/composer.json @@ -39,5 +39,11 @@ "typo3/cms-tstemplate": "^12.4", "typo3/cms-viewpage": "^12.4", "typo3/cms-webhooks": "^12.4" - } + }, + "repositories": [ + { + "type": "path", + "url": "./packages/*" + } + ] } diff --git a/packages/.gitkeep b/packages/.gitkeep new file mode 100644 index 0000000..e69de29