-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 951 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
{
"name": "nyco/wp-open-data-transients",
"version": "0.1.3",
"type": "wordpress-plugin",
"license": "GPL-3.0+",
"description": "Interface for saving Open Data endpoints as WordPress Transients.",
"homepage": "https://github.com/cityofnewyork/nyco-wp-open-data-transients",
"authors": [
{
"name": "NYC Opportunity",
"email": "[email protected]",
"homepage": "https://nyc.gov/opportunity"
}
],
"keywords": [
"wordpress",
"transients",
"data",
"open data"
],
"support": {
"issues": "https://github.com/cityofnewyork/nyco-wp-open-data-transients/issues"
},
"require": {
"composer/installers": "^1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3"
},
"scripts": {
"lint": [
"vendor/bin/phpcs --standard=phpcs.xml --ignore=vendor/,views/ ."
],
"fix": [
"vendor/bin/phpcbf --standard=phpcs.xml --ignore=vendor/ ."
]
}
}