This repository was archived by the owner on Feb 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 1.91 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 1.91 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
{
"name": "the-coding-owl/oclock",
"description": "This extension provides a clock in the TYPO3 Backend and gives a few neat functions",
"type": "typo3-cms-extension",
"homepage": "https://github.com/the-coding-owl/oclock",
"keywords": [
"typo3",
"backend",
"time",
"clock",
"reminder"
],
"support": {
"issues": "https://github.com/the-coding-owl/oclock/issues",
"source": "https://github.com/the-coding-owl/oclock"
},
"license": "GPL-3.0-or-later",
"require": {
"typo3/cms-core": "^10.1.0 || ^11.5.0 || ^12.0.0",
"typo3/cms-backend": "^10.1.0 || ^11.5.0 || ^12.0.0",
"typo3/cms-fluid": "^10.1.0 || ^11.5.0 || ^12.0.0"
},
"suggest": {
"typo3/cms-dashboard": "Make usage of the TYPO3 dashboard and the widgets provided by this extension"
},
"authors": [
{
"name": "Kevin Ditscheid",
"email": "kevin@the-coding-owl.de",
"role": "Owner"
}
],
"autoload": {
"psr-4": {
"TheCodingOwl\\Oclock\\": "Classes/"
}
},
"replace": {
"typo3-ter/oclock": "self.version"
},
"require-dev": {
"phpstan/phpstan": "^1.0.1",
"saschaegerer/phpstan-typo3": "^1.0.0",
"phpstan/extension-installer": "^1.1.0",
"squizlabs/php_codesniffer": "^3.6.1",
"roave/security-advisories": "dev-master",
"friendsofphp/php-cs-fixer": "^3.2"
},
"extra": {
"typo3/cms": {
"extension-key": "oclock"
}
},
"scripts": {
"testTYPO3v12": [
"@composer req typo3/cms-dashboard:^12.0",
"phpcs",
"phpstan"
],
"testTYPO3v11": [
"@composer req typo3/cms-dashboard:^11.0",
"phpcs",
"phpstan"
],
"testTYPO3v10": [
"@composer req typo3/cms-dashboard:^10.0",
"phpcs",
"phpstan"
]
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
}
}
}