-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 894 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 894 Bytes
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
{
"name": "sourcebroker/singleview",
"type": "typo3-cms-extension",
"description": "Allows to display single view on different page than list view and still keep urls user and SEO friendly",
"require": {
"typo3/cms-core": "~10.4.0 || ~11.5.0"
},
"authors": [
{
"name": "Krystian Szymukowicz",
"email": "k.szymukowicz@gmail.com"
},
{
"name": "Karol Lamparski",
"email": "klamparski@gmail.com"
}
],
"license": [
"GPL-2.0-or-later"
],
"autoload": {
"psr-4": {
"SourceBroker\\Singleview\\": "Classes"
}
},
"replace": {
"typo3-ter/singleview": "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",
"extension-key": "singleview"
}
}
}