This repository was archived by the owner on Apr 16, 2020. It is now read-only.
forked from xwp/site-performance-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.21 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.21 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
54
{
"name": "xwp/site-performance-tracker",
"description": "Allows you to 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",
"require": {},
"require-dev": {
"wp-coding-standards/wpcs": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"brainmaestro/composer-git-hooks": "^2.6"
},
"extra": {
"hooks": {
"pre-commit": [
"composer run lint"
]
}
},
"scripts": {
"lint": [
"vendor/bin/phpcs ."
],
"post-install-cmd": [
"vendor/bin/cghooks add --no-lock"
],
"post-update-cmd": [
"vendor/bin/cghooks update"
]
},
"autoload": {
"psr-4": {
"Site_Performance_Tracker\\": "php/"
}
}
}