forked from BrianHenryIE/bh-wp-rate-limiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 2.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
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
70
71
72
73
74
{
"name": "brianhenryie/bh-wp-rate-limiter",
"description": "Rate limiter using WordPress cache for storage.",
"type": "wordpress-library",
"license": "GPL-2.0+-or-later",
"authors": [
{
"name": "BrianHenryIE",
"email": "[email protected]"
}
],
"autoload": {
"classmap": [
"src/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"repositories": {
"wp-oop/transient-cache": {
"url": "https://github.com/dixonl90/transient-cache",
"type": "git"
},
"nikolaposa/rate-limit": {
"url": "https://github.com/BrianHenryIE/rate-limit",
"type": "git"
},
"wordpress/wordpress": {
"url": "https://github.com/WordPress/wordpress-develop",
"type": "git"
}
},
"require": {
"php": "^7.4 || ^8.0",
"nikolaposa/rate-limit": "dev-psr-16",
"wp-oop/transient-cache": "dev-develop"
},
"require-dev": {
"10up/wp_mock": "0.4.2",
"antecedent/patchwork": "^2.1",
"brianhenryie/color-logger": "^1.0",
"brianhenryie/strauss": "*",
"codeception/module-asserts": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/module-db": "^1.0.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-webdriver": "^1.0",
"codeception/util-universalframework": "^1.0",
"cweagans/composer-patches": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"jaschilz/php-coverage-badger": "^2.0",
"lucatume/wp-browser": "*",
"php-stubs/woocommerce-stubs": "^6.4",
"phpcompatibility/phpcompatibility-wp": "*",
"phpstan/extension-installer": "^1.1",
"phpunit/phpcov": "*",
"squizlabs/php_codesniffer": "*",
"szepeviktor/phpstan-wordpress": "^0.7.2",
"voku/portable-ascii": "dev-master",
"wordpress/wordpress": "*",
"wp-cli/wp-cli-bundle": "*",
"wp-coding-standards/wpcs": "*"
}
}