-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
61 lines (61 loc) · 1.28 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "undkonsorten/taskqueue",
"type": "typo3-cms-extension",
"description": "Provides a task queue for other extensions to use.",
"homepage": "https://www.undkonsorten.com",
"authors": [
{
"name": "Eike Starkmann",
"email": "[email protected]",
"homepage": "http://undkonsorten.com",
"role": "Developer"
},
{
"name": "Thomas Alboth",
"email": "[email protected]",
"homepage": "http://undkonsorten.com",
"role": "Product Owner"
}
],
"license": [
"GPL-2.0+"
],
"keywords": [
"email",
"TYPO3"
],
"support": {
"issues": ""
},
"repositories": [
{
"type": "vcs",
"url": ""
}
],
"require": {
"ext-json": "*",
"php": "^8.2",
"typo3/cms-backend": " ^13.2",
"typo3/cms-core": "^13.2",
"typo3/cms-extbase": "^13.2",
"undkonsorten/extbase-cli-aware-configuration-manager": "^0.1",
"symfony/console": "^5.4 || ^6.0 || ^7"
},
"suggest": {
"typo3/cms-dashboard": "Allows more advanced logging of the application flow"
},
"autoload": {
"psr-4": {
"Undkonsorten\\Taskqueue\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "taskqueue"
},
"branch-alias":{
"dev-main": "10.0.x-dev"
}
}
}