-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.13 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
{
"name": "bdfgf/bulk-download-for-gravity-forms",
"description": "Bulk download all files from one or multiple Gravity Forms entries in one go.",
"require": {
"php": ">=7.4",
"ext-zip": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6.13",
"squizlabs/php_codesniffer": "^3.7.2",
"wp-coding-standards/wpcs": "^3.0.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpcompatibility/phpcompatibility-wp": "^2.1.4",
"codeception/module-asserts": "^1.3.1",
"codeception/module-phpbrowser": "^2.0.3",
"codeception/module-webdriver": "^2.0.4",
"codeception/module-db": "^2.1.0",
"codeception/module-filesystem": "^2.0.2",
"codeception/module-cli": "^1.1.1",
"codeception/util-universalframework": "^1.0",
"lucatume/wp-browser": "^3.0"
},
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Team WordPress",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"BDFGF\\": "lib/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}