forked from evoWeb/sessionplaner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1011 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "evoweb/sessionplaner",
"type": "typo3-cms-extension",
"description": "Sessionplaner for TYPO3Camps",
"homepage": "https://github.com/evoWeb/sessionplaner/",
"license": [
"GPL-2.0-or-later"
],
"support": {
"issues": "https://github.com/evoWeb/sessionplaner/issues"
},
"keywords": [
"sessionplaner",
"barcamp",
"TYPO3Camps"
],
"require": {
"typo3/cms-core": "^9.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13"
},
"autoload": {
"psr-4": {
"Evoweb\\Sessionplaner\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Evoweb\\Sessionplaner\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/Web/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}