mirror of
https://github.com/werkraum-media/calendar.git
synced 2024-11-24 02:36:08 +01:00
Initialize composer and git
This commit is contained in:
parent
30831938b2
commit
ec2f139b65
2 changed files with 43 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/.Build/
|
||||
/vendor/
|
41
composer.json
Normal file
41
composer.json
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue