-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.23 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
{
"name": "lipemat/phpstan-wordpress",
"description": "Phpstan extension for working with WordPress",
"type": "phpstan-extension",
"license": "MIT",
"config": {
"vendor-dir": "vendor",
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": ">=7.4",
"php-stubs/wp-cli-stubs": "^2.6.0",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "^1.10.38",
"szepeviktor/phpstan-wordpress": "^1.1.2"
},
"require-dev": {
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-strict-rules": "^1.5",
"roave/security-advisories": "dev-latest"
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"autoload": {
"psr-4": {
"Lipe\\Lib\\Phpstan\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lipe\\Lib\\Phpstan\\Rules\\Test\\Fixture\\": "dev/phpunit/fixtures/"
}
},
"scripts": {
"git-hooks": "dev/bin/git-hooks.sh",
"post-update-cmd": "Lipe\\Lib\\Phpstan\\AddRootToExtensions::updatePlugins",
"post-install-cmd": "Lipe\\Lib\\Phpstan\\AddRootToExtensions::updatePlugins"
}
}