-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
116 lines (116 loc) · 3.62 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "spiral/grpc-client",
"type": "library",
"description": "gRPC client",
"license": "MIT",
"homepage": "https://spiral.dev",
"support": {
"issues": "https://github.com/spiral/grpc-client/issues",
"source": "https://github.com/spiral/grpc-client",
"docs": "https://spiral.dev/docs",
"chat": "https://discord.gg/V6EK4he"
},
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "wolfy-j@spiralscout.com"
},
{
"name": "Pavel Butchnev (butschster)",
"email": "pavel.buchnev@spiralscout.com"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"email": "alexey.gagarin@spiralscout.com"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "maksim.smakouz@spiralscout.com"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/spiral"
}
],
"require": {
"php": ">=8.1",
"google/common-protos": "^1.3 || ^2.0 || ^3.0 || ^4.0",
"google/protobuf": "^3 || ^4",
"grpc/grpc": "^1.57",
"psr/container": "^2.0",
"spiral/core": "^3.14",
"spiral/hmvc": "^3.14",
"spiral/tokenizer": "^3.13"
},
"require-dev": {
"buggregator/trap": "^1.10",
"ergebnis/phpunit-slow-test-detector": "^2.14",
"friendsofphp/php-cs-fixer": "^3.54",
"internal/dload": "^1.0.0",
"pestphp/pest": "^2.34",
"phpunit/phpunit": "^10.5",
"spiral/boot": "^3.13",
"vimeo/psalm": "^5.11",
"wayofdev/cs-fixer-config": "^1.4"
},
"suggest": {
"ext-grpc": "Required to execute gRPC calls"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Spiral\\Grpc\\Client\\": "src/"
},
"files": [
"src/stub.php"
]
},
"autoload-dev": {
"psr-4": {
"Spiral\\Grpc\\Client\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true
},
"audit": {
"abandoned": "report"
},
"sort-packages": true
},
"scripts": {
"post-update-cmd": [
"dload get --no-interaction"
],
"cs:diff": "php-cs-fixer fix --dry-run -v --diff",
"cs:fix": "php-cs-fixer fix -v",
"infect": [
"@putenv XDEBUG_MODE=coverage",
"roave-infection-static-analysis-plugin --configuration=infection.json.dist"
],
"infect:ci": [
"@putenv XDEBUG_MODE=coverage",
"roave-infection-static-analysis-plugin --ansi --configuration=infection.json.dist --logger-github --ignore-msi-with-no-mutations --only-covered"
],
"psalm": "psalm",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"psalm:ci": "psalm --output-format=github --shepherd --show-info=false --stats --threads=4",
"refactor": "rector process --config=rector.php",
"refactor:ci": "rector process --config=rector.php --dry-run --ansi",
"test": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always"
],
"test:arch": "pest --color=always --configuration pest.xml.dist",
"test:cc": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-clover=runtime/phpunit/logs/clover.xml --color=always"
]
}
}