forked from szepeviktor/phpstan-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1 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
{
"name": "szepeviktor/phpstan-wordpress",
"type": "phpstan-extension",
"description": "WordPress extensions for PHPStan",
"keywords": [
"static analysis",
"code analysis",
"code analyse",
"wordpress",
"phpstan"
],
"license": "MIT",
"require": {
"php": "~7.1",
"php-stubs/wordpress-stubs": "^4.7 || ^5.0",
"phpstan/phpstan": "^0.12.0",
"symfony/polyfill-php73": "^1.12.0"
},
"require-dev": {
"composer/composer": "^1.8.6",
"consistence/coding-standard": "^3.8",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpstan/phpstan-strict-rules": "^0.12",
"slevomat/coding-standard": "^5.0.4"
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"autoload": {
"psr-4": {
"PHPStan\\WordPress\\": "src/"
}
}
}