-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 2.65 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
{
"name": "remind/typo3-fluid-viewhelper",
"description": "Contains commonly used Fluid ViewHeper for TYPO3",
"type": "library",
"keywords": ["TYPO3", "CMS", "fluid", "template", "viewhelper"],
"license": ["GPL-3.0"],
"authors": [
{
"name": "REMIND GmbH",
"email": "[email protected]"
},
{
"name": "Hauke Schulz",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Remind\\RmndViewHelper\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Remind\\RmndViewHelper\\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",
"remind/typo3-utilities": "^2.0.0 | dev-master | dev-develop",
"typo3/cms-core": "^10.4.0 | ^11.5.0 | ^12.4.0",
"typo3fluid/fluid": "^2.6.0"
},
"require-dev": {
"phpmd/phpmd": "^2.10.2",
"remind/confluence-changelog": "^0.2.0 | ^0.3.0",
"squizlabs/php_codesniffer": "^3.6.1",
"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"
}
},
"scripts": {
"pmd": "@php ./.build/vendor/phpmd/phpmd/src/bin/phpmd ./Classes ansi ./.build/phpmd.xml --ignore-violations-on-exit",
"pmd-xml": "@php ./.build/vendor/phpmd/phpmd/src/bin/phpmd ./Classes xml ./.build/phpmd.xml --reportfile ./.build/logs/pmd.xml --ignore-violations-on-exit",
"test": "@php ./.build/vendor/phpunit/phpunit/phpunit --configuration ./.build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTests.xml --testdox --log-junit ./.build/logs/unitreport.xml --whitelist ./Classes ./Tests/Unit",
"conflog": "@php ./.build/vendor/remind/confluence-changelog/bin/conflog conflog:document --spaceKey REVIEWLIB",
"phpcs": "@php ./.build/vendor/squizlabs/php_codesniffer/bin/phpcs --runtime-set ignore_warnings_on_exit 1 --runtime-set ignore_errors_on_exit 1 --report=full --standard=PSR12 --extensions=php ./Classes ./Tests",
"phpcbf": "@php .build/vendor/squizlabs/php_codesniffer/bin/phpcbf --standard=PSR12 ./Classes ./Tests",
"static-analysis": [
"@pmd",
"@pmd-xml",
"@phpcpd",
"@phpcs",
"@test"
]
}
}