forked from chrizzor/sf_event_mgt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.62 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "derhansen/sf_event_mgt",
"type": "typo3-cms-extension",
"description": "Configurable event management and registration extension based on ExtBase and Fluid",
"homepage": "https://github.com/derhansen/sf_event_mgt",
"support": {
"issues": "https://github.com/derhansen/sf_event_mgt/issues"
},
"authors": [
{
"name": "Torben Hansen",
"email": "[email protected]",
"homepage": "https://www.derhansen.com",
"role": "Developer"
}
],
"keywords": ["TYPO3 CMS", "event management", "event registration", "fluid", "extbase"],
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^10.4"
},
"require-dev": {
"typo3/testing-framework": "^5",
"codeception/codeception": "^4.1",
"ericmartel/codeception-email-mailhog": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/module-db": "^1.0",
"friendsofphp/php-cs-fixer": "^2.16.1"
},
"replace": {
"typo3-ter/sf-event-mgt": "self.version"
},
"autoload": {
"psr-4": {
"DERHANSEN\\SfEventMgt\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"DERHANSEN\\SfEventMgt\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/sf_event_mgt ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/sf_event_mgt"
]
},
"extra": {
"typo3/cms": {
"extension-key": "sf_event_mgt",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}