-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.44 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
{
"name": "momentohq/momento-php-redis-client",
"description": "Momento drop-in replacement for phpredis: A seamless drop-in replacement for phpredis, built with the Momento SDK for PHP. It mirrors the phpredis interface while leveraging Momento’s serverless cache for effortless scalability and zero operational overhead.",
"type": "library",
"license": "Apache-2.0",
"keywords": [
"cache",
"caching",
"serverless"
],
"homepage": "https://github.com/momentohq/momento-php-redis-client",
"authors": [
{
"name": "Momento",
"email": "[email protected]",
"homepage": "https://www.gomomento.com/",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/momentohq/momento-php-redis-client"
},
"require": {
"vlucas/phpdotenv": "^5.6",
"ext-redis": "*",
"momentohq/client-sdk-php": "^1.14"
},
"require-dev": {
"orchestra/testbench": "^7.11",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.10",
"monolog/monolog": "^2.5"
},
"autoload": {
"psr-4": {
"Momento\\Cache\\": "src/",
"": "tests/"
}
},
"config": {
"platform": {
"php": "8.0.2"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": "phpcs -s --standard=phpcs.xml src/",
"lint-fix": "phpcbf --standard=phpcs.xml src/",
"test": "./vendor/bin/phpunit tests"
}
}