This repository was archived by the owner on Jul 31, 2024. It is now read-only.
forked from Apen/recordsmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.88 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.88 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
{
"name": "apen/recordsmanager",
"type": "typo3-cms-extension",
"description": "Add modules to easily manage your records (insert, edit & export in be/eId) in one place.",
"keywords": [
"TYPO3"
],
"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"
},
"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": {
"files": [
"Resources/Private/Php/PHP_XLSXWriter/xlsxwriter.class.php"
],
"psr-4": {
"Sng\\Recordsmanager\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "recordsmanager",
"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"
}
}