mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 03:56:09 +01:00
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:
parent
328a98218b
commit
5a17f0c838
2 changed files with 6 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1 +1,3 @@
|
|||
/composer.lock
|
||||
/public/
|
||||
/vendor/
|
|
@ -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": {
|
||||
|
|
Loading…
Reference in a new issue