-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
74 lines (74 loc) · 2.25 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "momentohq/client-sdk-php",
"type": "library",
"description": "PHP SDK for Momento, a serverless cache that automatically scales without any of the operational overhead required by traditional caching solutions.",
"keywords": [
"cache",
"caching",
"serverless"
],
"homepage": "https://github.com/momentohq/client-sdk-php",
"license": "Apache-2.0",
"authors": [
{
"name": "Momento",
"email": "eng-deveco@momentohq.com",
"homepage": "https://www.gomomento.com/",
"role": "Developer"
}
],
"support": {
"email": "support@momentohq.com",
"source": "https://github.com/momentohq/client-sdk-php"
},
"autoload": {
"psr-4": {
"Momento\\": "src/",
"Cache_client\\": "types/Cache_client/",
"Control_client\\": "types/Control_client/",
"Auth\\": "types/Auth/",
"GPBMetadata\\": "types/GPBMetadata/",
"Common\\": "types/Common/",
"Leaderboard\\": "types/Leaderboard/",
"Permission_messages\\": "types/Permission_messages/",
"Token\\": "types/Token/",
"Webhook\\": "types/Webhook/",
"Store\\": "types/Store/"
},
"files": [
"src/Utilities/_DataValidation.php"
],
"classmap": [
"src/Cache/CacheOperationTypes/CacheOperationTypes.php",
"src/Storage/StorageOperationTypes/StorageOperationTypes.php",
"src/Cache/Errors/Errors.php"
]
},
"autoload-dev": {
"psr-4": {
"Momento\\Tests\\": "tests/"
}
},
"require": {
"ext-protobuf": "*",
"ext-grpc": "*",
"php": ">=7.4",
"firebase/php-jwt": "^6.3",
"grpc/grpc": "1.57.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0.1 || ^3.0"
},
"require-dev": {
"composer/composer": "^2.4.1",
"phpunit/phpunit": "^9.5.23",
"friendsofphp/php-cs-fixer": "3.64.0"
},
"config": {
"platform": {
"php": "7.4.15"
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}