-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.9 KB
/
Copy pathcomposer.json
File metadata and controls
69 lines (69 loc) · 1.9 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "dwnload/wp-email-download",
"description": "Allow users to download any WordPress managed file if they're subscribed to a MailChimp list",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"keywords": ["wordpress-plugin", "downloader", "email-subscription", "mailchimp", "wp-api"],
"authors": [
{
"name": "Austin Passy",
"email": "thefrosty@users.noreply.github.com",
"homepage": "https://austin.passy.co",
"role": "Developer"
}
],
"config": {
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.3"
},
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": "~8.3",
"ext-json": "*",
"ext-openssl": "*",
"drewm/mailchimp-api": "2.5.4",
"dwnload/wp-settings-api": "^3.11",
"egulias/email-validator": "~4.0",
"thefrosty/wp-utilities": "^3.8.6"
},
"require-dev": {
"ext-simplexml": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpcompatibility/php-compatibility": "*",
"phpunit/php-code-coverage": "^11",
"phpunit/phpunit": "^11",
"roots/wordpress": "^6.7",
"slevomat/coding-standard": "~8.22",
"squizlabs/php_codesniffer": "^3.13",
"wp-coding-standards/wpcs": "^3.1",
"wp-phpunit/wp-phpunit": "^6.7",
"yoast/phpunit-polyfills": "^4.0"
},
"autoload": {
"psr-4": {
"Dwnload\\WpEmailDownload\\": "src"
},
"files": [
"src/includes/functions.php"
]
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"phpcs": [
"bash ./vendor/thefrosty/wp-utilities/bin/phpcs.sh --standard=phpcs-ruleset.xml"
],
"tests": [
"@phpcs"
]
}
}