-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 907 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 907 Bytes
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
{
"name": "wordpress/rsscloud",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"description": "Adds RSSCloud capabilities to your RSS feed.",
"config": {
"process-timeout": 0,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
},
"lock": false
},
"require-dev": {
"phpcompatibility/phpcompatibility-wp": "^2.1.3",
"wp-coding-standards/wpcs": "^3.0",
"sirbrillig/phpcs-variable-analysis": "^2.8",
"spatie/phpunit-watcher": "^1.23",
"yoast/phpunit-polyfills": "^1.1.0"
},
"require": {
"php": ">=7.4",
"composer/installers": "^1.0 || ^2.0"
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml.dist",
"test": "phpunit",
"test:watch": "phpunit-watcher watch < /dev/tty"
}
}