-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
34 lines (34 loc) · 958 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": "wordpress/wp-feature-notifications",
"description": "Notifications for WordPress (Feature Plugin)",
"type": "wordpress-plugin",
"require": {
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^1.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"wp-coding-standards/wpcs": "^2.3",
"wp-phpunit/wp-phpunit": "^6.2",
"squizlabs/php_codesniffer": "^3.7",
"friendsofphp/php-cs-fixer": "3.16"
},
"license": "GPL-2.0-or-later",
"author": "The WordPress Contributors",
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": "vendor/squizlabs/php_codesniffer/bin/phpcs includes/ -s --report=full,summary,source",
"lint-fix": "vendor/bin/phpcbf --standard=phpcs.xml.dist includes/",
"test": "vendor/bin/phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "7.4"
}
}
}