-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.49 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "automattic/crowdsignal-plugin",
"version": "3.1.4",
"description": "Create and manage Crowdsignal polls and ratings in WordPress",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"homepage": "https://crowdsignal.com/",
"authors": [
{
"name": "Automattic, Inc.",
"homepage": "https://automattic.com/"
}
],
"support": {
"issues": "https://github.com/Automattic/crowdsignal-plugin/issues",
"source": "https://github.com/Automattic/crowdsignal-plugin"
},
"require": {
"php": ">=5.6",
"composer/installers": "^2"
},
"require-dev": {
"yoast/wp-test-utils": "^1.2.0",
"wp-coding-standards/wpcs": "^3.0",
"automattic/vipwpcs": "^3.0"
},
"autoload-dev": {
"psr-4": {
"Automattic\\Crowdsignal\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --testsuite=unit && phpunit --testsuite=integration",
"test:unit": "phpunit --testsuite=unit",
"test:integration": "phpunit --testsuite=integration",
"phpcs": "@php ./vendor/bin/phpcs",
"phpcbf": "@php ./vendor/bin/phpcbf"
},
"scripts-descriptions": {
"test": "Run PHPUnit tests",
"test:unit": "Run unit tests only",
"test:integration": "Run integration tests only",
"phpcs": "Run PHP_Codesniffer.",
"phpcbf": "Fix autofixable coding standards issues."
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
},
"lock": false
}
}