-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
61 lines (61 loc) · 1.22 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
{
"name": "averias/phpredis-json",
"description": "A PHP client for RedisJSON module using phpredis extension",
"homepage": "https://github.com/averias/phpredis-json",
"keywords": [
"redis",
"redisjson",
"rejson",
"php"
],
"license": "MIT",
"authors": [
{
"name": "Rafael Campoy Villalta",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"ext-redis": "^5.0.1",
"ext-json": "*",
"myclabs/php-enum": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"squizlabs/php_codesniffer": "^3.5.0"
},
"autoload": {
"psr-4": {
"Averias\\RedisJson\\": "src/RedisJsonClient"
}
},
"autoload-dev": {
"psr-4": {
"Averias\\RedisJson\\Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"manifest": [
"@composer validate"
],
"autoload": [
"@composer dump-autoload --optimize"
],
"run-tests": [
"@manifest",
"@autoload",
"vendor/bin/phpunit"
],
"git-reset": [
"git reset --hard"
],
"update-all": [
"@composer self-update --no-interaction",
"@composer update --optimize-autoloader --no-interaction"
]
}
}