mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 05: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/
|
/vendor/
|
|
@ -9,7 +9,9 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"typo3/cms-core": "^10.4"
|
"typo3/cms-core": "^10.4",
|
||||||
|
"typo3/cms-extbase": "^10.4",
|
||||||
|
"typo3/cms-fluid": "^10.4"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
|
Loading…
Reference in a new issue