forked from sitegeist/fluid-components-linter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.62 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
{
"name": "sitegeist/fluid-components-linter",
"description": "Tool to validate fluid components based on a specified ruleset",
"homepage": "https://github.com/sitegeist/fluid-components-linter",
"license": "MIT",
"authors": [
{
"name": "Simon Praetorius",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/sitegeist/fluid-components-linter/issues"
},
"require": {
"php": ">=7.2.0 <8",
"symfony/config": "^4.4 || ^5.0",
"symfony/console": "^4.4 || ^5.0",
"typo3fluid/fluid": "^2.6"
},
"require-dev": {
"editorconfig-checker/editorconfig-checker": "^10.0",
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^9.2",
"symfony/var-dumper": "^5.1",
"phpstan/phpstan": "^0.12.38"
},
"autoload": {
"psr-4": {
"Sitegeist\\FluidComponentsLinter\\": "src/Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Sitegeist\\FluidComponentsLinter\\Tests\\": "tests/"
}
},
"bin": [
"fclint"
],
"scripts": {
"lint": [
"@lint:php",
"@analyse:php",
"@lint:editorconfig"
],
"lint:php": "phpcs --standard=PSR2 --extensions=php --exclude=Generic.Files.LineLength --ignore='vendor' .",
"analyse:php": "phpstan analyse --no-progress --level 1 src/ tests/",
"lint:editorconfig": "ec .",
"test": [
"@test:php"
],
"test:php": "phpunit --bootstrap vendor/autoload.php tests/Unit/"
}
}