forked from valkey-io/valkey-glide-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.54 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.54 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
54
55
56
57
58
59
60
61
62
{
"name": "valkey-io/valkey-glide-php",
"description": "General Language Independent Driver for the Enterprise (GLIDE) for Valkey",
"type": "php-ext",
"license": "Apache-2.0",
"provide": {
"ext-valkey_glide": "*"
},
"php-ext": {
"extension-name": "valkey_glide"
},
"authors": [
{
"name": "Valkey GLIDE contributors",
"homepage": "https://github.com/valkey-io/valkey-glide-php"
}
],
"homepage": "https://github.com/valkey-io/valkey-glide-php",
"require": {
"php": ">=8.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.10",
"google/protobuf": "^v4.32.0",
"protobuf-php/protobuf-plugin": "^0.1.3",
"symfony/polyfill-ctype": "^1.32.0"
},
"autoload": {
"psr-4": {
"ValkeyGlide\\": "src/",
"ValkeyGlide\\OpenTelemetry\\": "./"
}
},
"scripts": {
"lint": [
"phpcs --standard=phpcs.xml"
],
"lint:fix": [
"phpcbf --standard=phpcs.xml"
],
"analyze": [
"phpstan analyze"
],
"test": [
"php run-tests.php tests/"
],
"check": [
"@lint",
"@analyze"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"audit": {
"ignore": ["PKSA-wws7-mr54-jsny"]
}
}
}