-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
47 lines (47 loc) · 1.19 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
{
"name": "helhum/typo3-crontab",
"type": "typo3-cms-extension",
"description": "Advanced scheduling for TYPO3 Console commands and TYPO3 Scheduler tasks",
"homepage": "https://github.com/helhum/typo3-crontab",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Helmut Hummel",
"email": "info@helhum.io",
"role": "Developer"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"require": {
"php": ">=8.1",
"dragonmantank/cron-expression": "^2.3",
"typo3/cms-core": "^11.5 || ^12.4",
"typo3/cms-extbase": "^11.5 || ^12.4"
},
"suggest": {
"typo3/cms-scheduler": "To be able to execute TYPO3 scheduler tasks"
},
"extra": {
"typo3/cms": {
"extension-key": "crontab"
}
},
"autoload": {
"psr-4": {
"Helhum\\TYPO3\\Crontab\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Helhum\\TYPO3\\Crontab\\Tests\\": "Tests/"
}
}
}