-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
40 lines (40 loc) · 1.13 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
{
"name": "friendsoftypo3/phpstan-typo3",
"type": "phpstan-extension",
"description": "TYPO3 rules for PHPStan",
"license": "GPL-2.0-or-later",
"require": {
"php": "^7.2 || ^8.0 || ^8.1",
"phpstan/phpstan": "^0.12.99 || ^1.2.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.3",
"jangregor/phpstan-prophecy": "^0.6.2",
"phpunit/phpunit": "^8.5",
"symplify/easy-coding-standard": "^7.2",
"typo3/cms-core": "^10.4 || 11.*.*@dev",
"typo3/cms-extbase": "^10.4 || 11.*.*@dev"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"ergebnis/composer-normalize": true
},
"platform": {
"php": "7.2"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"FriendsOfTYPO3\\PHPStan\\TYPO3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FriendsOfTYPO3\\PHPStan\\TYPO3\\Tests\\": "tests/"
}
}
}