forked from jweiland-net/events2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 1.83 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 1.83 KB
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
75
76
77
78
79
80
{
"name": "jweiland/events2",
"description": "Organize your single and recurring events",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"typo3",
"TYPO3 CMS",
"event",
"events2"
],
"authors": [
{
"name": "Stefan Froemken",
"email": "projects@jweiland.net",
"role": "Lead Developer"
},
{
"name": "Hoja Mustaffa Abdul Latheef",
"email": "projects@jweiland.net",
"role": "Senior Developer"
}
],
"homepage": "https://jweiland.net",
"support": {
"email": "projects@jweiland.net",
"issues": "https://github.com/jweiland-net/events2/issues",
"source": "https://github.com/jweiland-net/events2"
},
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"sjbr/static-info-tables": "^13.4",
"typo3/cms-core": "^13.4.12",
"typo3/cms-reactions": "^13.4.12"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44",
"symfony/dependency-injection": "!=7.3.4",
"typo3/coding-standards": "^0.8",
"typo3/testing-framework": "^9.1.2",
"typo3/cms-fluid-styled-content": "^13.4.12",
"typo3/cms-form": "^13.4.12",
"typo3/cms-install": "^13.4.12",
"typo3/cms-workspaces": "^13.4.12"
},
"replace": {
"typo3-ter/events2": "self.version"
},
"suggest": {
"jweiland/cms-reactions": "Allows importing events2 records from aother TYPO3 systems or any other request"
},
"autoload": {
"psr-4": {
"JWeiland\\Events2\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"JWeiland\\Events2\\Tests\\": "Tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"extension-key": "events2",
"web-dir": ".Build/web"
}
}
}