-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
61 lines (61 loc) · 1.42 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
{
"name": "saschaegerer/phpstan-typo3",
"description": "TYPO3 CMS class reflection extension for PHPStan",
"keywords": [
"static analysis"
],
"license": [
"MIT"
],
"type": "phpstan-extension",
"minimum-stability": "dev",
"prefer-stable": true,
"prefer-source": true,
"require": {
"php": "^8.2",
"ext-simplexml": "*",
"phpstan/phpstan": "^2.1",
"typo3/cms-core": "^13.4.3",
"typo3/cms-extbase": "^13.4.3",
"bnf/phpstan-psr-container": "^1.0",
"composer/semver": "^3.4",
"ssch/typo3-debug-dump-pass": "^0.0.2"
},
"require-dev": {
"consistence-community/coding-standard": "^3.11",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phing/phing": "^2.17",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0.3",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"SaschaEgerer\\PhpstanTypo3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SaschaEgerer\\PhpstanTypo3\\Tests\\": "tests/"
},
"files": [
"tests/Unit/Type/data/repository-stub-files.php",
"tests/Unit/Type/QueryResultToArrayDynamicReturnTypeExtension/data/query-result-to-array.php"
]
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}