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
This commit is contained in:
Daniel Siepmann 2021-01-07 08:45:18 +01:00
parent 328a98218b
commit 5a17f0c838
2 changed files with 6 additions and 2 deletions

4
.gitignore vendored
View file

@ -1 +1,3 @@
/vendor/
/composer.lock
/public/
/vendor/

View file

@ -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": {