-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.58 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.58 KB
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
{
"name": "taptima/phpstan-custom",
"type": "phpstan-extension",
"description": "Taptima extensions for PHPStan",
"keywords": [
"phpstan",
"phpstan-rules",
"Code Quality"
],
"license": "MIT",
"authors": [
{
"name": "Mark Tertishniy",
"email": "mtertishniy@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"phpstan/phpstan": "^0.12.33",
"phpstan/phpstan-doctrine": "^0.12"
},
"conflict": {
"doctrine/collections": "<1.0",
"doctrine/common": "<2.7",
"doctrine/orm": "<2.5"
},
"require-dev": {
"doctrine/collections": "^1.0",
"doctrine/common": "^2.7",
"doctrine/orm": "^2.5",
"ergebnis/composer-normalize": "^2.0.2",
"friendsofphp/php-cs-fixer": "^2.18",
"jakub-onderka/php-parallel-lint": "^1.0",
"phing/phing": "^2.16.0",
"phpstan/phpstan-phpunit": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^7.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"phpstan": {
"includes": [
"extension.neon",
"rules.neon"
]
}
},
"autoload": {
"psr-4": {
"Taptima\\PHPStan\\": "src/Taptima/PHPStan"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}