-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.04 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
{
"name": "nyco/wp-config",
"version": "1.0.5",
"type": "wordpress-muplugin",
"license": "GPL-3.0+",
"description": "A WordPress package for environment configuration.",
"homepage": "https://github.com/cityofnewyork/nyco-wp-config",
"authors": [
{
"name": "NYC Opportunity",
"email": "[email protected]",
"homepage": "https://nyc.gov/opportunity"
}
],
"keywords": [
"wordpress",
"environment",
"configuration",
"constants"
],
"support": {
"issues": "https://github.com/cityofnewyork/nyco-wp-config/issues"
},
"require": {
"composer/installers": "^1",
"mustangostang/spyc": "^0.6",
"illuminate/encryption": "^9"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3"
},
"scripts": {
"lint": [
"vendor/bin/phpcs --standard=phpcs.xml --extensions=php --ignore=vendor/ ."
],
"fix": [
"vendor/bin/phpcbf --standard=phpcs.xml --extensions=php --ignore=vendor/ ."
],
"publish": [
"git push && git push --tags"
]
}
}