-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 1.09 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
{
"name": "colorcube/bookmark-pages",
"type": "typo3-cms-extension",
"description": "A TYPO3 extension that provides bookmarks functionality of local pages for logged in frontend users.",
"keywords": [
"TYPO3",
"extension",
"bookmarks"
],
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/colorcube/bookmark_pages",
"support": {
"issues": "https://github.com/colorcube/bookmark_pages/issues"
},
"authors": [
{
"name": "René Fritz",
"email": "r.fritz@colorcube.de",
"role": "Developer",
"homepage": "https://www.colorcube.de"
}
],
"require": {
"php": ">=5.6.0",
"typo3/cms-core": "^6.2 || ^7.6 || ^8.7",
"helhum/typoscript-rendering": "^2.0"
},
"autoload": {
"psr-4": {
"Colorcube\\BookmarkPages\\": "Classes"
}
},
"replace": {
"typo3-ter/bookmark-pages": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "bookmark_pages"
}
}
}