forked from sascha-egerer/phpstan-typo3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.21 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
{
"name": "saschaegerer/phpstan-typo3",
"description": "TYPO3 CMS class reflection extension for PHPStan",
"license": ["MIT"],
"type": "phpstan-extension",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "~7.1",
"phpstan/phpstan": "^0.10 || ^0.11",
"typo3/cms-core": "^8.7 || ^9.5 || ^10.0",
"typo3/cms-extbase": "^8.7 || ^9.5 || ^10.0"
},
"require-dev": {
"consistence/coding-standard": "^3.8",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"jakub-onderka/php-parallel-lint": "^1.0",
"phing/phing": "^2.16.0",
"phpstan/phpstan-strict-rules": "^0.11"
},
"suggest": {
"typo3/testing-framework": "Testing framework is used in the bootstrap (src/PhpStanTypo3Bootstrap.php). In most cases you need this package but you may also use your custom bootstrap (e.g. if you use nimut/testing-framework)"
},
"autoload": {
"psr-4": {
"SaschaEgerer\\PhpstanTypo3\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.10-dev"
},
"phpstan": {
"includes": ["extension.neon"]
}
}
}