From 5a17f0c838e6859c108148787bcfb2f1d5c29dc3 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Thu, 7 Jan 2021 08:45:18 +0100 Subject: [PATCH] Add missing dependencies The extension uses TYPO3 core extbase and fluid extensions. Therefore they should be part of the require. Otherwise a composer install will lead to an incomplete system setup for development. Also add generated files / folders to .gitignore. Otherwise they might end up in git. Relates: #8092 --- .gitignore | 4 +++- composer.json | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 42cd73d..ee4e287 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -/vendor/ \ No newline at end of file +/composer.lock +/public/ +/vendor/ diff --git a/composer.json b/composer.json index 8c3a39a..555803a 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,9 @@ } ], "require": { - "typo3/cms-core": "^10.4" + "typo3/cms-core": "^10.4", + "typo3/cms-extbase": "^10.4", + "typo3/cms-fluid": "^10.4" }, "autoload": { "psr-4": {