-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathcomposer.json
More file actions
106 lines (106 loc) · 3.37 KB
/
composer.json
File metadata and controls
106 lines (106 loc) · 3.37 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
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
{
"name": "roadrunner-php/laravel-bridge",
"type": "library",
"description": "Laravel integration for RoadRunner with support for HTTP, Jobs, gRPC, and Temporal plugins - going beyond Octane's capabilities",
"keywords": [
"laravel",
"bridge",
"roadrunner",
"temporal",
"grpc",
"queue",
"cache",
"http"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/roadrunner-server"
}
],
"license": "MIT",
"authors": [
{
"name": "butschster",
"homepage": "https://github.com/butschster"
},
{
"name": "roxblnfk",
"homepage": "https://github.com/roxblnfk"
},
{
"name": "tarampampam",
"homepage": "https://github.com/tarampampam"
}
],
"require": {
"php": "^8.2",
"spiral/roadrunner-kv": "^4.0",
"spiral/roadrunner-jobs": "^4.0",
"spiral/roadrunner-grpc": "^3.5",
"laravel/octane": "^2.9",
"spiral/roadrunner-http": "^3.0",
"spiral/roadrunner-worker": "^3.0",
"temporal/sdk": "^2.0",
"internal/dload": "^1.1",
"spiral/grpc-client": "^1.0.0-rc1",
"roadrunner/psr-logger": "^1.0"
},
"require-dev": {
"laravel/framework": "^12.0",
"spiral/code-style": "^2.2.2",
"rector/rector": "^2.0",
"guzzlehttp/guzzle": "^7.0",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Spiral\\RoadRunnerLaravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\RoadRunnerLaravel\\Tests\\": "tests/"
}
},
"bin": [
"bin/rr-worker"
],
"scripts": {
"get:rr": "dload get rr",
"get:temporal": "dload get temporal",
"get:protoc": "dload get protoc protoc-gen-php-grpc",
"cs:check": "php-cs-fixer fix --dry-run",
"cs:fix": "php-cs-fixer fix",
"refactor": "rector process --config=rector.php",
"refactor:ci": "rector process --config=rector.php --dry-run --ansi",
"phpunit": "phpunit --no-coverage",
"phpunit-cover": "phpunit",
"phpstan": "phpstan analyze -c ./phpstan.neon.dist --no-progress --ansi",
"test": "phpunit --color=always --testdox",
"test:unit": "phpunit --color=always --testsuite=Unit",
"test:feat": "phpunit --color=always --testsuite=Feature",
"test-cover": [
"phpstan",
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-clover=runtime/phpunit/logs/clover.xml --color=always"
]
},
"extra": {
"laravel": {
"providers": [
"Spiral\\RoadRunnerLaravel\\ServiceProvider",
"Spiral\\RoadRunnerLaravel\\Queue\\QueueServiceProvider",
"Spiral\\RoadRunnerLaravel\\Cache\\CacheServiceProvider",
"Spiral\\RoadRunnerLaravel\\Temporal\\TemporalServiceProvider",
"Spiral\\RoadRunnerLaravel\\Logging\\LoggerServiceProvider"
]
}
},
"support": {
"issues": "https://github.com/roadrunner-php/laravel-bridge/issues",
"source": "https://github.com/roadrunner-php/laravel-bridge"
}
}