-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1023 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
35
36
37
38
39
40
{
"name": "nyco/wp-stat-collector",
"version": "0.0.9",
"type": "wordpress-muplugin",
"license": "GPL-3.0+",
"description": "A developer plugin for WordPress that adds hooks to enable the logging of data from the site to a specified MySQL database.",
"homepage": "https://github.com/cityofnewyork/nyco-wp-stat-collector",
"authors": [
{
"name": "NYC Opportunity",
"email": "[email protected]",
"homepage": "http://nyc.gov/opportunity"
}
],
"keywords": [
"nycopportunity",
"wordpress",
"integrations",
"mysql",
"database",
"data"
],
"support": {
"issues": "https://github.com/cityofnewyork/nyco-wp-stat-collector/issues"
},
"require": {
"composer/installers": "^1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3"
},
"scripts": {
"lint": [
"vendor/bin/phpcs --standard=standard.xml --extensions=php"
],
"fix": [
"vendor/bin/phpcbf --standard=standard.xml --extensions=php"
]
}
}