This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
80 lines (80 loc) · 2.19 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
{
"name": "spiral/roadrunner-laravel",
"type": "library",
"description": "RoadRunner: Bridge for Laravel applications",
"keywords": [
"laravel",
"bridge",
"roadrunner"
],
"license": "MIT",
"authors": [
{
"name": "tarampampam",
"homepage": "https://github.com/tarampampam"
}
],
"require": {
"php": "^8.0",
"composer-runtime-api": "^2.0",
"laravel/framework": "~9.33 || ~10.0",
"nyholm/psr7": "^1.5",
"spiral/roadrunner-http": "^2.2 || ^3.0",
"spiral/roadrunner-worker": "^2.2 || ^3.0",
"symfony/psr-http-message-bridge": "^2.1"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.3 || ~7.0",
"inertiajs/inertia-laravel": "^0.6",
"tightenco/ziggy": "^1.4.0",
"laravel/laravel": "~9.1 || ~10.0",
"laravel/scout": "~9.0 || ~10.0",
"laravel/socialite": "^5.0",
"laravel/telescope": "^4.5",
"livewire/livewire": "^2.7",
"mockery/mockery": "^1.4.4",
"phpstan/phpstan": "~1.6",
"phpunit/phpunit": "^9.5.10",
"brick/math": "^0.10"
},
"autoload": {
"psr-4": {
"Spiral\\RoadRunnerLaravel\\": "src/"
},
"files": [
"helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Spiral\\RoadRunnerLaravel\\Tests\\": "tests/"
}
},
"bin": [
"bin/rr-worker"
],
"scripts": {
"phpunit": "@php ./vendor/bin/phpunit --no-coverage",
"phpunit-cover": "@php ./vendor/bin/phpunit",
"phpstan": "@php ./vendor/bin/phpstan analyze -c ./phpstan.neon.dist --no-progress --ansi",
"test": [
"@phpstan",
"@phpunit"
],
"test-cover": [
"@phpstan",
"@phpunit-cover"
]
},
"extra": {
"laravel": {
"providers": [
"Spiral\\RoadRunnerLaravel\\ServiceProvider"
]
}
},
"support": {
"issues": "https://github.com/roadrunner-php/laravel-bridge/issues",
"source": "https://github.com/roadrunner-php/laravel-bridge"
}
}