-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·42 lines (42 loc) · 961 Bytes
/
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
{
"name": "k10/trianglify",
"description": "If no login background is defined, this extension generates a random background per trianglify.",
"keywords": [
"typo3",
"backend",
"trianglify"
],
"homepage": "https://www.kevin-appelt.de",
"authors": [
{
"name": "Kevin Appelt",
"email": "[email protected]",
"homepage": "https://www.kevin-appelt.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/kevin-appelt/TrianglifyBackground",
"issues": "https://github.com/kevin-appelt/TrianglifyBackground/issues",
"docs": "https://github.com/kevin-appelt/TrianglifyBackground/wiki"
},
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"version": "1.0.0",
"require": {
"typo3/cms-core": "^10.4 || ^11.0"
},
"autoload": {
"psr-4": {
"K10\\Trianglify\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "trianglify"
}
}
}