-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
75 lines (75 loc) · 2.28 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
73
74
75
{
"name": "ssch/typo3-phpstan-rules",
"description": "Set of PHPStan rules for TYPO3 projects",
"type": "phpstan-extension",
"require": {
"php": "^8.0",
"phpstan/phpstan": "^1.7",
"symplify/phpstan-rules": "^10.0 || ^11.0",
"typo3/cms-core": "^8.7 || ^9.5 || ^10.4 || 11.5 || 12.*.*@dev",
"typo3/cms-extbase": "^8.7 || ^9.5 || ^10.4 || 11.5 || 12.*.*@dev"
},
"require-dev": {
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.13",
"symplify/coding-standard": "^10.0",
"symplify/easy-coding-standard": "^10.0",
"symplify/phpstan-extensions": "^10.0",
"symplify/rule-doc-generator": "^10.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Ssch\\Typo3PhpstanRules\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ssch\\Typo3PhpstanRules\\Tests\\": "tests/"
}
},
"scripts": {
"update-composer": [
"@fix-rector",
"@fix-style"
],
"check-style": "@php ecs check --ansi",
"fix-style": "@php ecs check --fix --ansi",
"analyze": "@php phpstan analyse --memory-limit=-1 --ansi",
"test": "@php phpunit",
"rector": "@php rector process --dry-run --ansi",
"docs": "@php rule-doc-generator generate src/Rules --output-file docs/typo3_rules.md",
"fix-rector": "@php rector process --ansi"
},
"config": {
"optimize-autoloader": true,
"update-with-dependencies": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Sebastian Schreiber",
"email": "[email protected]"
}
],
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
},
"phpstan": {
"includes": [
"config/services/services.neon",
"config/general_typo3_rules.neon"
]
}
}
}