-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.36 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "inpsyde/wp-stash",
"description": "Powerful Object Caching Backend for WordPress",
"license": "GPL-2.0-or-later",
"type": "wordpress-muplugin",
"authors": [
{
"name": "Syde GmbH",
"homepage": "https://syde.com/",
"email": "hello@syde.com",
"role": "Company"
},
{
"name": "Biont",
"email": "m.meisselbach@inpsyde.com"
},
{
"name": "ChriCo",
"email": "c.brueckner@inpsyde.com",
"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
}
}
}