forked from derhansen/sf_event_mgt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 2.07 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"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": "^12.4"
},
"require-dev": {
"typo3/cms-composer-installers": "^5.0",
"typo3/cms-backend": "^12.4",
"typo3/cms-frontend": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-felogin": "^12.4",
"typo3/cms-fluid-styled-content": "^12.4",
"typo3/cms-fluid": "^12.4",
"typo3/cms-tstemplate": "^12.4",
"typo3/cms-install": "^12.4",
"typo3/cms-extensionmanager": "^12.4",
"typo3/testing-framework": "^8.0.0 || dev-main",
"friendsofphp/php-cs-fixer": "^3.12.0",
"saschaegerer/phpstan-typo3": "^1.8.3",
"phpstan/extension-installer": "^1.1",
"jangregor/phpstan-prophecy": "^1.0",
"codeception/codeception": "^5.0",
"codeception/module-webdriver": "^4.0",
"ericmartel/codeception-email": "^1.0",
"codeception/module-db": "^3.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",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "sf_event_mgt",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public"
}
}
}