-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
72 lines (72 loc) · 2.68 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
68
69
70
71
72
{
"name": "remind/typo3-module-base",
"description": "TYPO3 module defintion to act as the top menu for all other REMIND modules.",
"type": "typo3-cms-extension",
"keywords": ["TYPO3", "REMIND", "backend"],
"license": ["GPL-3.0-or-later"],
"authors": [
{
"name": "REMIND GmbH",
"email": "[email protected]"
},
{
"name": "Marco Wegner",
"email": "[email protected]"
},
{
"name": "Hauke Schulz",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Remind\\RmndBasemodules\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Remind\\RmndBasemodules\\Tests\\": "Tests"
}
},
"config": {
"optimize-autoloader": true,
"apcu-autoloader": true,
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"sort-packages": true
},
"require": {
"php": "^7.4.0 | ^8.0.0",
"typo3/cms-core": "^10.4.0 | ^11.5.0 || ^12.4.0"
},
"require-dev": {
"phpmd/phpmd": "^2.10.2",
"remind/confluence-changelog": "^0.3.0",
"squizlabs/php_codesniffer": "^3.6.0",
"typo3/testing-framework": "^8.2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".build",
"web-dir": ".build/web",
"extension-key": "rmnd_basemodules"
}
},
"scripts": {
"pmd": "@php ./.build/vendor/phpmd/phpmd/src/bin/phpmd ./Classes xml ./.build/phpmd.xml --reportfile ./.build/logs/pmd.xml --ignore-violations-on-exit",
"phpcpd": "@php ./.build/vendor/sebastian/phpcpd/phpcpd --log-pmd ./.build/logs/pmd-cpd.xml ./Classes ./Configuration/TCA ./Tests ./ext_emconf.php ./ext_tables.php",
"test": "@php ./.build/vendor/phpunit/phpunit/phpunit --configuration ./.build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml --testdox --log-junit ./.build/logs/unitreport.xml --whitelist ./Classes ./Tests/Unit",
"conflog": "@php ./.build/vendor/remind/confluence-changelog/bin/conflog conflog:document --spaceKey REBASEMOD",
"phpcs": "@php ./.build/vendor/squizlabs/php_codesniffer/bin/phpcs --report=full --standard=PSR12 --extensions=php ./Classes ./Tests ./Configuration/TCA",
"phpcbf": "@php .build/vendor/squizlabs/php_codesniffer/bin/phpcbf --standard=PSR12 ./Classes ./Tests ./Configuration/TCA",
"static-analysis": [
"@pmd",
"@phpcpd",
"@phpcs",
"@test"
]
}
}