-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
63 lines (63 loc) · 1.5 KB
/
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
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
{
"name": "xwp/site-performance-tracker",
"description": "Detect and track site performance metrics",
"homepage": "https://github.com/xwp/site-performance-tracker",
"keywords": [
"wordpress"
],
"license": "GPL-2.0",
"authors": [
{
"name": "XWP.co",
"homepage": "https://xwp.co"
},
{
"name": "Piotr Delawski",
"homepage": "https://github.com/delawski",
"email": "piotr.delawski@gmail.com"
}
],
"support": {
"issues": "https://github.com/xwp/site-performance-tracker/issues",
"source": "https://github.com/xwp/site-performance-tracker"
},
"type": "wordpress-plugin",
"config": {
"sort-packages": true,
"platform": {
"php": "5.6.20"
},
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"composer/installers": "~1.0"
},
"require-dev": {
"automattic/vipwpcs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^5.7",
"roots/wordpress": "^5.9",
"wp-coding-standards/wpcs": "^2.3",
"wp-phpunit/wp-phpunit": "^5.9",
"yoast/phpunit-polyfills": "^1.0"
},
"scripts": {
"lint": [
"phpcs"
],
"lint-fix": [
"phpcbf"
],
"test": [
"phpunit"
],
"release": [
"composer install --no-dev --prefer-dist --optimize-autoloader"
]
}
}