forked from sascha-egerer/phpstan-typo3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.51 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
{
"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,
"require": {
"php": "^7.4 || ^8.0",
"phpstan/phpstan": "^1.10.9",
"typo3/cms-core": "^11.5 || ^12.4 || ^13.0",
"typo3/cms-extbase": "^11.5 || ^12.4 || ^13.0",
"bnf/phpstan-psr-container": "^1.0",
"composer/semver": "^3.3",
"ssch/typo3-debug-dump-pass": "^0.0.2",
"ext-simplexml": "*"
},
"require-dev": {
"nikic/php-parser": "^v4.19.1",
"consistence-community/coding-standard": "^3.10",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phing/phing": "^2.17",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^9.6",
"symfony/polyfill-php80": "^1.29",
"phpstan/phpstan-phpunit": "^1.3"
},
"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
}
}
}