-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.28 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
{
"name": "nyco/wp-send-me-nyc",
"version": "1.6.6",
"type": "wordpress-muplugin",
"license": "GPL-3.0+",
"description": "A developer plugin for WordPress that enables sharing website links via SMS or Email.",
"homepage": "https://github.com/cityofnewyork/nyco-wp-send-me-nyc",
"authors": [
{
"name": "NYC Opportunity",
"email": "[email protected]",
"homepage": "http://nyc.gov/opportunity"
}
],
"keywords": [
"nycopportunity",
"wordpress",
"integrations",
"theme",
"sms",
"email",
"AWS",
"Twilio",
"Bitly",
"sharing"
],
"support": {
"issues": "https://github.com/cityofnewyork/nyco-wp-send-me-nyc/issues"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*"
]
}
],
"require": {
"aws/aws-sdk-php": "^3",
"composer/installers": "^1",
"soundasleep/html2text": "^1",
"twilio/sdk": "^6",
"wpackagist-plugin/wp-bitly": "^2"
},
"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"
]
}
}