-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.2 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
{
"name": "srwiez/starlink-client",
"description": "Starlink PHP Client using local gRPC communication",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"SRWieZ\\StarlinkClient\\": "src/",
"SpaceX\\API\\": "generated/SpaceX/API",
"GPBMetadata\\Spacex\\Api\\": "generated/GPBMetadata/Spacex/Api"
}
},
"authors": [
{
"name": "Eser DENIZ",
"email": "[email protected]"
}
],
"bin": [
"bin/starlink-client"
],
"minimum-stability": "stable",
"require": {
"php": "^8.3",
"ext-grpc": "*",
"google/protobuf": "^4.28",
"grpc/grpc": "^1.57"
},
"require-dev": {
"laravel/pint": "^1.18",
"pestphp/pest": "^3.5",
"phpstan/phpstan": "^2.0",
"srwiez/grpc-protoset": "^1.0",
"symfony/var-dumper": "^7.1",
"nunomaduro/collision": "^8.5"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "./vendor/bin/pest -p",
"pint": "./vendor/bin/pint",
"phpstan": "./vendor/bin/phpstan",
"static": [
"@composer pint",
"@composer phpstan"
],
"qa": [
"@composer pint",
"@composer phpstan",
"@composer test"
]
}
}