-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
34 lines (34 loc) · 935 Bytes
/
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
{
"name": "brainstormforce/unlist-posts",
"description": "Unlist Posts from displaying anywhere on the site, only access the post with a direct link.",
"authors": [
{
"name": "Brinstorm Force",
"email": "hello@bsf.io"
},
{
"name": "Nikhil Chavan",
"email": "me@nikhilc.dev"
}
],
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^5.7 || ^6.5 || ^7.5",
"roots/wordpress": "^6.0",
"wp-coding-standards/wpcs": "^2.2",
"wp-phpunit/wp-phpunit": "^6.0",
"yoast/phpunit-polyfills": "^1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpcs": "vendor/bin/phpcs",
"phpcbf": "vendor/bin/phpcbf"
}
}