Initialize composer and git

This commit is contained in:
Daniel Siepmann 2020-10-20 10:29:42 +02:00
parent 30831938b2
commit ec2f139b65
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
2 changed files with 43 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/.Build/
/vendor/

41
composer.json Normal file
View file

@ -0,0 +1,41 @@
{
"name": "werkraummedia/calendar",
"description": "API for extensions to create calendar",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de"
}
],
"config": {
"sort-packages": true
},
"require": {
"typo3/cms-core": "^10.4",
"typo3/cms-extbase": "^10.4"
},
"autoload": {
"psr-4": {
"WerkraumMedia\\Calendar\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"WerkraumMedia\\Calendar\\Tests\\": "Tests/"
}
},
"require-dev": {
"jangregor/phpstan-prophecy": "^0.6.2",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.4"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "calendar",
"web-dir": ".Build/web"
}
}
}