This repository has been archived by the owner on May 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
81 lines (81 loc) · 2.38 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
{
"name": "avto-dev/roadrunner-laravel",
"description": "RoadRunner bridge for Laravel applications",
"keywords": [
"laravel",
"bridge",
"roadrunner"
],
"type": "library",
"license": "MIT",
"authors": [{
"name": "avto-dev",
"homepage": "https://github.com/avto-dev"
}],
"require": {
"php": "^7.1.3",
"ext-mbstring": "*",
"illuminate/contracts": "^5.5 || ~6.0 || ~7.0",
"illuminate/support": "^5.5 || ~6.0 || ~7.0",
"illuminate/http": "^5.5 || ~6.0 || ~7.0",
"illuminate/routing": "^5.5 || ~6.0 || ~7.0",
"spiral/roadrunner": "~1.7",
"symfony/psr-http-message-bridge": "^1.2 || ^2.0",
"laminas/laminas-diactoros": "^2"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"ext-sqlite3": "*",
"laravel/laravel": "^5.5 || ~6.0 || ~7.0",
"mockery/mockery": "^1.3",
"phpstan/phpstan": "~0.12",
"phpunit/phpunit": "^6.4 || ~7.5"
},
"autoload": {
"psr-4": {
"AvtoDev\\RoadRunnerLaravel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AvtoDev\\RoadRunnerLaravel\\Tests\\": "tests"
}
},
"bin": [
"bin/rr-worker"
],
"scripts": {
"phpunit": "@php ./vendor/bin/phpunit --no-coverage --colors=always",
"phpunit-cover": "@php ./vendor/bin/phpunit --coverage-html='./coverage/html'",
"phpstan": "@php ./vendor/bin/phpstan analyze -c ./phpstan.neon.dist --no-progress --ansi",
"test": [
"@phpstan",
"@phpunit"
],
"test-cover": [
"@phpstan",
"@phpunit-cover"
]
},
"extra": {
"laravel": {
"providers": [
"AvtoDev\\RoadRunnerLaravel\\ServiceProvider"
]
}
},
"suggest": {
"illuminate/redis": "Required for dropping redis connections",
"illuminate/database": "Required for dropping database connections",
"avto-dev/stacked-dumper-laravel": "Stacked variables dumper for Laravel-based application"
},
"support": {
"issues": "https://github.com/avto-dev/roadrunner-laravel/issues",
"source": "https://github.com/avto-dev/roadrunner-laravel"
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}