-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
55 lines (54 loc) · 1.56 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
{
"name": "colopl/laravel-spanner",
"description": "Laravel database driver for Google Cloud Spanner",
"type": "library",
"license": "Apache-2.0",
"authors": [
{"name": "Hiroki Awata", "email": "[email protected]"},
{"name": "Takayasu Oyama", "email": "[email protected]"}
],
"require": {
"php": "^8.2",
"ext-grpc": "*",
"ext-json": "*",
"laravel/framework": "^11.15.0",
"google/cloud-spanner": "^1.58.4",
"grpc/grpc": "^1.42",
"symfony/cache": "~7",
"symfony/deprecation-contracts": "~2",
"symfony/lock": "~7"
},
"require-dev": {
"orchestra/testbench": "~9",
"phpunit/phpunit": "~11.0",
"phpstan/phpstan": "^1"
},
"autoload": {
"psr-4": {
"Colopl\\Spanner\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Colopl\\Spanner\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Colopl\\Spanner\\SpannerServiceProvider"
]
}
},
"scripts": {
"analyze": "phpstan analyse --configuration phpstan.neon --memory-limit=-1",
"coverage": "phpunit --coverage-html=coverage",
"test": "phpunit"
},
"suggest": {
"ext-protobuf": "Native support for protobuf is available. Will use pure PHP implementation if not present.",
"ext-sysvmsg": "Can use SemaphoreLock for session handling. Will use FileLock if not present.",
"ext-sysvsem": "Can use SemaphoreLock for session handling. Will use FileLock if not present.",
"ext-sysvshm": "Can use SemaphoreLock for session handling. Will use FileLock if not present."
}
}