-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.5 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.5 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
{
"name": "extrameile/em-sys-note",
"type": "typo3-cms-extension",
"description": "Enables you to create sys_notes from the header of the TYPO3 page module.",
"keywords": [
"TYPO3",
"extension"
],
"homepage": "https://github.com/extrameile/em_sys_note/",
"license": ["GPL-2.0+"],
"authors": [
{
"name": "Andreas Kießling",
"email": "kiessling@extrameile-gehen.de",
"homepage": "https://www.extrameile-gehen.de",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^9.5",
"typo3/cms-sys-note": "^9.5"
},
"autoload": {
"psr-4": {
"Extrameile\\EmSysNote\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Extrameile\\EmSysNote\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/em-sys-note": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"repositories": {
"grumphp-conventions-typo3": {
"type": "vcs",
"url": "https://github.com/extrameile/grumphp-conventions-typo3.git"
}
},
"require-dev": {
"typo3/testing-framework": "^4.14.0",
"extrameile/grumphp-conventions-typo3": "dev-master",
"vimeo/psalm": "^3.8"
}
}