forked from psalm/psalm-plugin-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 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
56
57
58
59
{
"name": "mcaskill/psalm-plugin-wordpress",
"description": "WordPress stubs and plugin for Psalm.",
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "Joe Hoyle",
"email": "[email protected]"
}
],
"require": {
"ext-simplexml": "*",
"php-stubs/wordpress-stubs": "^5.5",
"php-stubs/wordpress-globals": "^0.2.0",
"php-stubs/wp-cli-stubs": "^2.5",
"vimeo/psalm": "^4",
"wp-hooks/wordpress-core": "^1.2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"psalm/plugin-phpunit": "^0.15.1"
},
"extra": {
"psalm" : {
"pluginClass": "PsalmWordPress\\Plugin"
}
},
"autoload": {
"psr-4": {
"PsalmWordPress\\": ["."]
}
},
"autoload-dev": {
"psr-4": {
"PsalmWordPress\\Tests\\": ["tests", "tests/unit"],
"Psalm\\Tests\\": "vendor/vimeo/psalm/tests/"
}
},
"config": {
"preferred-install": {
"vimeo/psalm": "source"
},
"sort-packages": true
},
"scripts" : {
"check": [
"@cs-check",
"@test",
"@analyze"
],
"analyze": "psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "codecept run",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"generate-wordpress-stubs": "cd wordpress ; composer init -n ; composer require "
}
}