-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
47 lines (47 loc) · 1.19 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
{
"name": "inpsyde/wp-stash",
"description": "Powerful Object Caching Backend for WordPress",
"license": "GPL-2.0+",
"type": "wordpress-muplugin",
"authors": [
{
"name": "Biont",
"email": "[email protected]"
},
{
"name": "ChriCo",
"email": "[email protected]",
"homepage": "https://www.chrico.info"
}
],
"support": {
"src": "https://github.com/inpsyde/WP-Stash",
"issues": "https://github.com/inpsyde/WP-Stash/issues"
},
"require": {
"php": ">=7.1",
"tedivm/stash": "^0.17.1",
"psr/log": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"brain/monkey": "^2",
"inpsyde/php-coding-standards": "^1.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Inpsyde\\WpStash\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\WpStash\\Tests\\Unit\\": "tests/PHPUnit/Unit/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}