-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
55 lines (55 loc) · 1.53 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
{
"name": "skaut/wordpress-stubs",
"description": "High quality stubs for WordPress functions and classes",
"type": "library",
"keywords": [
"WordPress",
"WordPress plugin",
"WordPress theme",
"phan",
"phpstan",
"stub",
"stubs",
"WordPress stubs"
],
"homepage": "https://github.com/skaut/wordpress-stubs",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "Marek Dědič",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/skaut/wordpress-stubs/issues",
"wiki": "https://github.com/skaut/wordpress-stubs/wiki",
"source": "https://github.com/skaut/wordpress-stubs"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^7.0 || ^8.0"
},
"suggest": {
"phan/phan": "A static analyzer for PHP",
"phpstan/phpstan": "PHPStan - PHP Static Analysis Tool"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"squizlabs/php_codesniffer": "^3.0",
"wp-coding-standards/wpcs": "^3.0",
"phan/phan": "^5.0",
"phpstan/phpstan": "^1.4",
"slevomat/coding-standard": "^8.14"
},
"scripts": {
"phpcs": "phpcs",
"phan": "export PHAN_DISABLE_XDEBUG_WARN=1; phan",
"phpstan": "phpstan",
"lint": ["@phpcs", "@phan", "@phpstan"]
}
}