-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
61 lines (61 loc) · 1.87 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": "apen/additional_scheduler",
"type": "typo3-cms-extension",
"description": "Useful tasks in the scheduler module : full backup, send query result in mail, exec SH script with reports...",
"keywords": [
"TYPO3",
"scheduler"
],
"authors": [
{
"name": "Yohann Cerdan",
"email": "yohann@site-ngo.fr",
"role": "Developer",
"homepage": "https://www.site-ngo.fr"
}
],
"license": "GPL-2.0+",
"require": {
"php": "^7.4||^8.0||^8.1",
"typo3/cms-core": "^11||^12",
"typo3/cms-scheduler": "^11||^12"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"saschaegerer/phpstan-typo3": "^1",
"phpstan/phpstan": "^1",
"typo3/testing-framework": "dev-main",
"ssch/typo3-rector": "^1",
"symplify/easy-coding-standard": "^11",
"helmich/typo3-typoscript-lint": "^3"
},
"autoload": {
"psr-4": {
"Sng\\Additionalscheduler\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "additional_scheduler",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"php:ecs": ".Build/bin/ecs check . --config ./Build/ecs.php --fix --ansi",
"php:ecsdry": ".Build/bin/ecs check . --config ./Build/ecs.php --ansi",
"php:fix": ".Build/bin/php-cs-fixer --config=./Build/.php-cs-fixer.php fix",
"php:fixdry": ".Build/bin/php-cs-fixer -vvv --diff --dry-run --config=./Build/.php-cs-fixer.php fix",
"php:phpstan": ".Build/bin/phpstan analyse -c ./Build/phpstan.neon --ansi",
"php:rector": ".Build/bin/rector process . -c ./Build/rector.php --ansi",
"php:rectordry": ".Build/bin/rector process . -c ./Build/rector.php --dry-run --ansi"
}
}