-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
42 lines (42 loc) · 1.09 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
{
"name": "mwpd/basic-scaffold",
"description": "Basic plugin boilerplate code for quick scaffolding.",
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Alain Schlesser",
"email": "[email protected]"
}
],
"require": {},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
"phpstan/phpstan": "^1.10",
"vimeo/psalm": "^5.0",
"yoast/phpunit-polyfills": "^2.0",
"wp-phpunit/wp-phpunit": "^6.0",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"autoload": {
"psr-4": {
"MWPD\\BasicScaffold\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MWPD\\BasicScaffold\\Tests\\": "tests/php/"
}
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite=unit",
"test:integration": "phpunit --testsuite=integration",
"phpstan": "phpstan analyze",
"psalm": "psalm",
"analyze": [
"@phpstan",
"@psalm"
]
}
}