-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.77 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.77 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "mwpd/basic-scaffold",
"description": "Basic plugin boilerplate code for quick scaffolding.",
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Alain Schlesser",
"email": "alain.schlesser@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0 || ^9.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
"phpstan/phpstan": "^1 || ^2",
"vimeo/psalm": "^5",
"yoast/phpunit-polyfills": "^3",
"wp-phpunit/wp-phpunit": "^6",
"szepeviktor/phpstan-wordpress": "^1 || ^2",
"php-stubs/wordpress-stubs": "^6",
"squizlabs/php_codesniffer": "^3",
"wp-coding-standards/wpcs": "^3",
"dealerdirect/phpcodesniffer-composer-installer": "^1",
"phpcompatibility/php-compatibility": "^9",
"psalm/plugin-phpunit": "^0.19",
"humanmade/psalm-plugin-wordpress": "^3",
"rector/rector": "^1.2",
"brain/monkey": "^2"
},
"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"
],
"phpcs": "phpcs",
"phpcs:fix": "phpcbf",
"lint": [
"@phpcs",
"@analyze"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}