-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 814 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 814 Bytes
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
{
"keywords": ["nosql", "redis", "shopware"],
"name": "b3nl/swredis",
"type": "library",
"description": "Redis driver for Shopware",
"homepage": "http://github.com/b3nl/SWRedis",
"license": "MIT",
"support": {
"issues": "http://github.com/b3nl/SWRedis/issues"
},
"authors": [
{
"name": "Bjoern Lange",
"email": "github@b3nl.de",
"homepage": "http://b3nl.de"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpunit/phpunit": "~4.4",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"psr-4": {
"b3nl\\SWRedis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"b3nl\\SWRedis\\Tests\\": "tests/"
}
}
}