forked from Apen/additional_reports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 2.36 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
62
63
64
65
66
67
{
"name": "apen/additional_reports",
"type": "typo3-cms-extension",
"description": "Useful information in the reports module : xclass, ajax, cliKeys, eID, general status of the system (encoding, DB, php vars...), hooks, compare local and TER extension (diff), used content type, used plugins, ExtDirect... It can really help you during migration or new existing project (to have a global reports of the system).",
"keywords": [
"TYPO3"
],
"authors": [
{
"name": "Yohann Cerdan",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.site-ngo.fr"
}
],
"license": "GPL-2.0+",
"require": {
"php": ">=7.4",
"typo3/cms-core": "^11||^12",
"typo3/cms-reports": "^11||^12"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"saschaegerer/phpstan-typo3": "^1",
"typo3/testing-framework": "dev-main",
"ssch/typo3-rector": "^1",
"nikic/php-parser": "^4",
"helmich/typo3-typoscript-lint": "^3",
"symplify/easy-coding-standard": "^11"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
}
},
"autoload": {
"psr-4": {
"Sng\\AdditionalReports\\": "Classes",
"Sng\\AdditionalReports\\Tests\\": "Tests"
}
},
"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",
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"extension-key": "additional_reports",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
}
}